body{
    font-family:'Poppins',sans-serif;
   background:#000;
}

/* Top Header */

.top-header{
    background:#0d0d0d;
    border-bottom:1px solid #ffd700;
    padding:12px 0;
}

.social-icons a{
    width:35px;
    height:35px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#111;
    color:#ffd700;
    border-radius:50%;
    margin-right:10px;
    transition:.4s;
		text-decoration:none;
}

.social-icons a:hover{
    background:#ffd700;
    color:#000;
	text-decoration:none;
}

.top-contact{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.top-contact i{
    color:#ffd700;
    margin-right:8px;
}

/* Navbar */

.custom-navbar{
    background:#000;
    padding:15px 0;
    box-shadow:0 0 20px rgba(212,175,55,.15);
}

.logo-text{
    color:#ffd700 !important;
    font-size:25px;
    font-weight:700;
	font-family: Cinzel, serif;
}

.nav-link{
    color:#fff !important;
    margin:0 10px;
    font-weight:500;
	font-family: Cinzel, serif;
    position:relative;
}

.nav-link:hover{
    color:#ffd700 !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#ffd700;
    transition:.4s;
}

.nav-link:hover::after{
    width:100%;
}

.call-btn{
    background:#ffd700;
    color:#000;
    font-weight:600;
    padding:10px 25px;
    margin-left:20px;
    border-radius:50px;
}

.call-btn:hover{
    background:#fff;
    color:#000;
}
/* HERO SECTION */

.hero-section{
    position:relative;
    background:url('../images/bg.png');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgb(0 0 0 / 92%);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-subtitle{
    color:#ffd700;
    font-size:18px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:65px;
	font-family: Cinzel, serif;
    color:#fff;
    font-weight:700;
    line-height:1.2;
    margin:20px 0;
}

.hero-content p{
    color:#d8d8d8;
    font-size:18px;
    max-width:650px;
}

.hero-btns{
    margin-top:35px;
}

.hero-call-btn{
    background:#ffd700;
    color:#000;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    margin-right:15px;
}

.hero-call-btn:hover{
    background:#fff;
}

.hero-whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}
.hero-whatsapp-btn:hover{
    background:#25D366;
    color:#fff;
     
}
.hero-features{
    display:flex;
    flex-wrap:wrap;
    margin-top:40px;
    gap:20px;
}

.feature-box{
    color:#fff;
}

.feature-box i{
    color:#ffd700;
    margin-right:8px;
}

/* HERO IMAGE */

.hero-image{
    position:relative;
    z-index:2;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* COUNTER SECTION */

.counter-box{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    padding:40px 20px;
    text-align:center;
    border-radius:20px;
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-8px);
    border-color:#ffd700;
}

.counter-box h2{
    color:#ffd700;
    font-size:50px;
    font-weight:700;
}

.counter-box h5{
    color:#fff;
    margin-top:10px;
	font-family: Cinzel, serif;
}
.counter-box h2{
    color:#ffd700;
    text-shadow:0 0 20px rgba(212,175,55,.35);
}
/* ABOUT SECTION */

.about-section{
    padding:100px 0;
    background:rgb(0 0 0 / 92%);
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:20px;
    border:3px solid #ffd700;
}



.section-tag{
    color:#ffd700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2{
    color:#fff;
    font-size:48px;
    margin:20px 0;
	font-family: Cinzel, serif;
    font-weight:700;
}

.about-content p{
    color:#fff;
    line-height:1.9;
}

.about-list{
    margin-top:25px;
}

.about-list div{
    margin-bottom:12px;
    color:#fff;
}

.about-list i{
    color:#ffd700;
    margin-right:10px;
}

.about-btns{
    margin-top:35px;
}

.gold-btn{
    background:#ffd700;
    color:#000;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    margin-right:10px;
}
.gold-btn:hover{
    background:#ffd700;
    color:#000;
    
}
.outline-btn{
    border:2px solid #ffd700;
    color:#ffd700;
    padding:14px 30px;
    border-radius:50px;
}
.outline-btn:hover{
    border:2px solid #ffd700;
    color:#ffd700;
 
}

/* CTA BAR */

.cta-bar{
    background:#ffd700;
    padding:40px 0;
}

.cta-bar h3{
    color:#000;
	font-family: Cinzel, serif;
    font-weight:700;
}

.cta-bar p{
    color:#222;
    margin:0;
}

.cta-btn{
    background:#000;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}
.cta-btn:hover{
    background:#000;
    color:#fff;
    
}
/* SERVICES SECTION */

.services-section{
    position:relative;
    padding:60px 0;

    background-image:url('../images/bg.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    overflow:hidden;
}

.services-section::before{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.92),
        rgba(0,0,0,.88)
    );

    z-index:1;
}
.services-section .container{
    position:relative;
    z-index:2;
}

.section-title span{
    color:#ffd700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    color:#fff;
	font-family: Cinzel, serif;
    font-size:35px;
    font-weight:700;
    margin-top:15px;
}

.section-title p{
    color:#fff;
    max-width:700px;
    margin:auto;
    margin-top:20px;
}

.service-card{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#ffd700;
    box-shadow:0 0 25px rgba(212,175,55,.25);
}

.service-image{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.service-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    border:2px solid #ffd700;
    transition:.6s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-image::after{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.5),
        transparent
    );
}

