/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;700&display=swap');

/* General Styles */
body {
  margin: 0.5%;
  padding: 0.8%;
  font-family: 'Exo 2';
  background: linear-gradient(45deg, #232323, #1e1e1e);
  

  
}


body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/other/texture.png'); /* Replace with the path to your texture image  */
    background-repeat: round;
    background-blend-mode: overlay;
    opacity: 0.05; /* Adjust the opacity as needed  */
    z-index: -5;
  } 
  
  









.background-element {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/other/backgroundImage.png') ; /* Replace with the path to your background image */
   
    background-size: 100%; /* Adjust the percentage to scale the image size */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; /* Adjust the streng of picture if you can see text */

    animation: color-change 10s infinite alternate; /* Adjust the animation duration as needed */

    


    z-index: -4;
  }

  
  

  
  

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 0.26%;
  
  width: 100%;
}

.sticky-header {
    position: fixed;
    left: 0;
   
    top: 0;
    width: 100%;
    z-index: 999;

    justify-content: space-between; /* Adjust the value as needed */
    align-items: center;

    /* Additional styling for your header */
    background-color: transparent;
    transition: background-color 0.3s ease;

  }
  
  .sticky-header.scrolled {
    /* Background color when scrolled */
    background-color: #FDFDFD;
  }
  .sticky-header.scrolled .menu-item {
    color: #000000;
  }
  .sticky-header.scrolled .menu-item::after {
    background-color: #000000;
  }
  


.logo {
  display: block;
  max-width: 100%;
  height: auto;
  padding-top: 5px;

  padding-left: 1.5%;
}

.menu {
  
    position: relative;
    z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-grow: 1; */
}

.menu li {
  list-style: none;
  padding: 5px;
}

.menu ul {
display: flex;
justify-content: center;

}

.menu-item {
  
  margin-left: 5px; /* Adjust the spacing as needed */
  margin-right: 60px; /* Adjust the spacing as needed */
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 19px;
  font-weight: 510;
  padding-bottom: 5px;
  transition: color 0.3s ease;
  left: 10px;

}

.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00d1b2;
  transition: width 0.3s ease;
}

.menu-item:hover {
   
    color: #00d1b2;
  }


.menu-item:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  padding-right: 20px;
  position: relative;
}


.dropdown-menu {
  display: none;
  position:absolute;

  top: 100%;
  right: 0;

  overflow:visible;
  background-color: linear-gradient(to bottom, #a8a8a8, #dfdfdf);
  
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 16px;
  z-index: 14;
  
}

.menu-item-drop {
  flex: 1;
  text-decoration: none;
  color: #648a90;
  position: relative;
  font-size: 19px;
  font-weight: 350;
  padding-bottom: 5px;
  transition: color 0.3s ease;
  
}

.menu-item-drop::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00d1b2;
  transition: width 0.3s ease;
}

.menu-item-drop:hover {
   
    color: #00d1b2;
  }


.menu-item-drop:hover::after {
  width: 100%;
}

.menu-button:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: left;
}




  
  
  
/* Section Styles */
.section {
    position: relative;
    z-index: 1;
    flex:1;
  display: flex;
  align-items: center;
  padding: 6.5%;
  background: transparent;
}
.section2 {
  position: relative;
  z-index: 1;
  flex:1;
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 40px;
background: transparent;
}

.section3 {
  position: relative;
  z-index: 1;
  flex:1;
display: flex;
align-items: center;
padding: 1.5%;
background: transparent;
}


.section-features-text {
  align-items: center;
  padding: 0px;
  background: transparent;
}


.section-features {
    display: flex;
    max-width: 100%;
    align-items: center;
   position: relative;
    padding-left: 20px;
    padding-right: 20px;
  background: transparent;
  }

.section-text {
  flex: 1;
  margin-right: 20px;
  
}

.section-heading1 {
  font-size: 54px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  max-width: 300px;
}
.section-heading1-underlined {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  max-width: 300px;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}


.section-heading2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
  }

.section-paragraph {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  max-width: 550px;
 
 
}


.box {
    flex: 1;
    flex-direction: column;
    
    /* background-color: #222754; */
    display: flex;
    
    justify-content: center;
    align-items: left;
    transition: transform 0.3s ease;
    border-radius: 10px; 
    margin: 0px;
    box-sizing: border-box;
    position: relative;
  }
  
  .box:hover {
    transform: translateY(-25px); /* Adjust the amount of jump as needed */
  }
  

  .section-paragraph-box {
    
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    background-color: #222754;
    border-radius: 10px;
    max-width: 550px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
   
    position: relative;
  }


