html, body {
  height: 100%;
  margin: 0;
}

body {
  background: url('../images/background2.jpg') no-repeat center center fixed;
  background-size: cover;
}
/* Header and Navigation styles */

header {
  width: 100%;
  height: 0.65vh;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
 }


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 4.33vw;
  background-color: rgb(250, 240, 226); 
  z-index: 1000; 
  height: 11vh;
}



.burger-menu {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.burger-icon {
  max-width: 10vw;
  height: 3.5vh;
}

.navbar-list {
  display: flex;
  align-items: center;  
  flex-grow: 1;
  
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1em;
}

nav ul li {
  display: inline;
  }

  nav ul li a {
 text-decoration: none; 
  color: #0E9E73;
  padding: 1em;
  transition: color 0.3s;
  font-size: 32px;
  transition: font-size 0.2s ease;
}

nav ul li a:hover {
  text-decoration: none; 
  font-size: 40px;
}

nav ul li a:visited {
  text-decoration: none; 
  color: #0b7c58;
}

.logo {
  max-width: 50%;
  height: 100%;
}

.close-menu {
  display: none;
}
/*MOBILE VERSION-HEADER*/
@media (max-width: 768px) {


  .burger-menu {
    display: block;
    position: absolute;
    top: 5vw;
    left: 75vw;
  }

  .navbar{
    left: 0;
    height: 10vh;
  }

  .navbar-list {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999;
  }

  .navbar-list ul {
    flex-direction: column;
    align-items: center;
    margin: 0;
    position: absolute;
    top: 9.38vw;
    left: 15.63vw;
  }

  nav ul li a:hover {
    font-size: 32px;
  }

  .navbarlinks {
    margin: 7vh;
    text-align: center;
    color: #333;
    font-size: 32px;
  }

  .navbar-list.active {
    display: flex;
  }

  .close-menu {
    display: none;
  }

  .navbar-list.active .close-menu {
    display: block;
    align-self: flex-end;
    margin: 1.3vh;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 1vh;
    left: 72vw;
  }

  .close-icon {
    width: 10vw;
    height: 7vw;
  }
  .logo-container {
    display: flex;
    align-items: center;
  }
  nav ul li {
    opacity: 0;
  }

  @keyframes slide-in {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

}
/*MOBILE VERSION - HEADER ENDS*/
/*TABLET VERSION -HEADER*/
@media (min-width: 768px) and (max-width: 1023px) {

header{

}
  .navbar{
    left: 0;
    height: 10vh;
  }

  .logo{
    max-width: 50%;
    height: 75%;
  }

  nav ul li a {
    text-decoration: none; 
     color: #0E9E73;
     padding: 1.3vw;
     font-size: 24px;
   }
}
/*TABLET VERSION -HEADER ENDS*/
/* Header and Navigation styles ENDS */

/*Hero section*/

.hero {
  background-image: url('../images/hero-imagine.png'); 
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 10vh;
  text-align: center;
  color: black;
  padding: 2.6vh;
}

.hero-content {
  max-width: 800px;
  margin: 6vh auto;
  text-align: center; 
  border-radius: 10px;
}

.hero-title {
  
  font-size: 5rem;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.hero-title-accent{
  font-size: 3rem;
}

.hero-subtitle {
  
  font-size: 3rem;
  margin: 2.6vh 0;
}

.hero-subtitle-accent{
  font-size: 2rem;
}

.hero-buttons {
  margin-top: 4.4vh;
  display: flex;
 
  justify-content: center;

}

.hero-button {
  background-color: #28a745; 
  color: black;
  padding: 2.6vh 4.4vw;
  margin: 0 1.3vw;
  border-radius: 0.65vh;
  text-decoration: none;
  font-size: 1.25rem;
  transition: background-color 0.3s;
}

.hero-button:hover {
  background-color: #218838; /
}

/* TABLET VERSION - HERO  */
@media (max-width: 1024px) {
  .hero {
    background-image: url('../images/Hero-pad.png'); 
    margin-top: 9vh;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 65px;
  }
}
/* TABLET VERSION - HERO ENDS*/
/*MOBILE VERSION - HERO*/
@media (max-width: 768px) {
  .hero {
    background-image: url('../images/Hero-mob.png');
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: 9vh;
  }
  .hero-content{
    margin: 2.6vh 5.2vw;

  }

  .hero-title {
    font-size: 3rem;
  }
  .hero-title-accent{
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .hero-subtitle-accent{
    font-size: 1.5rem;
  }

  .hero-buttons{
    display: flex;
    flex-direction: column;
  }

  .hero-button {
    padding: 1.3vh 7.3vw;
    font-size: 2rem;
    margin: 2.3vh;
  }
}
/*MOBILE VERSION -HERO ENDS*/

/*Hero section ENDS*/

/* Video Section STARTS*/
.video-section {
  padding: 2rem;
}

.video-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; /* Ensure responsiveness */
}

.video-container iframe {
  width: 45%;
  height: 450px; /* Adjust height as needed */
  border: none;
  border-radius: 8px; /* Rounded corners for aesthetic */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.video-player {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.video-player video {
  width: 100%;
  height: 100%;
  max-width: 1000px; /* Max width for larger screens */
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

@media (max-width: 768px) {
  .video-container iframe {
    width: 100%;
    height: 200px; /* Adjust height for smaller screens */
  }

  .video-player video {
    width: 100%;
  }
}
/* Video Section ENDS*/

.header-section {
    background-image: url('../images/titul2.png');
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center; /* Center the image */
    height: 1000px; /* Adjust the height as needed */
    width: 100%;

}

/* Footer section */

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 35%;
    margin-top: 10%;
   
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    /* width: 30%; */
}

.icon {
    width: 40px; 
    height: 40px; 
    margin: 0 10px; 
    background-size: cover;
}

.instagram {
    background-image: url('../images/instagram.png'); 
}
.youtube {
    background-image: url('../images/youtube.png'); 
}

.linkedin {
    background-image: url('../images/linkedin.png'); 
}
.gmail {
    background-image: url('../images/gmail.png');
   }

  
.copyright {
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2rem;
  margin-bottom: 10%;
  margin-top: 5%;
  text-align: center;

}

