@charset "utf-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,700&display=swap');


*{
	margin:0px;
	padding: 0px;
	scroll-behavior: smooth;
	
}

div{
	font-family: 'Roboto', sans-serif;

	
}

a:focus, a:hover{
	text-decoration:none;
	outline:none;
	transition:0.5s;
}

html {
  scroll-behavior: smooth;
	
}

.video{
	margin-bottom: -7px;
}

h1 {
  font-size:70px;
  word-spacing: 0px;
  letter-spacing: 0px;
	margin: 0px;
	padding: 0px;
}

h2 {
  font-size:52px;
  font-weight: 600;
	margin: 0px;
	padding: 0px;
}
h3 {
  font-size: 40px;
   font-weight: 500;
	margin: 0px;
	padding: 0px;
}
h4 { 
  font-size: 32px;
  font-weight: 500;
	margin: 0px;
	padding: 0px;
}
h5 {
  font-size: 24px;
  font-weight: 500;
}
h6 {
  font-size: 20px;
  font-weight: 400;
}
p {
   line-height:26px;
  font-weight: 400;
	font-family: 'Roboto', sans-serif;
}
a {
  font-size: 18px;
  line-height: 18px;
 
}

.banner-text {
	font-size: 4.5vw;
}

.text{
	color:#D1D1D1;
} 

.logo{
	margin-top:-10px; 
}
.nav1 {
      background-color: transparent;
      transition: background-color 0.3s ease-in-out;
	color: white;
	padding: 10px 0px;
	
    }

    .solid-nav1{
      background-color:black;
		
		/* Change this to your desired solid background color */
    }


.contact-number{
	float:left;
	margin-top:10px;
}

.icon a{
	color:white;
}

.icon a:hover{
	color:white;
	text-decoration:none;
}
.icon a:focus{
	color:white;
	text-decoration:none;
}

.icon span{
	float:right;
	margin-left:20px;
	margin-top:10px;
}

.clear{
	clear:both;
}
.line1{
	margin-top:05px;
	line-height: normal;
	border: 1px solid white;
	
}

/*---start navbar-----*/
.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}


@media only screen and (min-width: 992px) {
.d-lg-none{
	display:none !important;
}

}

.float-left{
	float:left !important;
}

.d-none{
	display:none !important;
}

.d-lg-block{
	display:block !important;
}

@media only screen and (max-width: 992px) {
.d-lg-block{
	/* display:none !important; */
}

}

.float-right{
	float:right !important;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
	
}

.main-nav a {
  display: block;
  position: relative;
  color: white;
  margin: 10px 20px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
   text-transform: uppercase;
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: white;
  text-decoration: none;
	
}

.main-nav a:focus{
	color:white;
	text-decoration:none;}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;

}

.main-nav .drop-down li {
  min-width: 200px;
  position: relative;
	
}

.main-nav .drop-down ul a {
  margin: 20px 40px;
	padding: 5px 0px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: black;
position: relative;
	display: block;

}

.main-nav .drop-down ul a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}

.main-nav .drop-down ul a:hover:before {
  width: 100%;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: black;
	width: fit-content;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 5px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right:35px;
}

.main-nav .drop-down .drop-down > a:after {
 content: "\f107";
  position: absolute;
  right: 15px;
}

.services{
	display:none;
}



/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background:rgba(0,0,0,0.67);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 400;
	text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: white;
  text-decoration: none;
}

.mobile-nav a:focus{
	color:white;
	text-decoration:none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 1%;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: white;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background:rgba(0,0,0,0.67);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}


/*------------------underline code

.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-left:before {
  content: "";
  position: absolute;
	margin: 0px 20px;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background:#333;
  height: 1px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}

-------------------------------------- */

/*corosel start*/

   
    .slider {
        width: 100%;
        margin: 50px auto;
    }

    .slick-slide {
        margin: 0px 10px;
    }

    .slick-slide img {
        width: 100%;
    }

    .slick-prev:before,
    .slick-next:before {
        color: white;
        transition-duration: 1s;
    }

    .slick-slide {
        transition: all ease-in-out .3s;
        opacity: .2;
    }

    .slick-active {
        opacity: .5;
    }

    .slick-current {
        opacity: 1;
    }

/*--------corosel end-----*/

.video-caption{
	margin-top:20%;
	color:#f5f5f5;
	
}


.our_services{
	color: #4aa5f0;
}

.cart1{
	transform: skewX(1);
}
.cart1:hover{
	transform: skewX(2);
	
}

.service_cart{
	background-color: rgba(26,34,42,1.00);
	border-radius: 10px;
	background-color: aliceblue;
	color: #494848;
	transition: 0.2s;
}

.service_cart:hover{
	box-shadow: 2px 2px 5px grey;
	transform: scale(1.03,1.03);
}
.service_cart img{
	border-radius: 10px;
}
.read-more{
	margin-top: 30px;
}
 .read-more a{
	
	 border-radius: 10px;
}

.read-more a:hover{
	
	border-radius: 10px;
	
	
}

.section1{
	background-color: rgba(26,34,42,1.00);
}

.section1 p{
	text-align: justify;
}

.drone-attack{
	border-radius: 10%;
}

/*-------
footer a{
	font-family:'Roboto', sans-serif;
	font-weight: 300;
	color: #D9D9D9;
	
	
}

footer a:hover, footer a:active, footer a:focus {
	font-family:'Roboto', sans-serif;
	color:#FFFFFF;
}

--------------------*/

