
*{
    box-sizing: border-box;
}

div .animate{
    transition:1s;
    filter: blur(3px);
}

div.show-animate .animate{
    filter: blur(0);
}

html,body{
    margin: 0px;
    padding: 0px;
    overflow-y: auto;
    /* background-color: wh; */
}


.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}     

#navbar {
  overflow: hidden;
  padding: 30px 20px; 
  transition: 0.4s;
  position: sticky; 
  width: 100%;
  top: 0;
  z-index: 99;
  background-color: whitesmoke;
  border-bottom: 1px solid black;
}

.header-link{
    display: flex;
    padding: 0px;
}

.logo{
    height: 100px;
}

.company-name{
    display: flex;
    align-items: center; 
    font-size:1.7rem;
    font-family:  Arial, Helvetica, sans-serif;
}

/* Style the navbar links */
#navbar a, .user {
    float: left;
    color: black;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
    font-family:  Arial, Helvetica, sans-serif;
}

/* Links on mouse-over */
#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#navbar a:active {
  background-color: rgb(21, 20, 20);
  color: white;
}

/* Style the active/current link */
#navbar a.active {
  background-color: rgb(29, 9, 91);
  color: white;
}

/* Display some links to the right */
#navbar-right {
  float: right;
  height: 100px;
  display: flex;
  align-items: center;
}


.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* styling for index page */
.intro{
    height: 0px; 
    width: 100%;
    transition: 3s;
    background-color: rgb(29, 9, 91);
    padding-left:10px;
    overflow: hidden;
    word-spacing: 1px;
    letter-spacing: 2px;
    line-height: 25px;
}

.intro-scroll{
    height:150px;
}

.intro-heading-text{
    color: white;
    margin:10px;
    font-weight: 600;
    font-family:Arial, Helvetica, sans-serif;
}

.intro-text{
    font-family:Arial, Helvetica, sans-serif;
    margin-left:10px;
    color: white;
    height:120px;
    font-size:17px;
}

.slide-cont{
    border: 1px solid black;
    border-radius: 10px;
    height: 400px;
    margin:10px 1px;
    position: relative;
    display: flex;
    align-items: center;
}

.inner-slide{
    border-radius: 8px;
    opacity: 0.9;
    background-color:black;
    color: white;
    height: 80%;
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-text{
    padding: 10px;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;

}
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin: -22px 5px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 5px;
    background-color: rgb(29, 9, 91);

    /* user-select: none; */
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    /* border-radius: 3px 0 0 3px; */
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }

.mission-container{
    text-align: center;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    margin: 30px auto;
    width: 60%;
    border-radius: 10px;
    background-color: #898989;
}

.sec-3 .animate{
    transform: scale(.7);
}

.sec-3.show-animate .animate{
    transform: scale(1);
}

.statement{
  color: rgb(25, 2, 94);
  margin: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 8px; 
  word-spacing: 1px;
  line-height: 25px;
  letter-spacing: 2px;
  font-weight: 600;

}

.serv-offer{
    margin-top: 3rem;
    padding: 10px;
    text-align: center;
    font-size:1.1rem;
    font-family:Arial, Helvetica, sans-serif;
    color: black;
    letter-spacing: 3px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;

}

.sec-4.animate{
    transform: translateX(-100%);
    transition:1s;
}

.sec-4.show-animate.animate{
    transform: translateX(0%);
}


/* styling for services */
.div-div-inner-box{
    background-color: #37ad1077;
    border-radius: 10px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    text-align: center;
    height: auto;
}

.serv-cont{
    height:auto;
    border-radius: 10px;
}

.sec-5.animate{
    transform: scale(.7);
}

.sec-5.show-animate .animate{
    transform: scale(1);
}

.sec-6.animate{
    transform: scale(.8);
}

.sec-6.show-animate .animate{
    transform: scale(1);
}

.sec-7.animate{
    transform: scale(.9);
}

.sec-7.show-animate .animate{
    transform: scale(1);
}

.serv-media{
    height:400px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.serv-media::after{
    content: '';
    display: block;
    height: 400px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    position: absolute;
    top: 0; 
    left: 0;
    z-index: 1;
    transition: 0.8s;
}

.serv-desc{
    height:auto;
    background-color: #ffffff;
    color: black;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    word-spacing: 1px;
    letter-spacing: 1px;
    line-height: 22px;
    text-overflow: ellipsis; 
}

.serv-img{
    border-top-left-radius : 7px;
    border-top-right-radius : 7px;
}

.serv-name{
    position: absolute;
    text-decoration: none;
    color:rgb(255, 255, 255);
    border-radius: 7px;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    font-size:90%;
    font-family: sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-stretch: 50;
    z-index: 2;
}

video{
    width: 100%;
    height: 100%;
    display: none;
}

.serv-media:hover::after{
    width: 0px;
    transition: 0.8s;
}

.serv-media:hover{
    .serv-img{
       display: none;
   }
    
    video{
        display: block;
        width: 100%;
        height: 100%;   
    }

    .serv-name{
        display: none;
    }
}

/*.sec-20.show-animate .animate{*/
/*    .serv-img{*/
/*       display: none;*/
/*   }*/
    
    video{
        display: block;
        width: 100%;
        height: 100%;   
    }

    .serv-name{
        display: none;
    }
}