.service-card h3{
       color: #ffd700;
    font-size: 23px;
    font-weight: bold;
    font-family: Cinzel, serif;
    margin-top: 15px;
    margin-bottom: 15px;
}
.service-card h3 a{
       color: #ffd700;
     text-decoration:none;
}
.service-card p{
    color:#fff;
    line-height:1.8;
}

.service-buttons{
    margin-top:25px;
}

.service-call-btn{
    background:#ffd700;
    color:#000;
    font-weight:600;
    padding:10px 25px;
    border-radius:50px;
    margin-right:5px;
}
.service-call-btn:hover{
	background-color:#fff;
}
.service-wa-btn{
    background:#25D366;
    color:#fff;
    font-weight:600;
    padding:10px 25px;
    border-radius:50px;
}
.service-wa-btn:hover{
	background-color:#fff;
}
.gold-divider{
    width:120px;
    height:4px;
    background:#ffd700;
    margin:auto;
    border-radius:20px;
}
/* WHY CHOOSE US */

.why-choose-section{
    padding:60px 0;
    background:#000;
    position:relative;
}

.why-choose-section::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(212,175,55,.05);
    border-radius:50%;
    top:50px;
    left:-100px;
}

.why-box{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.why-box:hover{
    transform:translateY(-10px);
    border-color:#ffd700;
    box-shadow:0 0 30px rgba(212,175,55,.20);
}

.why-box::before{
    content:'';
    position:absolute;
    width:100%;
    height:4px;
    background:#ffd700;
    top:0;
    left:-100%;
    transition:.5s;
}

.why-box:hover::before{
    left:0;
}

.why-icon{
    width:90px;
    height:90px;
    background:#ffd700;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:25px;
}

.why-icon i{
    color:#000;
    font-size:35px;
}

.why-box h4{
    color:#fff;
	font-family: Cinzel, serif;
    margin-bottom:15px;
    font-size:24px;
    font-weight:600;
}

.why-box p{
    color:#fff;
    line-height:1.8;
}
/* OUR QUALITY SECTION */
.quality-section{
    position:relative;

    padding:60px 0;

    background-image:url('../images/bg.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    overflow:hidden;
}
.quality-section::before{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.92),
        rgba(0,0,0,.85)
    );

    z-index:1;
}
.quality-section::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(212,175,55,.08),
        transparent 40%
    );

    z-index:1;
}
.quality-section .container{
    position:relative;
    z-index:2;
}
.quality-image img{
    border-radius:25px;
    border:3px solid #ffd700;
    box-shadow:0 0 40px rgba(212,175,55,.15);
}


.quality-content{
    padding-left:30px;
}

.quality-content h2{
    color:#fff;
    font-size:48px;
	font-family: Cinzel, serif;
    font-weight:700;
    margin:20px 0;
}

