@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-size: 16px;
}

html {
    background-color: black;
    color: var(--MainC);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    scroll-behavior: smooth;
}

/* selector color for site */
::selection {
    background-color: red;
    color: #000;
  }

/* root colour */
:root {
    --bgc: black;
    --MainC: white;
    --MainGrad: linear-gradient(to right, red,green,blue);
    --transition: all 0.3s linear;

}

a, button {
    cursor: pointer;
    text-decoration: none;
    color: red;
}

h2 {
    text-align: center;
    font-size: 4em;
    margin-top: 10%;
    margin-bottom: 100px;
    padding: 20px;
    justify-content: center;
    background-image: linear-gradient(90deg, transparent,red,green,blue,transparent);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

/* ---------------------------------------------------------------------------------- */

/* Navbar */

.main-nav{
    background-color: transparent;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
    z-index: 3;
}

/* Customize the nav logo */
.nav-logo{
    width: 300px;
    height: auto;
    float: left;
    margin: 6px auto auto auto;
}

.nav-icon {
    display: none;
}

/* Add a black background color to the top navigation */
.topNav {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    overflow: hidden;
    z-index: 3;
    width: 150px;
    right: 0;
    position: absolute;
}



/* Style the links inside the navigation bar */
.topNav a {
    float: right;
    color: #fff;
    text-align: right;
    /* padding: 14px 10px; */
    padding-top: 10px;
    padding-bottom: 7px;
    padding-left: 0;
    padding-right: 10px;
    text-decoration: none;
    font-size: 1.7em;
    font-weight: thin;
    position: relative;
    right: 0;
    top: 0;

}

.fa-house {
    font-size: 1em;
}

  
/* Change the color of links on hover */
/*  */
.topNav a:hover {
    color: #c3c3c3;
    background-image: linear-gradient(to left, transparent, red);
    border-radius: 50px;
}
.fa-bars {
    font-size: 2rem;
}  
  
/* Hide the link that should open and close the topnav on small screens */

.nav-toggle {
    display: none;
    background-color: transparent;
    width: 50px;
    height: 5px;
    border-radius: 50px;
    border: 0;
    font-size: 3em;
}
 
@media screen and (min-width: 360px) and (max-width: 1366px) {
    .topNav {
        height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .topNav-show {
        height: 15rem;
        margin-top: 100px;
        margin-right: 20px
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        margin-top: 30px;
        margin-right: 30px;
        color: #C3c3c3;     
    }

    .fa-bars {
        font-size: 3rem;
    } 
    
    .nav-toggle:hover {
        color: red;
        /* background-color: #171717; */
        
    }
    
    .nav-toggle:focus {
        color: red;
    }
      
    .topNav a {
        font-size: 2.2em;
        text-align: right;
        margin-right: 10px;
    }



    .nav-logo {
        display: none;
    }

    .nav-icon {
        display: block;
        position: absolute;
        width: 180px;
        top: 0%;
        left: 0%;
    }
}


/* ---------------------------------------------------------------------------------- */

/* Hero */

.hero {
    padding: 0px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to right,#171717, transparent, gray);
    width: 100%;
}

.hero-header {
    position: absolute;
    z-index: 2;
    padding: 50px;
    
}

.video-bg {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    z-index: -1;
    filter: blur(2px);
}

.hero-text-h1,
.hero-text-h2 {
    text-align: center;
    color: #dfdfdf;
} 

.hero-text-h1 {
    font-size: 4em;
    text-decoration: none;
    text-shadow: 2px 2px blue, -2px -2px red, 5px 0px 2px rgb(2, 216, 2);
}

.hero-text-h2 {
    font-size: 1.5em;
}

/* ---------------------------------About us----------------------------------- */

.about-text {
    padding: 15vh 0;
}

.about-text p {
    text-align: center;
    font-size: 2em;
    line-height: 2.5em;
    font-weight: light;
    margin-bottom: 50px;
    hyphens: none;
}

.about-text p strong {
    background-image: linear-gradient(90deg,red,green,blue);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
    text-align: center;
    font-size: 1.3em;
    line-height: 5em;
    font-weight: light;
    margin-bottom: 10px;    
}

.about-text article {
    max-width: 1526px;
    margin: auto;
}

#contact {
    text-align: center;
    font-size: 2em;
    line-height: 1em;
    width: 100vw;
    background-color: transparent;
    border: none;
    margin: 50px auto;
}

#contact a {
    text-decoration: none;
    color: #c3c3c3;
    font-size: 1em;
    border: solid red 2px;
    padding: 20px 30px;
    border-radius: 50px;
       
}