.learn-btn-more{
    margin:2px;
    cursor:pointer;
    background-color: rgb(29, 9, 91);
    color:white;
    padding: 5px;
    font-size: 0.9rem;
    border-radius: 5px;
}

.about{
    text-align: center;
    background-color: whitesmoke;
    margin: 10rem auto;
    padding: 14px;
    color: black;
    border-radius: 10px;
    font-size: 25px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.sec-10.animate{
    transform: scale(.8);
    transition: 0.7s;
}

.sec-10.show-animate.animate{
    transform: scale(1)
}

.about-text{
    font-size:1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    margin-top:10px;
    padding:8px;
    color: black;
    line-height: 27px;
}

.quote{
    padding: 7px;
    background-color: #898989;
    border-radius: 10px;
    margin:4rem 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    text-align: center;
}

.quote-body{
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    border-radius: 5px;
    color: rgb(25, 2, 94);
    line-height: 1.3;
    height: 250px;
    padding: 15px;
    border-radius: 10px;
}

.sec-9.quote .quote-body{
    transform: translateX(-200%);
    transition-delay: calc(.1s * var(--i));
}

.sec-9.show-animate .quote-body{
    transform: translateX(0);
}

.tech{
    margin: 50px 15px;
    border-radius: 10px;
    background-color: #898989;
    margin:4rem 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.tech-section{
    height:500px;
    padding: 20px;
}

.sec-11.animate{
    transform: translateX(-100%);
}

.sec-11.show-animate{
    transform: translateX(0);
}

.sec-12.animate{
    transform: translateX(100%);
}

.sec-12.show-animate{
    transform: translateX(0);
}

.tech-body{
    height: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:Arial, Helvetica, sans-serif;
}

.tech-body img{
    border-radius: 10px;
}

.modal{
    position: absolute;
    color:black;
    border-radius: 7px;
    background-color: rgb(211, 211, 21);
    padding: 25px;
    font-size:100%;
    z-index: 2;
    border-radius:10px;
    opacity: 0.8;
    width: 60%;
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    word-spacing: 5px;
    letter-spacing: 2px;
    line-height: 25px;
}

.clients{
    color: white;
    margin:40px auto;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    padding: 10px 10px;
    background-color: #898989;
    letter-spacing: 1px;
}

.slideshow-cont{
    /* border: 2px solid red; */
    height: 150px;
    display: flex;
    align-items: center;
}

.slide-content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 100px;
    border-radius: 5px;
}

.slide-content img{
    object-fit: contain;
    width:100%
}


.measures{
    margin: 20px 10px;
    border-radius: 5px;
    background-color: rgb(25, 2, 94)    ;
    padding: 10px;
    text-align: center;
    display: inline-block   ;
}

.measures a{
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    font-family:Arial, Helvetica, sans-serif;
    letter-spacing: 1px; 
}


li{
    margin: 20px;
    font-size: 120%;
}


/* styling for footer starts here */
footer{
    height:auto;
    border-top: 0.5px solid black;
    border-radius: 10px;
    background-color: whitesmoke;
}

.footer-company-name{
    font-size:1.4rem;
    text-align:center;
    padding:30px;
    font-family:Arial, Helvetica, sans-serif;
}

.footer-company-info{
    height: auto;
    margin:auto;
    padding: 10px;
    font-size: 1.25rem;
    text-align: center;
}

.footer-company-info a{
    color: black;
    text-decoration: none;
    font-family:Arial, Helvetica, sans-serif;
}

.footer-company-info a:hover{
    font-size: 20px;
    color: black;
}

.enq{
    display:block;
    font-size: 1.3rem;
    font-family:Arial, Helvetica, sans-serif;
    padding: 5px;
    letter-spacing: 0.5px;
}

.contact{
    text-align: center;
    padding: 30px;
    font-family:Arial, Helvetica, sans-serif;
}

.contact-info{
    font-family:Arial, Helvetica, sans-serif;
    font-size: 1rem;
    margin: 5px;
    padding: 5px;
    letter-spacing:2px;
}

.contact-info a{
    text-decoration: none;
    color:black;
    font-family:Arial, Helvetica, sans-serif;
}

.contact-info a:hover{
    font-size: 0.9rem;
    color: blue;
}

/* styling for about page starts here */
.content-head{
    text-align: center;
    font-size: 1.5rem;
    margin: 30px 0px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}


.company-content{
    margin:0px;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height:30px;
}

h2[target=second]{
    text-transform: uppercase;
    font-size: 1.1rem;
    padding-left: 10px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    margin-top: 20px;
}


/* styling for form */
.overlay-modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
    padding-top: 50px;
    transition: 2s;
}

