/* General Styles */
*{
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}


header {
  height: 60px;
  width: 100%;
  background-color: #003366;
  color: white;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;  
}


nav {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo{
  height:55px;
  width: 65px;
  background-image: url(img/logo1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  margin-left: 20px;
  border-radius: 10%;

}
.links{
  height: 100%;
  width: 70%;
  display: flex;
  align-items: center;
  font-size: 20px;
  justify-content: flex-end;
  margin-right: 25px;


}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: lightblue;
}

.menua{
  display: none;
}

a{
  text-decoration: none;
  color: #fff;
}



.hero {
  padding: 0;
  width: 100%;
  height: 125vh;
  overflow: hidden;
}
.hero{
  background-color: #003366;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  
}

.hero-text h1 {
  font-size: 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 1000;
  color: #1B1212;
  animation-name: slideleft1;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

.para {
  color: black;
  animation-name: slideleft;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  font-size: 30px;
  
}
.para p{
  font-weight: 700;
}

@keyframes slideleft {
  from {
    transform: translateY(500px);
    scale: 0;
    opacity: 0;
  }
  to{
    scale: 1;
    opacity: 1;
    
  }
}
@keyframes slideleft1 {
  from {
    transform: translateY(500px);
    scale: 0;
    opacity: 0;
  }
  to{
    scale: 1;
    opacity: 1;
    
  }
}



/* foundercss */


.mission-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #dcdcdc;
  gap: 20px;
}

.mission-content {
  flex: 1;
  color: #003366;
}

.mission-content h1 {
  font-size: 24px;
  margin-bottom: 15px;
}

.mission-content p {
  font-size: 16px;
  margin-bottom: 10px;
}

.name {
  font-size: 18px;
  font-weight: bold;
  margin-left: 220px;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-section {
      flex-direction: column;
      text-align: center;
  }


}


/* founder cssends*/

/*photo*/


.technology-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #666666;
}

.image-content {
  flex: 1;
  text-align: center;
  padding-right: 20px;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

.text-content {
  flex: 1;
  color: #ffffff;
  padding-left: 20px;
}

.text-content h2 {
  color: #003366;
  font-size: 24px;
  margin-bottom: 10px;
}

.text-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.text-content h1 {
  color: #000000;
  font-size: 40px;
  margin-bottom: 10px;
}

.text-content ul {
  list-style-type: none;
  padding: 0;
}

.text-content li {
  font-size: 18px;
  color: #fdd835;
  margin-bottom: 10px;
}
/*photoends*/


/* Test Section */
.test-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  background-color: #f4f4f4;
}

.description {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  color: #003366;
  margin-bottom: 40px;
}


.description img {
  width: 150%; /* Side by side on larger screens */
  max-width: 400px;
  height: auto;
  margin: 10px;
}


.description h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.media-content {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}




.media-content img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Data Section */
.data-section {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  color: #003366;
  background-color: #e6e6e6;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.data-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.data-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.data-content img {
  width: 30%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .media-content {
      flex-direction: column;
      align-items: center;
  }

  .media-content img,
  .media-content video {
      width: 100%;
  }

  .data-content {
      flex-direction: column;
      align-items: center;
  }

  .data-content img {
      width: 90%;
  }
}

/*field ends*/

/*team members*/
.additional {
  background-color: #ffffff;
  padding: 50px 20px;
}

.team-section {
  text-align: center;
}

.team-section h2 {
  color: #003366;
  font-size: 32px;
  margin-bottom: 30px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.team-member {
  background-color: #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 20px;
  text-align: center;
  flex: 0 0 30%;
  max-width: 30%;
  box-sizing: border-box;

}

.team-member img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
  border-color: #003366;
}

.member-info h3 {
  color: #003366;
  font-size: 22px;
  margin-bottom: 10px;
}

.member-info p {
  color: #333;
  font-size: 16px;
  margin: 0;
}

footer p{
  text-align: center;
  color: #fff;
  background-color: #003366;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .hero{
    height: 90vh;
  }
  .hero video{
    opacity: 0.6;
  }
  .hero-text h1 {
    line-height: 80px;
    margin-bottom: 30px;
  }
  nav ul li a {
    flex-direction: column;
    display: none;
  }

  nav ul.active {
    display: flex;
  }
  
.menua{
  display: flex;
}


  .name{
    margin-left: 3px;
  }

  .mission-section {
    text-align: center;
    padding: 20px;
  }

  .description {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .description img {
    width: 90%; /* Full width on mobile */
    max-width: none;
  }
  .text {
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .text h1 {
    font-size: 20px;
  }

  .text p {
    font-size: 14px;
  }

  .technology-section {
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

.text-content {
    padding-left: 0;
}

.text-content h2 {
    font-size: 22px;
}

.text-content p, .text-content li {
    font-size: 16px;
}

.text-content h1 {
    font-size: 36px;
}


.data-content .fieldgraph {
  width: 90%;
}

.data-content .fieldimg {
  width: 100px;
}

.description h2, .data-section h3 {
  text-align: left;
  text-align: center;
}
.read-more{

background-color: #003366;
color: pink;
}

.team-member {
  flex: 0 0 100%;
  max-width: 100%;
}

.team-section h2 {
  font-size: 28px;
}

.member-info h3 {
  font-size: 20px;
}

.member-info p {
  font-size: 14px;
}
}