.quality-content p{
    color:#fff;
    line-height:1.9;
}

.quality-box{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    padding:25px;
    transition:.4s;
    height:100%;
}

.quality-box:hover{
    transform:translateY(-8px);
    border-color:#ffd700;
    box-shadow:0 0 25px rgba(212,175,55,.20);
}

.quality-box i{
    font-size:40px;
    color:#ffd700;
    margin-bottom:20px;
}

.quality-box h5{
    color:#fff;
    font-size:22px;
    margin-bottom:10px;
}

.quality-box p{
    color:#bdbdbd;
    margin:0;
}
/* ALL SERVICES GRID */

.all-services-section{
    padding:60px 0;
    background:#000;
}

.service-grid-box{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:.4s;
}

.service-grid-box:hover{
    transform:translateY(-10px);
    border-color:#ffd700;
    box-shadow:0 0 30px rgba(212,175,55,.20);
}

.service-grid-icon{
    width:80px;
    height:80px;
    background:#ffd700;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:25px;
}

.service-grid-icon i{
    font-size:30px;
    color:#000;
}

.service-grid-box h4{
    color:#ffd700;
    margin-bottom:15px;
	font-family: Cinzel, serif;
    font-size:22px;
    font-weight:600;
	    text-transform: capitalize;
}

.service-grid-box p{
    color:#fff;
    line-height:1.8;
}

.service-link{
    display:inline-block;
    margin-top:15px;
    color:#ffd700;
    text-decoration:none;
    font-weight:600;
}

.service-link:hover{
    color:#fff;
}
/* TRUST SECTION */

.trust-section{
   position:relative;

    padding:60px 0;

    background:url('../images/bg.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    overflow:hidden;
}
.trust-section::before{
    content:'';
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.88);

    z-index:1;
}
.trust-section .container{
    position:relative;
    z-index:2;
}
.trust-content h2{
    color:#fff;
    font-size:52px;
	font-family: Cinzel, serif;
    font-weight:700;
    margin:20px 0;
}

.trust-content p{
    color:#fff;
    line-height:1.9;
    margin-bottom:30px;
}

.trust-btn{
    background:#ffd700;
    color:#000;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}
.trust-btn:hover{
    background:#fff;
    color:#000;
    
}
.trust-box-wrapper{
    display:grid;
    gap:20px;
}

.trust-item{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    padding:22px 25px;
    border-radius:15px;
    color:#fff;
    font-size:18px;
    transition:.4s;
}

.trust-item:hover{
    border-color:#ffd700;
    transform:translateX(10px);
}

.trust-item i{
    color:#ffd700;
    margin-right:12px;
    font-size:20px;
}
/* CONSULTATION SECTION */

.consultation-section{
    padding:60px 0;
    background:#000;
}

.consultation-card{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:25px;
    padding:40px;
    text-align:center;
    height:100%;
    transition:.4s;
}

.consultation-card:hover{
    transform:translateY(-10px);
    border-color:#ffd700;
    box-shadow:0 0 35px rgba(212,175,55,.20);
}

.consultation-icon{
    width:90px;
    height:90px;
    background:#ffd700;
    border-radius:50%;
    margin:auto;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.consultation-icon i{
    color:#000;
    font-size:35px;
}

.whatsapp-icon{
    background:#25D366;
}

.whatsapp-icon i{
    color:#fff;
}

.consultation-card h3{
    color:#ffd700;
	    font-family: Cinzel, serif;
    font-weight: bold;
    margin-bottom:15px;
    font-size:28px;
}

.consultation-card p{
    color:#fff;
    line-height:1.8;
}

.consultation-list{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.consultation-list li{
    color:#fff;
    margin-bottom:12px;
}

.consultation-list i{
    color:#ffd700;
    margin-right:8px;
}

.consultation-btn{
    background:#ffd700;
    color:#000;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}
.consultation-btn:hover{
    background:#fff;
    color:#000;
     
}
.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}
.whatsapp-btn:hover{
    background:#fff;
    color:#000;
     
}
.direct-cta-section{
    position:relative;

    padding:70px 0;

    background:url('../images/bg.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    overflow:hidden;
}
.direct-cta-section::before{
    content:'';
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.85);

    z-index:1;
}
.direct-cta-section .container{
    position:relative;
    z-index:2;
}
.direct-cta-box{
    background:#fff;
    padding:60px;
    border-radius:25px;
    text-align:center;
}

.direct-cta-box h2{
    color:#000;
    font-size:48px;
    font-weight:bold;
	 font-family: Cinzel, serif;
}

.direct-cta-box p{
    color:#222;
    margin:20px 0;
}

.cta-buttons{
    margin-top:30px;
}

.cta-call-btn{
    background:#000;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    margin-right:10px;
}
.cta-call-btn:hover{
    background:#000;
    color:#fff;
     
}
.cta-whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
}
.cta-whatsapp-btn:hover{
    background:#25D366;
    color:#fff;
     
}
/* TESTIMONIAL SECTION */

.testimonial-section{
    padding:70px 0;
    background:#000;
}

.testimonial-card{
    max-width:800px;
    margin:auto;
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:25px;
    padding:50px;
    text-align:center;
}

.client-img{
    width:100px;
    height:100px;
    margin:auto;
    margin-bottom:25px;
}

.client-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #ffd700;
}

.stars{
    margin-bottom:20px;
}

.stars i{
    color:#ffd700;
    font-size:20px;
}

.testimonial-card p{
    color:#fff;
    line-height:1.9;
    font-size:18px;
}

.testimonial-card h4{
    color:#fff;
    margin-top:20px;
    font-size:24px;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}
/* FEATURED SERVICES */

.featured-services{
    padding:70px 0;
    background:#080808;
}

.featured-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:420px;
}