form{
    border-radius: 10px;
    width: 50%;
    height: 90%;
    margin: auto;
    padding: 10px;
    overflow: auto;
    background-color: #ccc9c9;
    color: #d9d9d9;
}

form h2{
    color: black;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
}


.icon{
    color: rgb(29, 9, 91);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    float: right;
    font-size: 25px;
    margin-bottom: 10px;
    cursor: pointer;
}


label{
    color: black;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    
}

  input, select{
    padding: 17px;
    width: 100%;
    border-radius: 10px;
  }
  
  input:focus{
      font-family: 'Roboto', sans-serif;
      font-size:15px;
      background-color: black;
      color: white;
  }

  select:focus{
    background-color: rgb(29, 28, 28);
    color: white;
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
  }

  button{
    margin: auto;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    background-color: rgb(29, 9, 91);
    color: white;
    border: none;
    padding: 10px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
}


.input{
    width: 90%;
    margin: 15px auto;
}


textarea{
    border: 2px solid black;
    width: 100%;
    border-radius: 10px;
    color: black;
    background-color: #d6c9c9;
    height: 200px;
    padding: 10px;
  }

  textarea:focus{
    background-color: black;
    font-size: 20px;
    color: white;
  }

.btn{
    text-align: center;
}

::-webkit-scrollbar{
    display: none;
}

/* STYLING FOR POP UP ALERT MESSAGE */
.pop-up{
    width: 40%;
    padding: 7px;
    height: 30px;
    color: rgb(0, 255, 0);
    position: fixed;
    top: 10px;
    right: 30%;
    z-index:4;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 10px;
    background-color: #0b5b0bbd;
    text-align: center;
    transition: 2s;
    display: none;
}

.error-pop-up{
    background-color: #8a0404f8;
    color: #ff0505;
}

/* Add responsiveness - on screens less than 580px wide, display the navbar vertically instead of horizontally */
@media screen and (max-width: 600px) {
    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;} 

    .header-link{
        display: block;
    }

    .logo{
        margin:5px auto;
    }
    
    .company-name{
        font-size: 1.3rem;
    }
    
    #navbar-right{
        float: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .intro-text{
        height: auto;
        font-size: 0.9rem;
    }

    .intro-scroll{
        height: 220px;
    }

    .slide-cont{
        height: 300px;
    }

    .inner-slide{
        width: 75%;
    }

    .slide-text{
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .mission-container{
        margin: 40px 10px;
        width: auto;
        height: auto;
        padding: 8px;
        font-size: 25px;
    }

    .statement{
        font-size: 13px;
        padding: 5px;
        letter-spacing: 1px;
        line-height: 28px;
        word-spacing: 0.5px;
    }

    .serv-offer, .company-content{
        font-size: 1rem;
    }

    .services-box{
        padding: 10px;
    }

    .div-div-inner-box{
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        height: auto;
    }

    .serv-media{
        height: 250px;
    }

    .serv-media::after{
        height: 250px;
    }
    
    .about{
        margin: 5rem 10px;
        width: 95%;
    }

    .about-text{
        font-size: 1.1rem;
    }

    .quote{
        height: auto;
    }

    .tech{
        height: auto;
    }

    .tech-section{
        height: 400px;
        padding: 10px;
    }

    .modal{
        font-size: 0.9rem;
        height: auto;
    }

    .measures{
        display: block;
    }

    .measures a{
        font-size: 0.8rem;
    }

    .footer-company-name{
        font-size: 1.2rem;
    }

    .footer-company-info{
        font-size: 1.1rem;
        padding: 10px;
    }

    .enq{
        font-size: 1.2rem;
    }
    
    .contact-info{
        font-size: 0.92rem;
        line-height: 20px;
    }

    /* Media query for service pages */
    .content-head{
        margin: 10px;
        font-size: 1.2rem;
    }

    form{
        width: 90%;
    }
}

@media only screen and (min-width: 600px) {
   
    .div-div-inner-box{
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        margin: 1rem 50px;
    }

    form{
        width: 60%;
    }
}