#contact:hover a {
    text-decoration: none;
    color: #c3c3c3;
    font-size: 1.1em;
    background-image: linear-gradient(90deg,transparent,blue);
    padding: 15px 30px;
    border-radius: 50px;
    transition: 250ms ease-in-out;
    border: none;
}

@media screen and (min-width: 360px) and (max-width: 1366px) 
{
    .about-text h2 {
        padding-top: 0;
        margin-top: 0;
    }

    .about-text {
        padding-top: 18vh;
        padding-bottom: 18vh;
    }
    
    .about-text article {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 50px;
    }

    .about-text p {
        font-size: 1em;
        line-height: 3em;
        margin-bottom: 10px;
        
    }
    .about-text p strong {
        font-size: 2em;
        line-height: 2em;
    }

    .contact {
        padding-top: 10px;
        margin-bottom: 150px;
    }
}








/* ---------------------------OUR SERVICES------------------------------- */


/*  */
.bgi {
  max-width: 1920px;
  height: 700px;
  padding-top: 0;
  padding-bottom: 0;
  margin: 50px auto;
  position: relative;
  vertical-align: middle;
  justify-content: center;
}

/*  */
.bgi-1 {
  background-image: url(/assets/images/service-1.webp);
  background-size: cover;
  background-position: center;
  background-position-x: auto ;
  background-repeat: no-repeat;
  

}

/*  */
.bgi-2 {
  background-image: url(/assets/images/service-2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: center; 
  
}


/*  */
.bgi-3 {
  background-image: url(/assets/images/service-3.webp);
  background-size: cover;
  background-position: center;
  background-position-x: center;
}

/*  */
.text-bg {
  position: absolute;
  background-color: black;
  color: white;
  height: auto;
  max-width: 500px;
  width: 80%;
  top: 15%;
  left: 10%;
  padding: 50px;
  margin: 10% auto;
}


/*  */
.text-bg h3 {
 font-size: 1.5em;
 position: relative;
}

/*  */
.text-bg::before {
  content: ""; 
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0px;
  top: 0px;
}

/*  */
.box-1::before {
  background-color: red;
}

/*  */
 .box-2::before {
  background-color: green;
}

/*  */
 .box-3::before {
  background-color: blue;
}

/* -----------------------END SERVICES---------------------------- */

/* -----------------------CONTACT FORM---------------------------- */

.contact-form {
  display: flex;              /* establish flex container */
  flex-direction: column;     /* stack flex items vertically */
  justify-content: center;    /* center items vertically, in this case */
  align-items: center;        /* center items horizontally, in this case */
}

.contact {
  padding-top: 30px;
  padding-bottom: 10px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.contact>input{
  width: 100%;
}

input[type="text"], input[type="email"], textarea {
  border: none;
  background-color: #000;
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: #fff solid 1px;
  width: auto;
  min-width: 500px;
}

@media screen and (min-width: 360px) and (max-width: 1366px){
  input[type="text"], input[type="email"], textarea {
    min-width: 300px
  }  
}

label {
  font-size: 1.5rem;
  padding-bottom: 30px;
}

input[type="file"] {
  background-color: transparent;
  color: #fff;
  /* border: red 5px solid; */
  border-radius: 10px;
  padding: 20px 20px;
  margin-top: 40px;
  margin-bottom: 70px;
  justify-content: center;
  align-items: center;
  margin-left: 100px;
}

input[type="submit"] {
  background-image: linear-gradient(to right, black, red );
  border: #000;
  color: #fff;  
  border-radius: 20px;
  margin: 50px auto;
  padding: 10px 30px;
  width: 200px;
  background-color: transparent;
  border-bottom: none;
}

input[type="submit"]:hover {
  cursor: pointer;
  background-image: linear-gradient(to right, black,blue);
  color: white;
  border-bottom: red;
  
}

/* ---------------------CONTACT FORM END-------------------------- */


/* ---------------------------------------------------------------------------------- */

/* footer */

.footer {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    gap: 20px;
    margin-top: 10vh;
    border-top: #707070 solid 0.25px;
}

.contactInfo {
    text-align: center;
    line-height: 2em;
    margin-top: 5vh;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: left;
    text-align: left;
    gap: 10px;
    margin: 5vh 0;    
}


.footer-cw {
    font-size: 0.5rem;
    color: #383838;
    margin: 10vh 0;
}
