body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    height: 12vh;
    background-color: rgb(27, 27, 27);
    display: flex;
    position: fixed;  
    width: 100%;
    justify-content: space-between;
    align-items: center; /* Align items vertically */
    padding: 1rem calc((90vw - 1000px) /  2);
    z-index: 999999;
    opacity: 0.9;
}

.logo {
    display: flex;
    width: 60%;
    align-items: center;
}

.logo img {
    width: 15rem;
}
nav .logo .rights  {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: rgb(252, 252, 85);
  align-items: center;
  align-self: center;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 80%; /* Adjusted for better spacing */
    list-style-type: none;
    transition: transform 0.3s ease-in-out;
    padding-top: 1.5rem;
}
.nav-links li{
    position: relative;
    justify-content: space-around;
    display: flex;
    align-content: center;
    height: 1rem;
    width: 100%;

}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 300;
    font-style: normal;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: absolute;
    transition: color 0.3s ease;
    text-align: center;
}

/*hover*/
.nav-links .links {
    position: relative;
    display: inline-block;
}


.nav-links .links a::after {
    content: "";
    position: absolute;
    background: linear-gradient(to right, #0059ff, #7bdffe); /* Gradient background */
    height: 3px;
    width: 0;
    bottom: -5px;
    left: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 3px;
}
.nav-links .links a.active {
  position: relative;
  display: inline-block;  
  color:  #7bdffe;
  bottom: -5px;
}

.nav-links .links a.active::after {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #0059ff, #7bdffe); /* Gradient background */
  height: 3px;
  width: 100%; /* Change this to 100% to span the entire link */
  bottom: -5px;
  left: 0;
  transition: all 0.4s ease-in-out;
  border-radius: 3px;
}

.nav-links .links a:hover::after {
    width: 100%;
}

.nav-links .links a:hover {
    color:  #7bdffe;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nav-links .links a::after {
    background-size: 200% 200%;
    animation: gradient-animation 3s ease infinite;
}
/*hover-----------------------xxxxxxxxx------------------*/

/*contact button*/
ul .cont a{
    display:none;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background: linear-gradient(to right, #0059ff, #7bdffe); /* Gradient background */
    color: white; /* Text color */
    padding: 12px 30px; /* Padding inside the anchor */
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none; /* Remove default underline */
    border-radius: 4px; /* Rounded corners */
    transition: width 0.3s ease, background-color 0.3s ease; /* Smooth transition for width and background color */
    width: 200px; /* Initial width */
}
.contact {
    text-align: center;
    display: block;
}

.contact a {
    display: inline-block;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background: linear-gradient(to right, #0059ff, #7bdffe); /* Gradient background */
    color: white; /* Text color */
    padding: 12px 30px; /* Padding inside the anchor */
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-decoration: none; /* Remove default underline */
    border-radius: 4px; /* Rounded corners */
    transition: width 0.3s ease, background-color 0.3s ease; /* Smooth transition for width and background color */
    width: 200px; /* Initial width */
}

.contact a:hover {
    background: linear-gradient(to right, #0059ff, #7bdffe); /* Gradient background */
}


/*contact button ---------------xxxxxxxxxx---------------*/

.burger {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
    z-index: 10; /* Ensure it is above the nav */
}

.burger div {
    width: 2rem;
    height: 0.25rem;
    background-color: white;
    margin: 0.3rem 0; /* Adjust margin for better spacing */
    transition: all 0.3s ease; /* Smooth transition */
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    nav {
        padding: 0rem 1rem;
    }
    .nav-links{
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgb(27, 27, 27);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-102%);
        transition: transform 0.1s ease-in-out;
        z-index: 999999;
        margin-left: 0px;
        padding-left: 0px;
    }

    .nav-links.active {
        transform: translateY(-1%); /* Slide down when active */
    }

    .nav-links .links{
       display: flex;
       justify-content: center;
       flex-direction: column;
       margin-top:5rem ;
       align-items: center;
       margin-left: 0px;
       padding-left: 0px;
    }

    .burger {
        display: flex; /* Show the burger */
        z-index: 999999;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-9px, 9px); /* Rotate and position the first line */
        border-radius: 5px;
        background-color: rgb(240, 107, 107);
    }

    .burger.toggle .line2 {
        opacity: 0; /* Hide the second line */
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-9px, -9px); /* Rotate and position the third line */
        border-radius: 5px;
        background-color: rgb(240, 107, 107);

    }
    ul .cont a{
        text-align: center;
        display: block;
        margin-top: 4rem;
    }
    .contact {
        display: none;
    }
}
/*banner*/
section{
    background-color: rgb(51, 51, 51);
    font-family: "Montserrat Alternates", sans-serif;

}
.banner h1 {
  font-size: 2.5rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.13em solid orange; /* Adjust the color as needed */
  width: 0;
  animation: typing 4s steps(40, end) forwards, blink-caret 0.75s step-end 7;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: orange; /* Adjust the color as needed */ }
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner h1 {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  opacity: 0.7;
  padding: 0px 10px;
}
.banner p {
  color: rgb(0, 35, 75);

}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.content {
  z-index: 1;
}

.banner a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #50b9ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
  z-index: 1111111;
}