.featured-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.featured-card:hover img{
    transform:scale(1.15);
}

.featured-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.25)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
}

.featured-overlay h4{
    color:#fff;
	 font-family: Cinzel, serif;
    font-size:26px;
    margin-bottom:20px;
    font-weight:700;
}

.featured-btns{
    display:flex;
    gap:10px;
}
 

.call-btn-small{
    border:2px solid #ffd700;
    color:#ffd700;
    border-radius:50px;
    padding:10px 20px;
}

.call-btn-small:hover{
    background:#fff;
    color:#000;
	font-weight:bold;
}
/* FAQ SECTION */

.faq-section{
    padding:70px 0;
    background:#000;
}

.custom-faq .accordion-item{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    margin-bottom:20px;
    border-radius:15px !important;
    overflow:hidden;
}

.custom-faq .accordion-button{
    background:#111;
    color:#fff;
    font-size:18px;
    font-weight:600;
    padding:22px 25px;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#ffd700;
    color:#000;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
    border:none;
}

.custom-faq .accordion-body{
    color:#fff;
    line-height:1.9;
    background:#111;
    padding:25px;
}

.custom-faq .accordion-button::after{
    filter:brightness(10);
}
/* FOOTER */

.footer-section{
    background:#050505;
    padding-top:70px;
    border-top:1px solid rgba(212,175,55,.15);
}

.footer-logo{
    color:#ffd700;
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-widget p{
    color:#fff;
    line-height:1.9;
}

.footer-widget h4{
    color:#fff;
    margin-bottom:25px;
    font-size:24px;
    position:relative;
}

.footer-widget h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:3px;
    background:#ffd700;
}

.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-widget ul li{
    margin-bottom:15px;
}

.footer-widget ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#ffd700;
    padding-left:8px;
}

.footer-contact p{
    margin-bottom:18px;
}

.footer-contact i{
    color:#ffd700;
    width:25px;
}

.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#000;
	text-decoration:none;
    border-radius:50%;
    margin-right:10px;
    transition:.4s;
}

.footer-social a:hover{
    background:#ffd700;
    color:#000;
    transform:translateY(-5px);
}

.footer-bottom{
 
    padding:25px 0;
    border-top:1px solid rgba(212,175,55,.15);
}

.footer-bottom p{
    color:#999;
    margin:0;
}

.footer-bottom a{
    color:#999;
    text-decoration:none;
    margin:0 8px;
}

