/* ===========================
   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;
    scroll-behavior:smooth;
}
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/glightbox/dist/css/glightbox.min.css">

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#333;
    overflow-x:hidden;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    background:rgba(0,50,150,.90);
    backdrop-filter:blur(10px);
    transition:.4s;
    padding:12px 0;
}

.navbar-brand{
    display:flex;
    align-items:center;
    font-size:28px;
    font-weight:700;
    color:#fff!important;
}

.navbar-brand img{
    width:55px;
    height:55px;
    border-radius:50%;
    margin-right:12px;
}

.nav-link{
    color:#fff!important;
    margin-left:18px;
    font-weight:600;
    transition:.3s;
}

.nav-link:hover{
    color:#ffd700!important;
}

/* ===========================
   HERO
=========================== */

.hero-slide{
    position:relative;
}

.hero-slide img{
    width:100%;
    height:100vh;
    object-fit:cover;
    filter:brightness(.45);
}

.hero-content{
    position:relative;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
}

.hero-content span{
    color:#FFD700;
}

.hero-content p{
    font-size:22px;
    margin:25px 0;
}

.hero-content .btn{
    padding:14px 35px;
    border-radius:50px;
    font-weight:700;
}

/* ===========================
   SECTION TITLE
=========================== */

section{
    padding:90px 0;
}

h2{
    font-size:42px;
    font-weight:700;
}

h5{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
}

/* ===========================
   ABOUT
=========================== */

#about img{
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.counter{
    color:#0d6efd;
    font-size:45px;
    font-weight:800;
}

/* ===========================
   BUTTONS
=========================== */

.btn-primary{
    border-radius:50px;
    padding:12px 30px;
    font-weight:600;
    transition:.4s;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

/* ===========================
   WHY CHOOSE US
=========================== */

.feature-box{
    background:#fff;
    border-radius:20px;
    transition:.4s;
    padding:30px;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.feature-box i{
    transition:.4s;
}

.feature-box:hover i{
    transform:scale(1.2) rotate(10deg);
}

/* ===========================
   PRODUCT CARD
=========================== */

.product-card{
    overflow:hidden;
    border-radius:20px;
    transition:.4s;
    background:#fff;
}

.product-card img{
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.20);
}

.product-card .card-body{
    padding:25px;
}

.product-card h4{
    font-weight:700;
}

.product-card p{
    color:#666;
}

/* ===========================
   STATS SECTION
=========================== */

.stats-section{
    background:linear-gradient(135deg,#0052D4,#4364F7,#6FB1FC);
}

.stats-section h2{
    color:#fff;
    font-size:55px;
    font-weight:800;
}

.stats-section p{
    color:#fff;
    font-size:18px;
}

/* ===========================
   GALLERY
=========================== */

#gallery img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:18px;
    transition:.5s;
}

#gallery img:hover{
    transform:scale(1.05);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* ===========================
   VIDEO
=========================== */

video{
    border-radius:20px;
    transition:.4s;
}

video:hover{
    transform:scale(1.02);
}

/* ===========================
   SWIPER
=========================== */

.swiper-pagination-bullet{
    background:#fff;
}

.swiper-pagination-bullet-active{
    background:#FFD700;
}

/* ===========================
   ANIMATION
=========================== */

.fade-up{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(50px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

/* ===========================
   SHADOW UTILITIES
=========================== */

.shadow-lg-custom{
    box-shadow:0 20px 50px rgba(0,0,0,.20);
}

/* ===========================
   CONTACT SECTION
=========================== */

#contact{
    background:#f8f9fa;
}

#contact .form-control{
    border-radius:12px;
    padding:14px;
    border:1px solid #ddd;
    transition:.3s;
}

#contact .form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 10px rgba(13,110,253,.25);
}

#contact button{
    width:100%;
    border-radius:50px;
    padding:14px;
    font-weight:700;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#0b1220;
    color:#fff;
}

footer h3,
footer h5{
    color:#fff;
}

footer a{
    color:#ddd;
    transition:.3s;
}

footer a:hover{
    color:#FFD700;
    text-decoration:none;
}

footer hr{
    border-color:rgba(255,255,255,.2);
}

/* ===========================
   FLOATING BUTTONS
=========================== */

.whatsapp,
.call-btn{
    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    z-index:999;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
}

.whatsapp{
    bottom:20px;
    background:#25D366;
}

.call-btn{
    bottom:95px;
    background:#0d6efd;
}

.whatsapp:hover,
.call-btn:hover{
    transform:scale(1.12);
}

/* ===========================
   BACK TO TOP BUTTON
=========================== */

#topBtn{
    position:fixed;
    left:20px;
    bottom:20px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#ff6600;
    color:#fff;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:.3s;
}

#topBtn:hover{
    transform:translateY(-5px);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:18px;
}

.navbar-brand{
    font-size:22px;
}

section{
    padding:70px 0;
}

}

@media(max-width:768px){

.hero-slide img{
    height:80vh;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

h2{
    font-size:30px;
}

.counter{
    font-size:36px;
}

.product-card img{
    height:220px;
}

.whatsapp,
.call-btn{
    width:55px;
    height:55px;
}

}

@media(max-width:576px){

.hero-content{
    width:95%;
}

.hero-content h1{
    font-size:28px;
}

.hero-content p{
    font-size:15px;
}

.navbar-brand img{
    width:42px;
    height:42px;
}

.navbar-brand span{
    font-size:18px;
}

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#003b99;
}

/* ===========================
   SELECTION
=========================== */

::selection{
    background:#0d6efd;
    color:#fff;
}

.hero-slide{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.hero-slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.navbar-brand img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin-right:12px;
}