.banner a:hover {
  background: #47c5ff;
}

@media (max-width: 768px) {
  .content h1 {
      font-size: 1.5rem;
  }

  .content p {
      font-size: 1rem;
  }

  .button {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
  }
}
/*whywechooseus*/
.why-choose-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120vh;
  padding: 20px;
  box-sizing: border-box;
  padding:1rem calc((90vw - 1000px) / 2);
  background-color: #fefefe;
}

.why-choose-us .content {
  flex: 1;
  padding-right: 20px;
  text-align: justify;
}

.why-choose-us .image-container {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.why-choose-us .image-container img {
   width: 90%;
   height: 60%;
  float: right;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
 .why-choose-us {
      flex-direction: column;
      align-items: center;
      height: auto; 
      padding: 0rem  1rem;  
  }

  .why-choose-us .content {
      padding-right: 0;
      text-align: center;
      margin-bottom: 20px;
  }

  .why-choose-us .image-container {
      max-width: 100%;
      text-align: center;
  }

  .why-choose-us .image-container img {
      float: none;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
      padding: 10px;
  }

  .why-choose-us .content {
      font-size: 14px;
  }

  .why-choose-us .image-container img {
      width: 100%;
      height: auto;
  }
}
  /*projects*/
  
.featured-image-block-grid-header {
    margin-left: auto;
    margin-right: auto;
  }
  .featured-image-block {   
    margin-bottom: 20px;
    font-family: "Montserrat Alternates", sans-serif;
  }
  
  .featured-image-block .featured-image-block-title {
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1em;
    color: #404040;
  }
  
  .featured-image-block a:hover p {
    color: #1779ba;
  }
  .wedo{    
    font-family: "Montserrat Alternates", sans-serif;
    padding: 3rem;

  }
  /*testimonial*/

.featured-testimonials-section {
  background-color: rgb(51, 51, 51);
  padding: 2rem 1rem;
  color: rgb(218, 218, 218);
  font-family: "Montserrat Alternates", sans-serif;

}

.featured-testimonials-section .featured-testimonials-container .orbit-previous {
  color: #0a0a0a;
  left: -1rem;
}

.featured-testimonials-section .featured-testimonials-container .orbit-next {
  color: #0a0a0a;
  right: -1rem;
}

.featured-testimonials-section .testimonial {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 1rem;
}

.featured-testimonials-section .profile-pic {
  max-width: 100px;
  border-radius: 50%;
}

.featured-testimonials-section .featured-testimonials-quotation {
  margin-left: 3rem;
  margin-bottom: 0rem;
  padding: 1rem;
  position: relative;
}

.featured-testimonials-section .featured-testimonials-quotation::before {
  content: "“";
  font-size: 5rem;
  color: #d6d6d6;
  position: absolute;
  top: -2.5rem;
  left: -1.5rem;
}

.featured-testimonials-section .featured-testimonials-quotation::after {
  content: "”";
  font-size: 5rem;
  color: #d6d6d6;
  position: absolute;
  bottom: -4rem;
  right: -.5rem;
}

@media screen and (max-width: 39.9375em) {
  .featured-testimonials-section .featured-testimonials-quotation {
    margin-left: 0;
  }
}
/*protect*/

.hero-section {
    background: url("https://static.pexels.com/photos/248064/pexels-photo-248064.jpeg") 50% no-repeat;
    background-size: cover;
    height: 60vh;
    font-family: "Montserrat Alternates", sans-serif;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .hero-section .hero-section-text {
    color: #fefefe;
    text-shadow: 1px 1px 2px #0a0a0a;
    font-family: "Montserrat Alternates", sans-serif;

  }
  

  .hero-section {
    background: url("https://static.pexels.com/photos/248064/pexels-photo-248064.jpeg") 50% no-repeat;
    background-size: cover;
    height: 60vh;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .hero-section .hero-section-text {
    color: #fefefe;
    text-shadow: 1px 1px 2px #0a0a0a;
  }
  

  .hero-section {
    background: url("https://static.pexels.com/photos/248064/pexels-photo-248064.jpeg") 50% no-repeat;
    background-size: cover;
    height: 60vh;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .hero-section .hero-section-text {
    color: #fefefe;
    text-shadow: 1px 1px 2px #0a0a0a;
  }
  

  .hero-section {
    background: url("https://static.pexels.com/photos/248064/pexels-photo-248064.jpeg") 50% no-repeat;
    background-size: cover;
    height: 60vh;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .hero-section .hero-section-text {
    color: #fefefe;
    text-shadow: 1px 1px 2px #0a0a0a;
  }
  

  .hero-section {
    background: url("./assets/images/protect.png") 50% no-repeat;
    background-size: cover;
    height: 60vh;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .hero-section .hero-section-text {
    color: #fefefe;
    text-shadow: 1px 1px 2px #0a0a0a;
  }
  s

  .hero-section {
    background-size: cover;
    height: 60vh;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .hero-section .hero-section-text {
    color: #fefefe;
    text-shadow: 1px 1px 2px #0a0a0a;
  }
  .hero-section .hero-section-text  a {
    border-radius: 5rem;
    padding: 1rem 3rem;
    border: 1px solid white;
  }
  /*Contact*/
.contact-us-section h1 {
  font-family: "Montserrat Alternates", sans-serif;

}
.contact-us-section {
  padding: 2rem;
  background-color: rgb(51, 51, 51);
  color: white;
  font-family: "Montserrat Alternates", sans-serif;
}

.contact-us-section .contact-us-section-left {
  padding-right: 2rem;
  border-bottom: 2px solid #e6e6e6;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

@media print, screen and (min-width: 40em) {
  .contact-us-section .contact-us-section-left {
    border-right: 1px solid #e6e6e6;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.contact-us-section .contact-us-section-right {
  padding-left: 2rem;
}

@media print, screen and (min-width: 40em) {
  .contact-us-section .contact-us-section-right {
    border-left: 1px solid #e6e6e6;
  }
}

.contact-us-section .contact-us-header {
  margin-bottom: 2rem;
}

@media screen and (min-width: 40em) and (max-width: 74.9375em) {
  .contact-us-section .contact-us-header {
    font-size: 32px;
  }
}

.contact-us-section .responsive-embed {
  margin-bottom: 0;
  padding-bottom: 55%;
}

.contact-us-form input[type=text],
.contact-us-form input[type=email],
.contact-us-form textarea {
  margin-bottom: 1.5rem;
}

.contact-us-form-actions {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-us-form-actions input[type=submit] {
  border-radius: 5000px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.contact-us-form-actions .contact-us-file-button {
  background: transparent;
  color: #8a8a8a;
}

.contact-us-list {
  list-style-type: none;
  margin: 0;
}

.contact-us-list li a {
  color: #0a0a0a;
}

.contact-us-list li::before {
  margin-right: 2rem;
  font-size: 2rem;
  vertical-align: middle;
  color: #8a8a8a;
  font-family: 'FontAwesome';
}

.contact-us-list .address::before {
  content: '\f041';
  margin-left: 0.4rem;
  margin-right: 2.3rem;
}

.contact-us-list .email::before {
  content: '\f003';
}

.contact-us-list .phone::before {
  content: '\f098';
}
/*about us*/

.responsive-blog-footer {
  background: #4a4a4a;
  padding: 3rem 3rem;
  color: white;
}

@media screen and (max-width: 39.9375em) {
  .responsive-blog-footer h4 {
    font-size: 1.5rem;
  }
}

.responsive-blog-footer p {
  color: #8a8a8a;
}

.responsive-blog-footer .mailing-list {
  margin-bottom: 1.5rem;
}

.responsive-blog-footer .mailing-container {
  margin-bottom: 2rem;
}

.responsive-blog-footer .about-section, .responsive-blog-footer .tag-section {
  margin-bottom: 2rem;
}

.responsive-blog-footer .about-section a, .responsive-blog-footer .tag-section a {
  color: #1779ba;
}

.responsive-blog-footer .subscribe-button {
  background-color: #1779ba;
}

.responsive-blog-footer .subscribe-button:hover {
  background-color: #146aa3;
  transition: color 0.3s ease-in;
}

.responsive-blog-footer .fa-chevron-circle-up {
  font-size: 3rem;
  color: #8a8a8a;
}

.responsive-blog-footer .fa-chevron-circle-up:hover {
  color: #b0b0b0;
  transition: color 0.3s ease-in;
}

/*ourteam*/ 

.ourteam {
  height: 45vh;
  display: flex;
  justify-content:center;
  flex-direction: column;
  padding:2rem calc((90vw - 1000px) / 2);   
  font-family: "Montserrat Alternates", sans-serif;

}
.ourteam h1 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: bold;
}
.ourteam-wrapper{ 
  display: flex;
  flex-direction:row;
  justify-content:space-between;

}
.ourteam .left{
  width: 40%;

}
.ourteam .left h3{
  font-family: "Montserrat Alternates", sans-serif;
}

.ourteam .right{
  width:40%;
}

@media screen and (max-width: 720px) {
  .ourteam {
    height:50vh;
  }
  .ourteam h1 {
    text-align: center; 
  }

  .ourteam-wrapper  {
    flex-direction:column;
    margin: 0rem 1rem;
  }
  .ourteam .left{
    width: 100%;
    padding-bottom: 2rem;
  }
  
  .ourteam .right{
    width:100%;
  }
  
} 

/*staff*/
.staff {
  display: flex;
  padding:2rem calc((90vw - 1000px) / 2);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: row;
  width: 100%;
  margin: 20px auto;
  padding-top: 5rem;
}

.image {
  position: relative;
  margin: 10px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 23rem;
}

.image h5 {
  margin:1rem;  
  text-align: center;
  font-family: "Montserrat Alternates", sans-serif;
}

.image img {
  display: block;
  width: 100%;
  height: 42vh;
  border-radius: 8px; 
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
  z-index: 11111;
}

.image:hover .overlay {
  opacity: 1;
}

.text {
  padding: 20px;
}

.text h3 {
  margin: 0;
  font-size: 1.5rem;
}

.text button {
  background-color: #4c8baf;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  font-size: 1rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Montserrat Alternates", sans-serif;
}

.text button:hover {
  background-color: #186fa1;
}

@media screen and (max-width: 720px) {
  
.image img {
  height:60vh;
}
} 







            



  
  
  
  
