/* ==========================
   HMS SOLUTIONS
   Professional CCTV Website
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#333;
}

/* Navbar */

.navbar{
    transition:.3s;
}

.navbar-brand{
    font-size:28px;
    font-weight:bold;
    letter-spacing:1px;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
    transition:.3s;
}

.nav-link:hover{
    color:#ffc107 !important;
}

/* Hero */

.hero{
    background:linear-gradient(rgba(0,0,0,.70),
    rgba(0,0,0,.70)),
    url("images/hero.jpg");
    background-size:cover;
    background-position:center;
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:55px;
    font-weight:bold;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.hero-img{
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

/* Buttons */

.btn-warning{
    padding:12px 28px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.btn-warning:hover{
    transform:translateY(-3px);
}

.btn-outline-light{
    padding:12px 28px;
    border-radius:30px;
    margin-left:10px;
}

/* Cards */

.card{
    border:none;
    border-radius:15px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.service-card{
    overflow:hidden;
}

.service-card i{
    transition:.4s;
}

.service-card:hover i{
    transform:scale(1.2);
}

/* Section */

section{
    padding:80px 0;
}

h2{
    font-weight:bold;
    margin-bottom:40px;
}

.list-group-item{
    font-size:18px;
    padding:15px;
}

/* Footer */

footer{
    background:#111;
}

footer h4,
footer h5{
    color:#ffc107;
}

footer p{
    color:#ddd;
}

/* WhatsApp */

.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    color:#fff;
    transform:scale(1.1);
}

/* Scroll Top */

#topBtn{
    position:fixed;
    bottom:95px;
    right:20px;
    display:none;
    width:50px;
    height:50px;
    border:none;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    cursor:pointer;
    font-size:22px;
}

/* Contact Section */

.bg-primary{
    background:#0D47A1 !important;
}

/* Hero Animation */

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0px);
}

}

/* Fade */

.fade-up{
    animation:fadeup 1s;
}

@keyframes fadeup{

0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

/* Responsive */

@media(max-width:992px){

.hero{
text-align:center;
padding:100px 0;
}

.hero h1{
font-size:42px;
}

.hero-img{
margin-top:40px;
width:80%;
}

}

@media(max-width:768px){

.hero h1{
font-size:34px;
}

.hero p{
font-size:17px;
}

.btn{
margin-top:10px;
display:block;
width:100%;
}

.nav-link{
margin-left:0;
}

}

@media(max-width:576px){

.hero{
min-height:75vh;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.card{
margin-bottom:20px;
}

footer{
text-align:center;
}

.whatsapp{
width:55px;
height:55px;
font-size:30px;
}

}

/*==========================
 About Banner
===========================*/

.about-banner{
    background:url("images/about-banner.jpg") center center/cover no-repeat;
    height:380px;
    position:relative;
    display:flex;
    align-items:center;
}

.about-banner .overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:flex;
    align-items:center;
}

.about-banner h1{
    color:#fff;
    font-size:55px;
    font-weight:700;
    margin-bottom:15px;
}

.about-banner p{
    color:#fff;
    font-size:20px;
    margin-bottom:15px;
}

.breadcrumb{
    background:none;
    margin:0;
}

.breadcrumb-item a{
    color:#ffc107;
}

.breadcrumb-item.active{
    color:#ffffff;
}

@media(max-width:768px){

.about-banner{
    height:280px;
}

.about-banner h1{
    font-size:38px;
}

.about-banner p{
    font-size:16px;
}

}

.about-banner{
    background: url("images/about-banner.jpg") center center/cover no-repeat;
}