/*=====================================
GOOGLE FONT
=====================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    color:#333;
    background:#fff;
}
body::before{

content:'';
position:fixed;
width:350px;
height:350px;
background:radial-gradient(circle,
rgba(13,110,253,.18),
transparent 70%);
pointer-events:none;
border-radius:50%;
transform:translate(-50%,-50%);
left:var(--x);
top:var(--y);
z-index:9999;

}
/*=====================================
TOP BAR
=====================================*/

.top-bar{
    background:linear-gradient(90deg,#0d6efd,#007bff);
    font-size:14px;
    font-weight:500;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.top-bar a:hover{
    color:#ffd54f;
}

.top-bar i{
    margin-right:6px;
}

.top-bar .fab{
    width:34px;
    height:34px;
    line-height:34px;
    text-align:center;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    transition:.3s;
}

.top-bar .fab:hover{
    background:#fff;
    color:#0d6efd;
    transform:translateY(-3px);
}

/*=====================================
HEADER
=====================================*/

.navbar{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.2);
    transition:.4s;
}

.navbar.scrolled{
    background:rgba(255,255,255,.97);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.navbar-brand img{
    height:65px;
    transition:.4s;
}

.navbar-nav .nav-link{
    font-size:15px;
    font-weight:600;
    color:#222;
    margin:0 10px;
    position:relative;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#0d6efd;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-5px;
    background:#0d6efd;
    transition:.4s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

.btn{
    border-radius:50px;
    padding:12px 28px;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-3px);
}

/*=====================================
HERO
=====================================*/

.hero-img{
    height:90vh;
    object-fit:cover;

animation:float 8s ease infinite;

}

.carousel-item{
    position:relative;
}

.carousel-item::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
    90deg,
    rgba(3,30,70,.85),
    rgba(0,90,180,.45),
    rgba(0,0,0,.15));
}
.carousel-caption{
    bottom:25%;
    z-index:10;
}

.carousel-caption h1{
    font-size:70px;
    font-weight:800;
    letter-spacing:1px;
    text-shadow:0 15px 30px rgba(0,0,0,.4);
}

.carousel-caption p{
    font-size:22px;
    max-width:700px;
    margin:auto;
}

.carousel-caption .btn{
    animation:zoomIn 1.2s;
}

/*=====================================
ABOUT
=====================================*/

section{
    position:relative;
}

section h2{
    font-weight:700;
    margin-bottom:20px;
}

section p{
    color:#666;
    line-height:1.8;
}

section img{
    border-radius:15px;
}

.about-image{
    overflow:hidden;
}

.about-image img{
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.08);
}

/*=====================================
PRODUCTS
=====================================*/

.product-card{
    border:none;
    overflow:hidden;
    transition:.4s;
    border-radius:15px;
}

.product-card img{
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.product-card .card-body{
    padding:25px;
}

.product-card h5{
    font-weight:700;
}

/*=====================================
SPECIAL OFFERS
=====================================*/

.card{

border:none;
overflow:hidden;
transition:.45s;
border-radius:20px;

}

.card::before{

content:'';
position:absolute;
left:0;
top:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#0d6efd,#00d4ff);
transform:scaleX(0);
transition:.4s;

}

.card:hover::before{

transform:scaleX(1);

}

.card:hover{

transform:translateY(-15px);
box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*=====================================
COUNTER
=====================================*/

.counter-section{
    background:url("../images/counter-bg.png") center center;
    background-size:cover;
    position:relative;
}

.counter-section::before{
    content:'';
    position:absolute;
    inset:0;
 
    background: rgba(3, 24, 74, 0.75);
}

.counter-section .container{
    position:relative;
    z-index:2;
}

.counter{
    font-size:55px;
    font-weight:700;
    margin-bottom:10px;
}

/*=====================================
WHY CHOOSE US
=====================================*/

.fa-award,
.fa-users,
.fa-headset{
    transition:.4s;
}

.text-center:hover i{
    transform:rotateY(180deg);
}

/*=====================================
SERVICES
=====================================*/

.service-card{
 background:rgba(255,255,255,.85);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.3);
}

.service-card:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-10px);
}

.service-card:hover p{
    color:#fff;
}

.service-card:hover i{
    color:#fff!important;
}

.service-card i{
    transition:.4s;
}

/*=====================================
LATEST NEWS
=====================================*/

.news-card{
    border:0;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    background:#fff;
}

.news-card img{
    width:100%;
    transition:.5s;
}

.news-card:hover img{
    transform:scale(1.08);
}

.news-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/*=====================================
CLIENT LOGOS
=====================================*/

.client-logo{
    max-width:160px;
    opacity:.7;
    filter:grayscale(100%);
    transition:.4s;
    margin:auto;
}

.client-logo:hover{
    opacity:1;
    filter:grayscale(0);
    transform:scale(1.08);
}

/*=====================================
TESTIMONIAL
=====================================*/

#testimonialCarousel{
    max-width:900px;
    margin:auto;
}

#testimonialCarousel .carousel-item{
    padding:50px;
}

#testimonialCarousel h5{
    font-size:28px;
    margin-bottom:20px;
}

#testimonialCarousel p{
    font-size:18px;
    line-height:1.8;
    color:#f8f9fa;
}

/*=====================================
CONTACT
=====================================*/

form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.form-control{
    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    margin-bottom:15px;
}

textarea.form-control{
    height:150px;
    resize:none;
}

.form-control:focus{
    border-color:#0d6efd;
    box-shadow:none;
}

/*=====================================
FOOTER
=====================================*/

footer{
    background:#111;
}

footer h5{
    margin-bottom:25px;
    font-weight:700;
}

footer p,
footer a{
    color:#bbb;
    transition:.3s;
}

footer a:hover{
    color:#fff;
    padding-left:5px;
    text-decoration:none;
}

footer i{
    margin-right:8px;
}

/*=====================================
BUTTONS
=====================================*/

.btn-primary{

background:linear-gradient(135deg,#0d6efd,#00b4ff);
border:none;
box-shadow:0 15px 30px rgba(13,110,253,.35);

}

.btn-primary:hover{

transform:translateY(-5px);
box-shadow:0 20px 40px rgba(13,110,253,.45);

}

.btn-danger:hover{
    transform:translateY(-4px);
}

.btn-success:hover{
    transform:translateY(-4px);
}

/*=====================================
BACK TO TOP
=====================================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border-radius:50%;
    display:none;
    z-index:9999;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

/*=====================================
WHATSAPP
=====================================*/

.whatsapp{
    position:fixed;
    left:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.4s;
}

.whatsapp:hover{
    transform:scale(1.1);
    color:#fff;
}

/*=====================================
LOADER
=====================================*/

#loader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

/*=====================================
ANIMATIONS
=====================================*/

@keyframes fadeInDown{

0%{
opacity:0;
transform:translateY(-60px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

@keyframes fadeInUp{

0%{
opacity:0;
transform:translateY(60px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

@keyframes zoomIn{

0%{
opacity:0;
transform:scale(.7);
}

100%{
opacity:1;
transform:scale(1);
}

}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

/*=====================================
HOVER EFFECTS
=====================================*/

img{
    transition:.4s;
}

img:hover{
    transform:scale(1.02);
}

.shadow{
    transition:.4s;
}

.shadow:hover{
    box-shadow:0 25px 50px rgba(0,0,0,.15)!important;
}

.rounded{
    border-radius:20px!important;
}