.footer-bottom a:hover{
    color:#ffd700;
}

/* Mobile */

@media(max-width:768px){

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom .text-md-end{
        text-align:center !important;
        margin-top:10px;
    }

}
/* Floating WhatsApp */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;

    width:65px;
    height:65px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    text-decoration:none;

    z-index:99999;

    box-shadow:0 0 25px rgba(37,211,102,.5);

    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

.floating-whatsapp:hover{
    color:#fff;
    transform:scale(1.1);
}


/* Floating Call */

.floating-call{
    position:fixed;
    left:20px;
    bottom:20px;

    width:65px;
    height:65px;

    background:#ff0000;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    text-decoration:none;

    z-index:99999;

    box-shadow:0 0 25px rgba(212,175,55,.5);

    animation:callPulse 2s infinite;
}

@keyframes callPulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

.floating-call:hover{
    color:#000;
    transform:scale(1.1);
}
/* =========================
   MOBILE RESPONSIVE CSS
========================= */

@media (max-width: 991px){

    .top-header{
        text-align:center;
    }

    .social-icons{
        margin-bottom:10px;
    }

    .logo-text{
        font-size:24px;
    }

    .call-btn{
        margin-left:0;
        margin-top:15px;
        display:inline-block;
    }

    .hero-content{
        text-align:center;
		padding-top: 25px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
        max-width:100%;
    }

    .hero-btns{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .hero-call-btn,
    .hero-whatsapp-btn{
        display:block;
        width:100%;
        margin:0;
        text-align:center;
    }

    .hero-features{
        justify-content:center;
    }

    .hero-image{
        margin-top:40px;
		        margin-bottom: 26px;
        text-align:center;
    }

    .hero-image img{
        max-width:80%;
    }

    .about-content,
    .quality-content,
    .trust-content{
        padding-left:0;
        text-align:center;
        margin-top:40px;
    }

    .about-content h2,
    .quality-content h2,
    .trust-content h2{
        font-size:38px;
    }

    .section-title h2{
        font-size:38px;
    }

    .experience-box{
        right:10px;
        bottom:10px;
    }

    .direct-cta-box{
        padding:40px 25px;
    }

    .direct-cta-box h2{
        font-size:34px;
    }

    .cta-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .cta-call-btn,
    .cta-whatsapp-btn{
        display:block;
        margin:0;
    }

    .featured-btns{
        flex-direction:column;
    }

    .testimonial-card{
        padding:30px 20px;
    }
}

/* Mobile Phones */

@media (max-width: 768px){

    .hero-content h1{
        font-size:34px;
        line-height:1.3;
    }

    .hero-subtitle{
        font-size:14px;
    }

    .section-title h2,
    .about-content h2,
    .quality-content h2,
    .trust-content h2{
        font-size:30px;
    }

    .counter-box h2{
        font-size:35px;
    }

    .service-card,
    .why-box,
    .quality-box,
    .consultation-card,
    .service-grid-box{
        padding:25px;
    }

    .service-card h3{
        font-size:22px;
    }

    .featured-card{
        height:320px;
    }

    .direct-cta-box h2{
        font-size:28px;
    }

    .floating-whatsapp,
    .floating-call{
        width:55px;
        height:55px;
        font-size:24px;
    }

    .cta-bar{
        text-align:center;
    }

    .cta-bar .text-end{
        text-align:center !important;
        margin-top:20px;
    }
}

/* Small Mobile */

@media (max-width: 576px){

    .hero-content h1{
        font-size:28px;
    }

    .section-title h2,
    .about-content h2,
    .quality-content h2,
    .trust-content h2{
        font-size:26px;
    }

    .logo-text{
        font-size:15px;
    }

    .top-contact{
        display:block;
        margin-top:8px;
		        text-align: center;
    }

    .service-call-btn,
    .service-wa-btn,
    .consultation-btn,
    .whatsapp-btn,
    .gold-btn,
    .outline-btn{
        width:100%;
        display:block;
        margin-bottom:10px;
        text-align:center;
    }

    .featured-overlay{
        padding:20px;
    }

    .featured-overlay h4{
        font-size:22px;
    }

    .testimonial-card{
        padding:20px 15px;
    }

    .testimonial-card p{
        font-size:15px;
    }

    .footer-widget{
        text-align:center;
        margin-bottom:30px;
    }

    .footer-widget h4::after{
        left:50%;
        transform:translateX(-50%);
    }
}
.page-banner{
    padding:120px 0;
    background:linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.82)),url('../images/bg.png');
    background-size:cover;
    background-position:center;
}

