/*=========================================
GLOBAL
=========================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#17181D  ;

color:#fff;

overflow-x:hidden;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

}

/*=========================================
PRELOADER
=========================================*/

.preloader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#0B0B0D;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader{

width:70px;

height:70px;

border:6px solid #222;

border-top:6px solid #F5B800;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

/*=========================================
NAVBAR
=========================================*/
/*====================================
NAVBAR
====================================*/

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:8px 0;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:.4s;

}

.navbar.scrolled{

    background:#111;
    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

/* Logo */

.navbar-brand img{

    height:70px;

}

/* Navigation */

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-item{

    margin:0 12px;

}

.navbar-nav .nav-link{

    position:relative;

    color:#fff;

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    padding:12px 12px !important;

    transition:.35s;

}

/* Hover */

.navbar-nav .nav-link:hover{

    color:#FFCA00;

}

/* Active */

.navbar-nav .nav-link.active{

    color:#FFCA00;

}

/* Underline */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:#FFCA00;

    transition:.35s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

    width:100%;

}

/* Button */

.btn-warning{

    background:#FFCA00;
    border:none;
    color:#111;
    font-weight:700;
    border-radius:50px;
    padding:12px 30px;

}

.btn-warning:hover{

    background:#fff;
    color:#111;

}

/* Toggle */

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler-icon{

background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}
/* ===========================
   LOGO
=========================== */

.navbar-brand{

    display:flex;
    align-items:center;

}

.navbar-brand img{

    height:95px;
    width:auto;
    transition:0.3s ease;

}

/*====================================
MOBILE
====================================*/

@media(max-width:991px){
.navbar-brand img{

    height:75px;
    width:auto;

}
.navbar-collapse{

    background:#111;

    margin-top:20px;

    padding:25px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.navbar-nav{

    width:100%;

}

.navbar-nav .nav-item{

    margin:0;

    width:100%;

}

.navbar-nav .nav-link{

    margin:0;

    padding:15px 0 !important;

    display:block;

    text-align:center;

}

.navbar-nav .nav-link::after{

    display:none;

}

.btn-warning{

    display:block;

    width:220px;

    margin:20px auto 0;

}


}

/*=========================================
HERO SECTION
=========================================*/
.hero{
    position:relative;
    width:100%;
    height:calc(100vh - 95px);
    height:100vh;
    overflow:hidden;
    background:#000;
}

/*==================================================
SWIPER
==================================================*/

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
    width:100%;
    height:100%;
    margin-top:10px;
}

.heroSwiper .swiper-slide{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
}

/*==================================================
BACKGROUND VIDEO
==================================================*/

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/*==================================================
BACKGROUND IMAGE
==================================================*/

.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/*==================================================
BACKGROUND IMAGES
==================================================*/

.hero-police{
    background:url("Assets/images/hero/police\ barrier.jpeg") center center/cover no-repeat;
}

.hero-heras{
    background:url("Assets/images/hero/heras.jpeg") center center/cover no-repeat;
}

.hero-mojo{
    background:url("Assets/images/hero/mojo\ barrier.jpg") center center/cover no-repeat;
}

.hero-ablution{
    background:url("Assets/images/hero/Abulation unit.jpeg") center center/cover no-repeat;
}

/* .hero-water{
    background:url("Assets/images/hero/traffic.png") center center/cover no-repeat;
} */

.hero-fabrication{
    background:url("./Assets/images/Gallery/5.jpeg") center center/cover no-repeat;
}

.hero-light{
    background:url("Assets/images/hero/towerlight.jpg") center center/cover no-repeat;
}

.hero-scaffold{
    background:url("Assets/images/hero/bariier.jpeg") center center/cover no-repeat;
}

/*==================================================
OVERLAY
==================================================*/

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1;
}

/*==================================================
CONTAINER
==================================================*/