footer li{
	display: inline-block;
}

footer .text a {
  display: inline-block;
  margin: 10px 0px;
  text-decoration: none;
  font-family:'Roboto', sans-serif;
font-weight: 500;
	color: #D9D9D9;
  position: relative;
	
}

footer .text a:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width:0;
  height: 2px;
  background-color:#D9D9D9;
  transition: width 0.3s ease;
}

footer a{
	color:#D9D9D9;
	
}


footer .text a:hover:before {
  width: 100%;
	
	
}

footer a:hover, footer a:active, footer a:focus {
	font-family:'Roboto', sans-serif;
	color:rgba(200,200,200,1.00);
}

footer p{
	font-size: 16px;
	font-weight: 500;
	font-family:'Roboto', sans-serif;
}

 .f_underline {
             position: relative;
            display: inline-block;
        }
        
      .f_underline::before {
          content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 2px;
            background-color: #D9D9D9; 
        }

.d-tras{
	font-size: 3vh;
	font-weight: bold;
}


.social_icon a{
	font-size:1.7vw;
}

/*-----About us page style sheet------------------*/

#aboutus-text{
	font-weight:300;
	background-color:rgba(26,34,42,1.00);

}

#aboutus-text h5{
	font-weight:400;
	
}

#aboutus-text p{
	text-align:justify;
	
	}

.aboutus-section-img{
	border-radius: 10px;
}

/*----------Contact us-------------------------*/

.form-group label {
      color: #fff;
    }
    .form-control {
      background-color: #343a40;
      color: #fff;
      border-color: #343a40;
    }
    .form-control:focus {
      background-color: #343a40;
      color: #fff;
      border-color: #5e72e4;
      box-shadow: none;
    }
    .btn-primary {
      background-color: #5e72e4;
      border-color: #5e72e4;
    }
    .btn-primary:hover {
      background-color: #324cdd;
      border-color: #324cdd;
    }

.map iframe{
	border-radius: 15px;
}

/*----------Services Page css start-------------------------*/
#services-section1{
	font-weight:300;
	background-color:#212529;
	text-align: justify;
/*	background:url("../assests/drone-technology-expert_banner.jpg");
	background-attachment: fixed;
	background-position:  center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 20% 0%*/
}


#services-section2{
	font-weight:300;
	background-color:#343a40;
	text-align: justify;
}

#services-section3{
	font-weight:300;
	background-color:#212529;
	text-align: justify;
}

#services-section4{
	font-weight:300;
	background-color:#343a40;
	text-align: justify;
}

.services_img{
	border-radius: 10px;
	transition: 0.3s;
}
.services_img:hover{
	transform: scale(1.05);
	
}

.animate__bounceInRight{
	-webkit-animation-delay:0.2s;
	-webkit-transition-duration:1s;
}


.animate__bounceInLeft{
	-webkit-transition-duration: 1s;
	-webkit-animation-delay:0.2s;
}
.know-more a{
	font-weight: 400;
	background-color: black;
	color: white;
	text-decoration: none;
	}
.know-more a:hover, .know-more a:focus, .know-more a:active {
	font-weight: 400;
	background-color: white;
	color: black;
	-webkit-transition: 0.5s;
	transform: scale(1.1, 1.1);
	
		
}



/*----------Services Page css end-------------------------*/

/*-------------Contact us css start--------------*/


#form-bg{
	background-image:url("../../assets/form_bg.png");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5% 0%;
}

.contact{
	width:100% !important;
	
}
.contact-form{
	width:50%;
	background-color:none;

}

.form-style{
	margin:auto;
	width: 90%;
	
}

.input-style{
	width: 100%;
	border:none;
	background-color:transparent;
	border-bottom:1px solid white;
	padding:5px 0px;
	transition-timing-function:ease-in-out;
	transform:scale(1,1);
}

.input-style:focus {
  outline:none;
  transition-duration:0.3s;
  border-bottom:2px solid white;
  border-bottom-width:100%;
  transform:skew(1,1);
	color: white;
 
}


.btn-submit {
	margin-top:20px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  font-size:18px;
  font-weight:500;
  background-color:black;
  position: relative;
  padding:10px 40px;
  color:white;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border:2px solid black;
}
.btn-submit:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-submit:hover, .btn-submit:focus, .btn-submit:active {
  color: black;
}
.btn-submit:hover:before, .btn-submit:focus:before, .btn-submit:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}


.modal-content{
	width:50% !important;
	margin:auto;
	top:10%;
}

.modal-body img{
	margin-top:50px;
}

.modal-body h5{
	-webkit-animation-delay:0.5s;
	-webkit-transition-duration:0.5s;
	margin-top:20px;

	}

.modal-body h6{
	-webkit-animation-delay:1s;
	-webkit-transition-duration:1s;
	margin-top:25px;
}

p{
	margin: 0px;
	padding: 0px;
}
.box1{
	width: 95%;
	background-color: rgba(0,0,0,0.60);
	border-radius: 25px;
	color:#D9D9D9;
	padding: 20px 10px;
	text-align: center;
	margin-top: 25px;
}
.text-small{
	font-size: 14px;
}

/*------------contact us end---------------------------------*/

/*------------------------Anti Drone page css start---------------------------------------------------*/

.anti-drone-bg{
	background-color:#343a40;
}

.anti-drone-bg1{
	background-color:#212529;
}





/*---------------------------------Anti Drone page css end ---------------------------------------------*/