.page-banner-content span{
    color:#ffd700;
    font-weight:600;
}

.page-banner-content h1{
    color:#fff;
    font-size:55px;
    font-weight:700;
    margin-top:15px;
}

.about-page-section{
    padding:100px 0;
    background:#000;
}

.about-page-img img{
    border-radius:25px;
    border:3px solid #ffd700;
    box-shadow:0 0 35px rgba(212,175,55,.18);
}

.section-tag{
    color:#ffd700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.about-page-content h2{
    color:#fff;
    font-size:46px;
    font-weight:700;
    margin:20px 0;
}

.about-page-content p{
    color:#cfcfcf;
    line-height:1.9;
}

.about-feature-box{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    padding:25px;
    border-radius:18px;
    height:100%;
}

.about-feature-box i{
    color:#ffd700;
    font-size:34px;
    margin-bottom:15px;
}

.about-feature-box h4{
    color:#fff;
    font-size:22px;
}

.about-feature-box p{
    color:#bdbdbd;
    margin:0;
}

.about-call-btn{
    background:#ffd700;
    color:#000;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    margin-right:10px;
}
.about-call-btn:hover{
    background:#fff;
    color:#000;
    
}
.about-wa-btn{
    background:#25D366;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
}
.about-wa-btn:hover{
    background:#fff;
    color:#000;
  
}
.mission-section{
    padding:90px 0;
    background:linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.82)),url('../images/bg.png');
}

.mission-box{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    padding:35px;
    border-radius:20px;
    height:100%;
    transition:.4s;
}

.mission-box:hover{
    transform:translateY(-8px);
    border-color:#ffd700;
    box-shadow:0 0 25px rgba(212,175,55,.18);
}

.mission-box i{
    color:#ffd700;
    font-size:40px;
    margin-bottom:20px;
}

.mission-box h4{
    color:#fff;
    font-size:24px;
}

.mission-box p{
    color:#cfcfcf;
    line-height:1.8;
}

.about-cta-section{
    padding:100px 0;
    background:#ffd700;
    background-size:cover;
    background-position:center;
}

.about-cta-section h2{
    color:#000;
    font-size:46px;
    font-weight:700;
}

.about-cta-section p{
    color:#000;
    margin:20px 0 30px;
}

.cta-call-btn{
    background:#000;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    margin-right:10px;
}

.cta-whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}
.services-page-section{
    padding:100px 0;
    background:#000;
}

.section-title span{
    color:#ffd700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin:15px 0;
}

.section-title p{
    color:#cfcfcf;
    max-width:700px;
    margin:0 auto 50px;
}

.icon-service-card{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:22px;
    padding:38px 28px;
    text-align:center;
    height:100%;
    transition:.4s;
}

.icon-service-card:hover{
    transform:translateY(-10px);
    border-color:#ffd700;
    box-shadow:0 0 30px rgba(212,175,55,.20);
}

.service-page-icon{
    width:90px;
    height:90px;
    background:#ffd700;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:36px;
}

.icon-service-card h3{
    color:#ffd700;
    font-size:25px;
    margin-bottom:15px;
}

.icon-service-card p{
    color:#cfcfcf;
    line-height:1.8;
}

.service-call-btn{
    background:#ffd700;
    color:#000;
    padding:10px 24px;
    border-radius:50px;
    font-weight:600;
    margin-right:5px;
}

.service-wa-btn{
    background:#25D366;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-weight:600;
}
.contact-page-section{
    padding:100px 0;
    background:url('../images/bg.png');
}

.contact-info-box{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:22px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:.4s;
}