.hero .container{
    position:relative;
    z-index:2;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

/*==================================================
CONTENT
==================================================*/

.hero-content{
    width:100%;
    max-width:900px;
    margin:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-top:130px;
    align-items:center;
    text-align:center !important;
    color:#fff;
}

.hero-content h6{
    color:#F5B800;
    font-size:16px;
    font-weight:700;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:clamp(50px,7vw,82px);
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
    color:#fff;
}

.hero-content h1 span{
    display:block;
    color:#F5B800;
}

.hero-content p{
    max-width:760px;
    margin:0 auto 40px;
    font-size:20px;
    line-height:1.8;
    color:#f5f5f5;
    text-align:center;
}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-gold{
    background:#F5B800;
    color:#111;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-gold:hover{
    background:#fff;
    color:#111;
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
    transform:translateY(-5px);
}

/*==================================================
SWIPER ARROWS
==================================================*/

.swiper-button-next,
.swiper-button-prev{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(0,0,0,.30);
    border:2px solid #F5B800;
    color:#F5B800;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:22px;
    font-weight:bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#F5B800;
    color:#111;
}

/*==================================================
PAGINATION
==================================================*/

.swiper-pagination{
    bottom:30px !important;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    width:40px;
    border-radius:30px;
    background:#F5B800;
    opacity:1;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero-content h1{
    font-size:52px;
}

.hero-content p{
    font-size:18px;
}

}

@media(max-width:768px){

.hero{
    height:90vh;
    margin-top:80px;
}

.hero-content{
    padding:0 20px;
}

.hero-content h6{
    font-size:13px;
}

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-gold,
.btn-outline{
    width:250px;
}

.swiper-button-next,
.swiper-button-prev{
    display:none;
}

}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section{

padding:140px 0;

background:#101114;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:25px;

box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.experience-box{

position:absolute;

left:-30px;

top:40px;

background:linear-gradient(135deg,#F5B800,#FFD84D);

padding:35px;

border-radius:20px;

box-shadow:0 20px 60px rgba(245,184,0,.35);

}

.experience-box h2{

font-size:52px;

font-weight:800;

margin:0;

color:#111;

}

.experience-box p{

margin:0;

font-weight:600;

color:#111;

}

.section-title h6{

color:#F5B800;

letter-spacing:3px;

margin-bottom:15px;

font-weight:700;

}

.section-title h2{

font-size:52px;

font-weight:800;

margin-bottom:25px;

line-height:1.2;

}

.section-title p{

color:#bdbdbd;

line-height:1.9;

font-size:18px;

}

/*=========================================
FEATURE CARD
=========================================*/

.feature-card{

background:#17181d;

padding:35px;

margin-bottom:30px;

border-radius:20px;

transition:.4s;

border:1px solid rgba(255,255,255,.06);

height:100%;

}

.feature-card:hover{

transform:translateY(-12px);

border-color:#F5B800;

}

.feature-card i{

font-size:42px;

color:#F5B800;

margin-bottom:20px;

}

.feature-card h4{

margin-bottom:15px;

font-size:24px;

}

.feature-card p{

color:#aaaaaa;

line-height:1.8;

}

/*=========================================
WHY SECTION
=========================================*/
/*==================================================
PROJECTS SECTION
==================================================*/

.projects-section{
    padding:120px 0;
    background:#0b0b0d;
    position:relative;
    overflow:hidden;
}

.projects-section .section-title{
    margin-bottom:70px;
}

.projects-section .section-title h6{
    color:#F5B800;
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.projects-section .section-title h2{
    font-size:clamp(38px,5vw,58px);
    color:#fff;
    font-weight:800;
    margin-bottom:20px;
}

.projects-section .section-title h2 span{
    color:#F5B800;
}

.projects-section .section-title p{
    color:#c7c7c7;
    max-width:760px;
    margin:auto;
    font-size:17px;
    line-height:1.9;
}

/*==================================================
SWIPER
==================================================*/

.projectsSwiper{
    width:100%;
    overflow:hidden;
    position:relative;
}

.projectsSwiper .swiper-slide{
    padding:15px 0 70px;
}

/*==================================================
PROJECT CARD
==================================================*/

.project-card{

    background:#181818;

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    height:100%;

    border:1px solid rgba(255,255,255,.06);

    box-shadow:0 15px 45px rgba(0,0,0,.35);

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.5);

}

/*==================================================
IMAGE
==================================================*/

.project-card img{

  
width:100%;
    max-height:340px;

    object-fit:cover;

    transition:.6s;

}

.project-card:hover img{

    transform:scale(1.08);

}

/*==================================================
CONTENT
==================================================*/

.project-content{

    padding:30px;

}

.project-content span{

    display:inline-block;

    color:#F5B800;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:12px;

}

.project-content h3{

    color:#fff;

    font-size:30px;

    font-weight:700;

    margin-bottom:18px;

}

.project-content p{

    color:#c9c9c9;

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}

.project-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#F5B800;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.project-content a:hover{

    color:#fff;

    gap:15px;

}

/*==================================================
ARROWS
==================================================*/

.project-next,
.project-prev{

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#F5B800;

    transition:.3s;

}

.project-next:hover,
.project-prev:hover{

    background:#F5B800;

    color:#111;

}

.project-next::after,
.project-prev::after{

    font-size:22px;

    font-weight:700;

}

/*==================================================
PAGINATION
==================================================*/

.project-pagination{

    bottom:5px !important;

}

.project-pagination .swiper-pagination-bullet{

    width:13px;

    height:13px;

    background:#fff;

    opacity:.5;

    transition:.3s;

}

.project-pagination .swiper-pagination-bullet-active{

    background:#F5B800;

    opacity:1;

    width:34px;

    border-radius:30px;

}

/*==================================================
HOVER EFFECT
==================================================*/

.project-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transition:.8s;

}

.project-card:hover::before{

    left:100%;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.project-card{

margin-bottom:30px;

}

.project-card img{

height:300px;

}

.project-content{

padding:25px;

}

.project-content h3{

font-size:25px;

}

}

@media(max-width:768px){

.projects-section{

padding:90px 0;

}

.projects-section .section-title h2{

font-size:34px;

}

.project-card img{

height:250px;

}

.project-content{

padding:20px;

}

.project-content h3{

font-size:22px;

}

.project-content p{

font-size:15px;

}

.project-next,
.project-prev{

display:none;

}

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.about-section,
.why-section{

padding:90px 0;

}

.experience-box{

position:relative;

left:0;

top:0;

margin-top:25px;

display:inline-block;

}

.section-title{

text-align:center;

}

.why-section{

text-align:center;

}

.why-list{

display:inline-block;

text-align:left;

margin-bottom:30px;

}

.why-image{

margin-top:50px;

max-width:380px;

}

}
/*=========================================
PRODUCTS
=========================================*/

.products-section{
padding:140px 0;
background:#101114;
}

.product-card{
background:#17181d;
border-radius:25px;
overflow:hidden;
transition:.4s;
height:100%;
border:1px solid rgba(255,255,255,.06);
}

.product-card:hover{
transform:translateY(-15px);
border-color:#F5B800;
box-shadow:0 30px 60px rgba(0,0,0,.4);
}

.product-card img{
width:100%;
height:280px;
object-fit:cover;
transition:.5s;
}

.product-card:hover img{
transform:scale(1.08);
}

.product-content{
padding:30px;
}

.product-content h3{
font-size:28px;
margin-bottom:15px;
}

.product-content p{
color:#bbb;
line-height:1.8;
margin-bottom:20px;
}

.product-content a{
color:#F5B800;
font-weight:700;
text-decoration:none;
}

.product-content a i{
margin-left:8px;
transition:.3s;
}

.product-card:hover a i{
margin-left:15px;
}

/*=========================================
COUNTERS
=========================================*/

.counter-section{
    padding:120px 0;
    background:linear-gradient(135deg,#090909,#131722);
}

.counter-box{
    position:relative;
    padding:50px 30px;
    text-align:center;
    border-radius:20px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    overflow:hidden;
    transition:.4s ease;
}

.counter-box::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.15),transparent);
    transition:.8s;
}

