* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: gilroy;
  color: #03624c;
}

html,
body {
  height: 100%;
  width: 100%;
}

*::selection {
  background-color: #fff;
  color: #00df82;
}

body::-webkit-scrollbar {
  display: block;
  width: 8px;
  background: #00df82;
}

body::-webkit-scrollbar-thumb {
  background-color: #fff;

  border-radius: 50px;
}

body {
  overflow-x: hidden;
}

/* top banner */
.top-bar {
  background-color: #03624c;
  color: #fff;
  padding: 5px 20px;
  display: flex;
  font-size: 0.9rem;

}

.iso-certification p {
  margin: 0;
  color: white;
}

.iso-certification img {
  height: 30px;
  /* Adjust the height to fit your design */
  width: auto;
  /* Maintain the aspect ratio */
  margin-right: 10px;
  /* Space between the logo and the separator */
  transition: transform 0.3s ease;
  /* Optional: Smooth hover effect */
}

.iso-certification {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-links {
  margin-left: 60rem;
}

.social-media-links a {
  color: #fff;
  transition: color 0.3s;
  margin-left: 15px;
}


.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.overlay1 h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.overlay1 p {
  font-size: 1.5rem;
  color: #fff;
}


/* navbar */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 100px;
  background: #E3E6F3;
  box-shadow: 0 5px 15px #03624c;
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;

}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  color: #03624c;
}

#navbar li a:hover,
#navbar li a.active {
  color: #00df82;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #00df82;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

/* home page */
.static-image-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure the video covers the entire area */
  z-index: 1;
}

/* Overlay content (text) */
.overlay1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
}

.overlay1 h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Shadow for better readability */
}

.overlay1 p {
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Same shadow effect */
}


/* page2 */
#page2 {
  min-height: 100vh;
  width: 100%;
  z-index: 10;
  color: #000;
}

#about-us {
  height: 40vh;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  padding: 0 50px;
  align-items: center;
  position: relative;
  z-index: 10;
  justify-content: space-around;
}

#about-us img {
  height: 220px;
  width: 220px;
  border-radius: 20px;
  object-fit: cover;
}

#about-us-in {
  width: 50%;
  text-align: center;
}

#about-us-in h3 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #000;
}

#cards-container {
  background-color: #fff;
  height: 61vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  position: relative;
  z-index: 10;
}

.card {
  height: 80%;
  width: 24%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: all ease 0.6s;
}

#card1 {
  background-image: url(Picture3.jpg);
}

#card2 {
  background-image: url(Picture4.jpg);
}

#card3 {
  background-image: url(Picture5.jpg);
}

.overlay {
  height: 100%;
  width: 100%;
  background-color: #00df82;
  padding: 30px;
  padding-top: 160px;
  opacity: 0;
  transition: all ease 0.6s;
}

.overlay h4 {
  color: #000;
  font-size: 40px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 20px;
  font-weight: 800;
}

.overlay p {
  color: #000;
  font-size: 18px;
}

.card:hover .overlay {
  opacity: 1;
}

.card:hover {
  transform: rotate3d(-1, 1, 0, 20deg);
}

/* page3 */
#page3 {
  height: 94vh;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}

#page3>h2 {
  font-size: 45px;
  font-weight: 500;
  width: 60%;
  line-height: 45px;
  text-align: center;
  color: #000;
}

#page3>p {
  font-size: 25px;
  font-weight: 100;
  width: 50%;
  line-height: 35px;
  text-align: center;
  color: #000;
}

#page3 img {
  position: absolute;
  height: 60px;
  color: #00df82;
}

#page3 #colon1 {
  top: 15%;
  left: 5%;
}

#page3 #colon2 {
  right: 5%;
  bottom: 10%;
}

/* founders page */

.founders-section {
  text-align: center;
  padding: 40px 20px;
}

.founders-section h1 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.founders-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.founder {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 60px;
  max-width: 317px;
  text-align: center;
  flex: 1 1 300px;
}

.founder img {
  width: 174px;
  justify-items: center;
  height: 177px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 26px;
}

.founder h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.founder p {
  font-size: 1em;
  color: #666;
}


/* features section  */
.features-header {
  text-align: center;
  margin-bottom: 40px;
}