.try-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #00d1b2;
  color: #FFF;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  z-index: 5;
}

.try-button:hover {
  background-color: #491dd8;
}

.section-image {
  flex: 1;
   /* Adjust the width as needed */
  height: auto;
  position:relative;
  z-index: 4;
  padding-top: 15px;
}

.new_list{

  margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    border-radius: 10px;
    max-width: 550px;
    
    
    

}
.new_list li{

  padding: 10px;
    
    

}


/* Contact Section Styles */
.contact-section {
   
  padding: 20px;
  background-color: transparent;
  color: #fff;
}

.contact-form {
  max-width: 25%;
  margin: 0 auto;
}


  



.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #e2e2e2;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  height: 100px;
}

.form-group button {
  padding: 10px 20px;
  background-color: #00d1b2;
  
  color: #FFF;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
/* Footer Styles */
footer {
    background: transparent;
    color: #fff;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .footer-content {
    display: flex;
    max-width: 20%;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
    
    
  }
  
  .footer-section {
    flex: 1;
    
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .footer-section p {
    font-size: 14px;
    margin-bottom: 5px;
   min-width: 200px;
  }
  
  .social-media {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .social-media li {
    display: inline-block;
    margin-right: 10px;
  }
  
  .social-media a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
  }
  
  .social-media a:hover {
    color: #bbb;
  }
  
  .footer-bottom {
    margin-top: 20px;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 12px;
    margin: 0;
    color: #fff;
  }
  
  
  @keyframes color-change {
    0% {
      filter: hue-rotate(0deg);
    }
    100% {
      filter: hue-rotate(360deg);
    }
  }

  @media (max-width: 1500px) {
    
    .background-element {
      
      background-image: url('/images/other/backgroundImage2.png') ; /* Replace with the path to your background image */
      
      
      background-position: right;
    }
      
    }
  
    @media (max-width: 1355px) {
    
      .background-element {
        
        background-image: url('/images/other/backgroundImage2.png') ; /* Replace with the path to your background image */
        
        
        background-position: right;
      }
        
      }

      @media (max-width: 1346px) {
    
        .background-element {
          
          background-image: url('/images/other/smallhead1.png') ; /* Replace with the path to your background image */
          
          
          background-position: right;
        }
          
        }




  @media (max-width: 1240px) {
  .contact-form {
    max-width: 60%;
    
  }
}
 
  @media (max-width: 1040px) {

    .background-element {
          
      background-image: url('/images/other/smallhead4.png') ; /* Replace with the path to your background image */
      
      
      background-position: right;
    }

    

    .menu ul {
      display: none;  
    }
    
    .menu-button {
      display: block; 
    }

    .section-features {
      display: block;
      
    }

    .section2 {
      
    padding-bottom: 20px;
    
    }

    .section-image{
      padding-top: 10px;
      
    }


  .section {
    display: block;
    padding-bottom: 0px;
    padding-top: 0px;
    padding-left: 100px;
    }

  .section-text{
    padding-top: 30px;
  }

  .new_list{

    
      font-size: 16px;

  }
  }

  @media (max-width: 850px) {

    .background-element {
          
      background-image: url('/images/other/smallhead3.png') ; /* Replace with the path to your background image */
      opacity: 0.3;
      
      background-position: right;
    }
  }



  @media (max-width: 582px) {
    
    .background-element {
      
      background-image: url('/images/other/smallhead2.png') ; /* Replace with the path to your background image */
      
      opacity: 0.2;
      background-position: right;
    }
      
    }




  
  @media (max-width: 620px) {

    .section {
      display: block;
      padding: 20px;
      padding-bottom: 75px;

      }

  .section-paragraph-box{
    padding-bottom: 30px;
  }


  .section-heading1 {
    font-size: 36px;
   
  }

  .section-heading1-underlined {
    font-size: 32px;
    text-decoration-thickness: 1px;
    padding-bottom: 30px;
  }

  .section-heading2 {
      font-size: 28px;
      
    }
  
  .section-paragraph {
    
    font-size: 16px;
    
   
  }

  .section-paragraph-box{
    font-size: 16px;
  }

  .section-heading1{
    padding-top: 30px;
  }

  .contact-form {
    max-width: 80%;
    
  }

 
  }
  
  