.counter-box:hover::before{
    left:100%;
}

.counter-box:hover{
    transform:translateY(-12px);
    border-color:#F5B800;
    box-shadow:0 15px 40px rgba(245,184,0,.25);
}

.counter-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#F5B800;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.counter-box h2{
    font-size:60px;
    color:#fff;
    font-weight:800;
}

.counter-box h2::after{
    content:"+";
    color:#F5B800;
}

.counter-box p{
    color:#c7c7c7;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:14px;
}

/*=========================================
CTA
=========================================*/

.cta-section{
padding:120px 0;
background:url("./Assets/images/aboutus/cta.jpeg") center/cover;
position:relative;
}

.cta-section::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.75);
}

.cta-box{
position:relative;
z-index:2;
text-align:center;
max-width:900px;
margin:auto;
}

.cta-box h2{
font-size:54px;
font-weight:800;
margin-bottom:25px;
}

.cta-box p{
font-size:20px;
color:#ddd;
margin-bottom:35px;
line-height:1.8;
}

@media(max-width:991px){

.products-section,
.counter-section,
.cta-section{
padding:90px 0;
}

.cta-box h2{
font-size:38px;
}

.product-card img{
height:240px;
}

.counter-box{
margin-bottom:20px;
}

}

/*=========================================
PROJECTS
=========================================*/

