body{
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
   
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  
}
.section-heading{
    position: relative;
    color: #0E46A3;
 }
 .section-heading::after{
    position: absolute;
    left:25%;
    bottom:-10px;
    content:"";
    width:50%;
    height:3px;
    background-color:#0E46A3 ;
    transform: scale(0,0);
    transition: all .5s ease;
   
 }
 .section-heading:hover::after{
    transform: scale(1,1);

 }
 .section-heading-white{
    position: relative;
    color: white;
 }
 .section-heading-white::after{
    position: absolute;
    left:25%;
    bottom:-15px;
    content:"";
    width:50%;
    height:3px;
    background-color:white ;
    transform: scale(0,0);
    transition: all .5s ease;
   
 }
 .section-heading-white:hover::after{
    transform: scale(1,1);

 }
/* =====navbar style===== */
/* ===========navbar start=================== */
.navcolor{
    background-color: #0E46A3;
    z-index: 10;
}

.navbar-toggler span {
    display: block;
    background-color:white;
    height: 3px;
    width: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.35s ease-out;
    transform-origin: center left;
}
.navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
}
/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
}
/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}
/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg) ;
}
/*
  Animate collapse open into hamburger menu
 */
/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg) ;
}
/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
    opacity: 1;
}
/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg) ;
}
/* line appear after this code */
.navcolor-line{
    position: relative;
}
.navcolor-line::after{
  position: absolute;
  content: "";
  bottom:-2px;
  left:6px;
  width:80%;
  height: 2px;
  border-radius: 10px;
  background-color: white;
  transform: scale(0,0);
  transition: all .5s ease;
}
.navcolor-line:hover::after{
    transform: scale(1,1);
}
@media(max-width:768px){
    .navcolor-line::after{
        position: absolute;
        content: "";
        bottom:-2px;
        left:6px;
        width:20%;
        height: 2px;
        border-radius: 10px;
        background-color: white;
        transform: scale(0,0);
        transition: all .5s ease;
    }
}
.navigation-div{
    margin-left: 15%;
 }
 @media(max-width:768px){
     .navigation-div{
         margin-left: 5%;
      }
 }
 .navlink-list li a{
     color: white;
     font-weight: bold;
     padding: 10px;
     margin-left: 20px;
 }
 .navlink-list li a:hover{
     color: white;
 }
 .navlink-list li a.active{
     color: white!important;
 }
 /* =====logo section start========== */
 .logo-link{
     width: 28%;
 }
 @media(max-width:768px){
     .logo-link{
         width: 52%;
     }
 }
 /* =============logo section end======== */
 /*========== navbar end here============ */
 /* =======hero section start========= */
 .hero-section{
     background-image: url(../images/hero-section.jpg);
     background-repeat: no-repeat;
     background-size: cover;
     height: 650px;
     position: relative;
     background-position-y: center;
 }
 @media(max-width:768px){
     .hero-section{
         background-image: url(../images/hero-section.jpg);
         background-repeat: no-repeat;
         background-size: cover;
         background-position: center;
         height: 800px;
         position: relative;
     }
 }
 .hero-section::after{
     content: " ";
     position: absolute;
     top: 0;
     left:0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0,0.6);
 }
 .hero-text{
     color: white;
     margin-top: 130px;
     z-index: 2;
     animation: left-ani 2s linear;
 }
 @keyframes left-ani{
    0%{
        transform: translateX(-300px);
    }
    100%{
        transform: translateX(0px);
    }
 }
 .hero-text-heading{
     margin-top: 50px;
     font-size: 4rem;
 }
 @media (max-width:768px) {
    .hero-text-heading{
        margin-top: 50px;
        font-size: 50px;
    }
    
 }
 @media (max-width:375px) {
    .hero-text-heading{
        margin-top: 50px;
        font-size: 30px;
    }
    
 }
 @media (min-width:1024px) {
    .hero-text-heading{
       
        font-size: 60px;
    }
    
 }