.features-section {
  padding: 38px 20px 0;
}

.features-header {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.features-card {
  flex-direction: column;
  gap: 10px;
  max-width: 30%;
}

.features-card img {
  margin-left: 1rem;
  width: 111px;
  height: 110px;
  margin-bottom: 20px;
}

.features-card a {
  text-decoration: none;
}

.features-card p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.features-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  gap: 20px;
  margin-top: 20px;
}

.primary-button {
  border: 0.5px solid #323333;
  border-radius: 6px;
  font-weight: 400;
  color: #303539 !important;
  padding: 9px 19px;
  transition: 0.2s ease-out;
}

.primary-button:hover {
  color: #1d69a3;
  box-shadow: 0 0 10px #888;
}

/*  footer */
.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #E3E6F3;
  padding: 32px;
}

.footer-col {
  width: 33%;
  padding: 0 111px;
}

.footer-col h4 {
  font-size: 18px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #00df82;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  text-decoration: none;
  font-weight: 300;
  color: #000;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #000;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}


/* subfooter  */
.subfooter {
  background-color: #00df82;
  padding: 50px;
  height: 100px;
}

.subfooter-container {
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: #ffffff;
}

img {
  display: flex;
  width: 29%;
}

.hover-link {
  transition: 0.2s ease-out;
}



/* responsive for 767px */
@media (max-width:767px) {

  /* main page */
  .overlay1 h1 {
    font-size: 2rem;
  }

  .overlay1 p {
    font-size: 1.2rem;
  }

  /* page2 */
  #about-us {
    flex-direction: column;
    height: auto;
    padding: 2px;
  }

  #about-us img {
    height: 190px;
    width: 320px;
    margin-bottom: 20px;
  }

  #about-us-in h3 {
    font-size: 24px;
    margin: 1rem -6rem;
  }

  #about-us-in p {
    font-size: 18px;
    margin: 2rem -5rem;
  }

  #cards-container {
    flex-direction: column;
    height: 103vh;
    width: 386px;
  }

  .card {
    width: 100%;
  }

  .overlay1 h1 {
    font-size: 2rem;
  }

  .overlay1 p {
    font-size: 1rem;
  }

  /* page3 */
  #page3 {
    margin-top: 7rem;
  }

  #page3 h2 {

    font-size: 32px;
    width: 80%;
  }

  #page3 p {
    font-size: 18px;
    width: 90%;
  }

  #page3 img {
    height: 30px;
  }

  #page3 #colon1 {
    top: 11rem;
    left: -12px;
  }

  #page3 #colon2 {
    bottom: 11rem;
    right: -27px;
  }

  .overlay img {
    width: 18rem;
    height: 18rem;
    margin-left: 3rem;
  }

  /* founders section */
  .founders-container {
    flex-direction: column;
    align-items: center;
  }

  .founder {
    max-width: 100%;
    padding: 15px;
  }

  .founder img {
    width: 120px;
    height: 120px;
  }

  /* Footer */
  .footer-col {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 131px;
    bottom: -6px;
    background-color: #00df82;
    height: 2px;
    box-sizing: border-box;
    width: 56px;
  }

}


/*resposive for 574px */
@media (max-width: 574px) {
  .sectionp1 {
    padding: 20px;
  }

  #header {
    padding: 2px 10px;
  }

  /* main page */
  #page1 h1 {
    font-size: 9vw;
  }

  #page1 p {
    font-size: 4.5vw;
  }

  /* page2 */
  #about-us img {
    height: 239px;
    width: 347px;
    margin-top: 1rem;
  }

  #cards-container {
    gap: 10px;
  }

  .card {
    width: 90%;
    height: 60%;
  }

  /* page3 */
  #page3 h2 {
    font-size: 28px;
  }

  #page3 p {
    font-size: 16px;
  }

  .founder img {
    margin-left: 8rem;
  }

  .founders-section h1 {
    font-size: 1.75em;
  }

  .founder h2 {
    font-size: 1.3em;
  }

  .founder p {
    font-size: 0.9em;
  }

}

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #E3E6F3;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.01);
    padding: 80px 0 0 10px;
    transition: 0.3s;
    gap: 2rem;
  }

  #navbar.active {
    right: 46rem;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }
}