.projects-section{
padding:140px 0;
background:#101114;
}

.project-card{
position:relative;
overflow:hidden;
border-radius:25px;
}

.project-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.project-card.large{
height:650px;
}

.project-card.small{
height:310px;
}

.project-card:hover img{
transform:scale(1.08);
}

.project-overlay{
position:absolute;
left:0;
bottom:0;
width:100%;
padding:40px;
background:linear-gradient(transparent,rgba(0,0,0,.9));
}

.project-overlay span{
color:#F5B800;
font-weight:700;
}

.project-overlay h3,
.project-overlay h4{
color:#fff;
margin-top:10px;
}

/*=========================================
GALLERY
=========================================*/

.gallery-section{
padding:140px 0;
background:#0B0B0D;
}

.gallery-img{
width:100%;
height:320px;
object-fit:cover;
border-radius:20px;
transition:.4s;
cursor:pointer;
}

.gallery-img:hover{
transform:scale(1.05);
box-shadow:0 25px 50px rgba(0,0,0,.4);
}

/*=========================================
CLIENTS
=========================================*/

.clients-section{
padding:120px 0;
background:#111216;
}

.client-logo{
width:170px;
opacity:.6;
transition:.4s;
filter:grayscale(100%);
}

.client-logo:hover{
opacity:1;
filter:none;
transform:scale(1.08);
}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonial-section{
padding:140px 0;
background:#0B0B0D;
}

.testimonial-card{
background:#17181d;
padding:40px;
border-radius:25px;
height:100%;
transition:.4s;
border:1px solid rgba(255,255,255,.05);
}

.testimonial-card:hover{
transform:translateY(-12px);
border-color:#F5B800;
}

.testimonial-card i{
font-size:45px;
color:#F5B800;
margin-bottom:25px;
}

.testimonial-card p{
color:#bbb;
line-height:1.9;
margin-bottom:25px;
}

.testimonial-card h5{
margin-bottom:5px;
font-weight:700;
}

.testimonial-card span{
color:#999;
}

@media(max-width:991px){

.projects-section,
.gallery-section,
.clients-section,
.testimonial-section{
padding:90px 0;
}

.project-card.large{
height:400px;
}

.project-card.small{
height:250px;
}

.gallery-img{
height:250px;
}

}

/*=========================================
CONTACT
=========================================*/

.contact-section{
padding:140px 0;
background:#101114;
}

.contact-form{
background:#17181d;
padding:50px;
border-radius:25px;
}

.form-control{
background:#111;
border:1px solid #333;
color:#fff;
padding:16px;
}

.form-control:focus{
background:#111;
border-color:#F5B800;
box-shadow:none;
color:#fff;
}

.form-control::placeholder{
color:#888;
}

.info-box{
display:flex;
align-items:flex-start;
gap:20px;
margin-bottom:30px;
}

.info-box i{
font-size:28px;
color:#F5B800;
}

.info-box h5{
margin-bottom:8px;
}

.info-box p{
color:#bbb;
margin:0;
}

/*=========================================
MAP
=========================================*/

.map-section iframe{
width:100%;
height:450px;
border:0;
display:block;
}

/*=========================================
FOOTER
=========================================*/

.footer{
background:#0B0B0D;
padding:90px 0 30px;
}

.footer-logo{
height:70px;
margin-bottom:25px;
}

.footer h4{
margin-bottom:25px;
font-weight:700;
}

.footer p,
.footer li,
.footer a{
color:#aaa;
text-decoration:none;
line-height:2;
transition:.3s;
}

.footer a:hover{
color:#F5B800;
}

.footer ul{
list-style:none;
padding:0;
margin:0;
}

.social-icons{
display:flex;
gap:15px;
margin-top:20px;
}

.social-icons a{
width:45px;
height:45px;
background:#17181d;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:18px;
}

.social-icons a:hover{
background:#F5B800;
color:#111;
}

