body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    width: 100%;
    background-color: #3333333f;
    padding: 10px 0;
}
  
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 50px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo img {
    position: relative;
    height: 90px; /* Navbar height */
    width: 90px; /* Width of the logo container */
    overflow: hidden; /* Hide the overflowing part of the logo */
    right: 1.5rem
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgb(106, 106, 228);
    /* background-color: #575757; */
    border-radius: 5px;
}


@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #3E1E68;
    overflow: hidden;
    z-index: -1;
}

#bg-vdo {
    position: fixed;
    height: fit-content;
    width: fit-content;
    filter: saturate(0%) brightness(50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.about-us-container {
    /* position: absolute; */
    /* display: flex; */
    max-width: max(70%,100%);
    padding: 20px;
    left: 5%;
    right: 5%;
    text-align: left;
}

.section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 40px;
}


.section.reverse {
    flex-direction: row-reverse;
}

.text1 {
    flex: 1;
    padding: 20px;
    margin-left: 50px;
    margin-right: 50px;
}

.text1 h2 {
    font-size: 50px;
    color: #dadada;
    margin-bottom: 10px;
}

.text1 p {
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.6;
    color: #cccccc;
}

  
.text2 {
    text-align: right;
    flex: 1;
    padding: 20px;
    margin-right: 50px;
}

.text2 h2 {
    font:  "Fira Sans", sans-serif;
    font-size: 50px;
    color: #dadada;
    margin-bottom: 10px;
}

.text2 p {
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.6;
    color: #cccccc;
}

.image {
    flex: 1;
    padding: 20px;
    margin: 30px;
}

.image img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }
    
    .section.reverse {
        flex-direction: column;
    }
    
    .text, .image {
        padding: 10px;
    }
}

footer {
  width: 100%;
  background-color: #25252585;
  color: #fff;
  /* padding: 20px; */
  text-align: center;
  /* position: relative; */
  font-family: 'Outfit'
}

.footer-container {
  position: relative;
  bottom: 0;
  width: 100%;
  margin: 0;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  backdrop-filter: blur(10px);
  padding-bottom: 20px;
}

.footer-links {
  padding-top: 18px;
  flex-basis: 30%;
}


.footer-links h2 {
  font-size: 130%;
}

.footer-social {
  flex-basis: 20%;
  margin-top: 40px;
}

.footer-social h2 {
  font-size: 130%;
}


.footer-copyright {
  flex-basis: 50%;
  text-align: center;
  margin-top: 30px;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.footer-links li,
.footer-social li {
  margin-right: 20px;
  margin-top: 20px;
}

.footer-links a,
.footer-social a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #ccc;
}

.fab {
  font-size: 24px;
  margin-right: 10px;
}

.footer-copyright p {
  font-size: 14px;
  margin-bottom: 0;
}

.team {
    flex: 1;
    padding: 20px;
    margin: 30px;
}

.team img{
        width: 100%;
        height: auto;
        border-radius: 9px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}