.contact-info-box:hover{
    transform:translateY(-8px);
    border-color:#ffd700;
}

.contact-info-box i{
    color:#ffd700;
    font-size:42px;
    margin-bottom:20px;
}

.contact-info-box h4{
    color:#fff;
    font-size:24px;
}

.contact-info-box p,
.contact-info-box a{
    color:#cfcfcf;
    text-decoration:none;
}

.contact-form-box{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:25px;
    padding:40px;
}

.contact-form-box h3{
    color:#fff;
    margin-bottom:25px;
}

.contact-form-box .form-control{
    background:#000;
    border:1px solid rgba(212,175,55,.25);
    color:#fff;
    padding:14px 18px;
    border-radius:12px;
    margin-bottom:18px;
}

.contact-form-box .form-control::placeholder{
    color:#999;
}

.contact-submit-btn,
.contact-call-btn{
    background:#ffd700;
    color:#000;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
}

.contact-wa-btn{
    background:#25D366;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
}

.contact-content-box h2{
    color:#fff;
    font-size:46px;
    font-weight:700;
    margin:20px 0;
}

.contact-content-box p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:30px;
}
.service-details-section{
    padding:100px 0;
    background:#000;
}

.service-details-content{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:25px;
    padding:40px;
}

.service-details-icon{
    width:95px;
    height:95px;
    background:#ffd700;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:25px;
}

.service-details-content h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.service-details-content h3{
    color:#ffd700;
    font-size:30px;
    margin:35px 0 18px;
}

.service-details-content p{
    color:#cfcfcf;
    line-height:1.9;
}

.details-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:25px 0;
}

.details-list div{
    background:#000;
    border:1px solid rgba(212,175,55,.18);
    padding:15px;
    border-radius:12px;
    color:#fff;
}

.details-list i{
    color:#ffd700;
    margin-right:8px;
}

.details-feature-box{
    background:#000;
    border:1px solid rgba(212,175,55,.20);
    padding:25px;
    border-radius:18px;
    height:100%;
}

.details-feature-box i{
    color:#ffd700;
    font-size:35px;
    margin-bottom:15px;
}

.details-feature-box h4{
    color:#fff;
}

.service-details-cta{
    background:#ffd700;
    border-radius:22px;
    padding:35px;
    margin-top:35px;
}

.service-details-cta h3,
.service-details-cta p{
    color:#000;
}

.details-call-btn{
    background:#000;
    color:#fff;
    padding:13px 30px;
    border-radius:50px;
    font-weight:600;
    margin-right:10px;
}

.details-wa-btn{
    background:#25D366;
    color:#fff;
    padding:13px 30px;
    border-radius:50px;
    font-weight:600;
}

.sidebar-box,
.sidebar-contact-box{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:22px;
    padding:30px;
    margin-bottom:30px;
}

.sidebar-box h4,
.sidebar-contact-box h4{
    color:#fff;
    margin-bottom:20px;
}

.sidebar-services{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-services li{
    margin-bottom:14px;
}

.sidebar-services a{
    color:#cfcfcf;
    text-decoration:none;
}

.sidebar-services a:hover{
    color:#ffd700;
}

.sidebar-contact-box p{
    color:#cfcfcf;
}

.sidebar-call,
.sidebar-whatsapp{
    display:block;
    text-align:center;
    padding:13px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    margin-top:15px;
}

.sidebar-call{
    background:#ffd700;
    color:#000;
}

.sidebar-whatsapp{
    background:#25D366;
    color:#fff;
}

.details-process-section{
    padding:100px 0;
    background:#080808;
}

.process-box{
    background:#111;
    border:1px solid rgba(212,175,55,.20);
    border-radius:20px;
    padding:30px;
    height:100%;
    text-align:center;
}

.process-box span{
    width:60px;
    height:60px;
    background:#ffd700;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-weight:700;
}

.process-box h4{
    color:#fff;
}

.process-box p{
    color:#cfcfcf;
}

@media(max-width:768px){
    .details-list{
        grid-template-columns:1fr;
    }

    .service-details-content h2{
        font-size:32px;
    }
}