.footer hr{
margin:50px 0 25px;
border-color:#333;
}

.copyright{
text-align:center;
color:#888;
}

@media(max-width:991px){

.contact-section{
padding:90px 0;
}

.contact-form{
margin-top:40px;
padding:30px;
}

.footer{
text-align:center;
}

.social-icons{
justify-content:center;
}

}









.our-projects{
    background:#0B0B0D;
}

.section-subtitle{
    color:#ffca00;
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

.project-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.project-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(transparent,rgba(0,0,0,.9));
}

.project-overlay h5{
    color:#fff;
    margin:0;
    font-weight:600;
}

.project-card:hover img{
    transform:scale(1.1);
}

.swiper{
    padding-bottom:20px;
}

/* ===========================
   Premium Get Quote Button
=========================== */

.quote-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#FFCA00;
    color:#000;
    padding:16px 38px;
    font-size:17px;
    font-weight:700;
    text-decoration:none;
    border-radius:50px;
    overflow:hidden;
    position:relative;
    transition:.4s ease;
    box-shadow:0 12px 30px rgba(255,202,0,.35);
}

.quote-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.35);
    transform:skewX(-25deg);
    transition:.7s;
}

.quote-btn:hover::before{
    left:120%;
}

.quote-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.3);
}

.quote-btn i{
    transition:.4s;
}

.quote-btn:hover i{
    transform:translateX(8px);
}

@media(max-width:768px){

.quote-btn{
    padding:14px 28px;
    font-size:16px;
}

}


/* Buttons Container */
.product-buttons{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
    flex-wrap:wrap;
}

/* Read More Button */
.read-more-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    background:#000;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.read-more-btn:hover{
    background:#FFCA00;
    color:#000;
}

/* Inquiry Button */
.inquiry-btn{
    display:inline-flex;
    align-items:center;
    padding:12px 22px;
    background:#000;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.inquiry-btn:hover{
   background:#FFCA00;
    color:#000;
}
.inquiry-btn:hover{
    background:#000;
    color:#fff;
}

/* Responsive */
@media(max-width:576px){

    .product-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .read-more-btn,
    .inquiry-btn{
        justify-content:center;
        width:100%;
    }

}

/* ===========================
   WhatsApp Floating Button
=========================== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
    transition:all .3s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    background:#1EBE5D;
    color:#fff;
    transform:scale(1.1);
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

.whatsapp-float{
    width:58px;
    height:58px;
    right:18px;
    bottom:18px;
    font-size:30px;
}

}




/*==============================
      Contact Information
==============================*/



/* Icon */




/* Text */

.info-content h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    color:#ffffff;
}

.info-content p{
    margin:0;
    line-height:1.7;
}


.info-content a{
    color:#FFCA00;
    text-decoration:none;
    transition:.3s;
}

.info-content a:hover{
    color:#FFCA00;
}

/* Mobile */

@media(max-width:768px){

.info-box{
    padding:18px;
}

.info-icon{
    width:55px;
    height:55px;
    font-size:20px;
}

.info-content h5{
    font-size:18px;
}

}



/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:#0d2b4d;
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-bar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.top-left a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.top-left a i{
    color:#f7b731;
    margin-right:8px;
}

.top-left a:hover{
    color:#f7b731;
}

.top-right{
    display:flex;
    gap:15px;
}

.top-right a{
    color:#fff;
    font-size:16px;
    transition:.3s;
}

.top-right a:hover{
    color:#f7b731;
}

@media (max-width:768px){

.top-bar{
    display:none;
}

}

/*==============================
TOP BAR
==============================*/

.top-bar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1100;

    background:rgba(8, 30, 52, 0.75);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.15);

    padding:10px 0;
}

.top-bar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.top-contact a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.top-contact a:hover{
    color:#ffb400;
}

.top-contact i{
    color:#ffb400;
    margin-right:8px;
}

.top-social{
    display:flex;
    gap:15px;
}

.top-social a{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    background:rgba(255,255,255,.12);
    transition:.3s;
}

.top-social a:hover{
    background:#ffb400;
    color:#000;
}

/* Navbar Position */
.navbar{
    margin-top:54px;
}

/* Mobile */
@media(max-width:991px){

    .top-bar{
        display:none;
    }

    .navbar{
        margin-top:0;
    }

}