/* =======about-us======== */
.about-h{
    color: #0e46a3;
}
.left-to-right:hover{
    animation: l-t-r 1s linear;
}
.mission-rotate{
    transform: rotate(-140deg);
}
@keyframes l-t-r{
    0%{
        transform: translateX(0px);
    }
    50%{
        transform: translateX(20px);
    }
    100%{
        transform: translateX(0px);
    }
}
/* =======about-us-end======= */
/* =======services-start======= */
.card{
    height:100%;
    /* width:400px; */
    background-color: white;
    text-align: center;
    transition: all .5s ease;
}
.card:hover{
    box-shadow: 0px 0px 12px 0px #0e47a3c8;

}
.card-img{
    overflow: hidden;
   
}
.card-img:hover img {
    transform: scale(1.2,1.2);
    transition: all 1s ease;
}
.services-heading{
    color:#0E46A3E6;
   
}
.fw-bold{
    color:#0E46A3E6;
    font-size: 20px;
}
.card-img img{
    height: 200px;
    transition: all 2s ease;
}
.title{
    margin-top: 20px;
}
/* =======services-end======= */
/* security-solutions main div*/
.security-solutions{
	background-color: #0E46A3;
	height: 900px;
}

/* security-solutions heading */
.solutions-title{
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* security-solutions systems */
.solution-systems{
	height: 350px;
    
}
.systems{
	background-color: whitesmoke;
	color: #0E46A3;
	height: 300px;
    border-radius: 8px;	
    
}
.systems:hover img{
    transform: scale(0.9,0.9);
    transition: all 1s ease;
   
}

/* in lg mobile */
@media(max-width:425px){
	.security-solutions{
	background-color: #0E46A3;
	height: 2350px;
}
}
/* =======security-solutions-end=====*/
/* =======director-section-start=====*/
.director{
    width: 70%;
    
}
/* =======director-section-end=====*/

/* =======compitator-start=====*/
.compitator-mainheading{
    color: #0E46A3E6;
}
.compitator-heading{
    font-size: 50px;
}
.compitator-icons{
    background-color: whitesmoke;
    height: 100%;
    transition: all 1s ease;
}
.compitator-icons:hover{
    box-shadow: 0px 0px 12px 0px #0E46A3;
}
.compitator-para{
    line-height: 28px;
}
.compitator-pa{
    line-height: 32px;
}
.compitator-parag{
    line-height: 30px;
}
.compitator-paragraph{
    line-height: 35px;
}
/* =======compitator-end=====*/
.client-pic:hover{
    opacity: 0.8;

}
  /* ==========back to top button===== */
#backToTopBtn {
    position: fixed;
    bottom: 0px; 
    right: 10px;  
    display: none; 
    padding: 15px 20px;
    font-size: 20px;
    color: white;
    background-color: #0E46A3;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    z-index: 1000; 
    box-shadow: 2px 2px 5px #c0c4c6,-2px -2px 5px #c0c4c6;
    animation: topback 1s infinite linear alternate-reverse;
}
#backToTopBtn i{
    transform: rotate(-90deg);
    color:white;
}

/* Button display when scrolled down */
#backToTopBtn.show {
    display: block;
}
 @keyframes topback{
    to{
        right: 10px;
        bottom: 40px;
    }
 }
 .text{
    /*    text-align: center;*/
        color: #FFFFFF;
    }
    .personal{
        color: #FFFFFF;
         
    }
    #map{
        width: 200px;
    }
    #map{
        width: 80%;
        height: 330px;
        border: 2px solid #81C804;
      }
      .copyright{
        background-color: white;
        color: #0E46A3;
      }
      .contect-input{
        width: 100%;
       padding: 10px;
       border: none;
       border-radius: 5px;
      }
      .contect-email{
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 5px;
      }
      .form-control{
        width: 85%;
        resize: none;
        
      }
      .apply-button{
        background-color: white;
        color: #0E46A3;
        border: none;
        border-radius: 25px; 
        padding: 10px 15px;
       
      }
      .apply-button:hover{
        background-color:#0E46A3 ;
        color:white ;
        border: 2px solid white;
        box-shadow: 0px 0px 10px 0px whitesmoke;
      }
      .footer-icon{
        font-size: 25px;
      }
      /* whatsapp icon style */
      .whatsapp-icon{
        position: fixed;
        left: 10px;
        bottom: 0px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        cursor: pointer;
        z-index: 1000; 
        box-shadow: 2px 2px 5px #c0c4c6,-2px -2px 5px #c0c4c6;
        animation: whatsapp-ani 2s infinite linear alternate-reverse;
        border: none;
      }
      @keyframes whatsapp-ani{
        to{
            left: 10px;
            bottom: 40px;
        }
     }
     .whatsapp-btn{
        border: none;
     }