 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

 * {
   margin: 0;
   padding: 0;
 }


 html, body {
    overflow-x: hidden;
    max-width: 100%;
}

 nav {
   display: block;
   position: fixed;
   z-index: 99;
   width: 100%;
   background: #242526;
 }

 nav .wrapper {
   position: relative;
   max-width: 1300px;
   padding: 0px 30px;
   height: 70px;
   line-height: 70px;
   margin: auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }

 .wrapper .logo a {
   color: #f2f2f2;
   font-size: 30px;
   font-weight: 600;
   text-decoration: none;
 }

 .wrapper .nav-links {
   display: inline-flex;
 }

 .nav-links li {
   list-style: none;
 }

 .nav-links li a {
   color: #f2f2f2;
   text-decoration: none;
   font-size: 18px;
   font-weight: 500;
   padding: 9px 15px;
   border-radius: 5px;
   transition: all 0.3s ease;
 }

 .nav-links li a:hover {
   background: #3A3B3C;
 }

 .nav-links .mobile-item {
   display: none;
 }

 .nav-links .drop-menu {
   position: absolute;
   background: #242526;
   width: 180px;
   line-height: 45px;
   top: 85px;
   opacity: 0;
   visibility: hidden;
   box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
 }

 .nav-links li:hover .drop-menu,
 .nav-links li:hover .mega-box {
   transition: all 0.3s ease;
   top: 70px;
   opacity: 1;
   visibility: visible;
 }

 .drop-menu li a {
   width: 100%;
   display: block;
   padding: 0 0 0 15px;
   font-weight: 400;
   border-radius: 0px;
 }

 .mega-box {
   position: absolute;
   left: 0;
   width: 100%;
   padding: 0 30px;
   top: 85px;
   opacity: 0;
   visibility: hidden;
 }

 .mega-box .content {
   background: #242526;
   padding: 25px 20px;
   display: flex;
   width: 100%;
   justify-content: space-between;
   box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
 }

 .mega-box .content .row {
   width: calc(25% - 30px);
   line-height: 45px;
 }

 .content .row img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .content .row header {
   color: #f2f2f2;
   font-size: 20px;
   font-weight: 500;
 }

 .content .row .mega-links {
   margin-left: -40px;
   border-left: 1px solid rgba(255, 255, 255, 0.09);
 }

 .row .mega-links li {
   padding: 0 20px;
 }

 .row .mega-links li a {
   padding: 0px;
   padding: 0 20px;
   color: #d9d9d9;
   font-size: 17px;
   display: block;
 }

 .row .mega-links li a:hover {
   color: #f2f2f2;
 }

 .wrapper .btn {
   color: #fff;
   font-size: 20px;
   cursor: pointer;
   display: none;
 }

 .wrapper .btn.close-btn {
   position: absolute;
   right: 30px;
   top: 10px;
 }

 @media screen and (max-width: 970px) {
   .wrapper .btn {
     display: block;
   }

   .wrapper .nav-links {
     position: fixed;
     height: 100vh;
     width: 100%;
     max-width: 350px;
     top: 0;
     left: -100%;
     background: #242526;
     display: block;
     padding: 50px 10px;
     line-height: 50px;
     overflow-y: auto;
     box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
     transition: all 0.3s ease;
   }

   /* custom scroll bar */
   ::-webkit-scrollbar {
     width: 10px;
   }

   ::-webkit-scrollbar-track {
     background: #242526;
   }

   ::-webkit-scrollbar-thumb {
     background: #3A3B3C;
   }

   #menu-btn:checked ~ .nav-links {
     left: 0%;
   }

   #menu-btn:checked ~ .btn.menu-btn {
     display: none;
   }

   #close-btn:checked ~ .btn.menu-btn {
     display: block;
   }

   .nav-links li {
     margin: 15px 10px;
   }

   .nav-links li a {
     padding: 0 20px;
     display: block;
     font-size: 20px;
   }

   .nav-links .drop-menu {
     position: static;
     opacity: 1;
     top: 65px;
     visibility: visible;
     padding-left: 20px;
     width: 100%;
     max-height: 0px;
     overflow: hidden;
     box-shadow: none;
     transition: all 0.3s ease;
   }

   #showDrop:checked ~ .drop-menu,
   #showMega:checked ~ .mega-box {
     max-height: 100%;
   }

   .nav-links .desktop-item {
     display: none;
   }

   .nav-links .mobile-item {
     display: block;
     color: #f2f2f2;
     font-size: 20px;
     font-weight: 500;
     padding-left: 20px;
     cursor: pointer;
     border-radius: 5px;
     transition: all 0.3s ease;
   }

   .nav-links .mobile-item:hover {
     background: #3A3B3C;
   }

   .drop-menu li {
     margin: 0;
   }

   .drop-menu li a {
     border-radius: 5px;
     font-size: 18px;
   }

   .mega-box {
     position: static;
     top: 65px;
     opacity: 1;
     visibility: visible;
     padding: 0 20px;
     max-height: 0px;
     overflow: hidden;
     transition: all 0.3s ease;
   }

   .mega-box .content {
     box-shadow: none;
     flex-direction: column;
     padding: 20px 20px 0 20px;
   }

   .mega-box .content .row {
     width: 100%;
     margin-bottom: 15px;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
   }

   .mega-box .content .row:nth-child(1),
   .mega-box .content .row:nth-child(2) {
     border-top: 0px;
   }

   .content .row .mega-links {
     border-left: 0px;
     padding-left: 15px;
   }

   .row .mega-links li {
     margin: 0;
   }

   .content .row header {
     font-size: 19px;
   }
 }

 nav input {
   display: none;
 }

 .body-text {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 100%;
   text-align: center;
   padding: 0 30px;
 }

 .body-text div {
   font-size: 45px;
   font-weight: 600;
 }


 #heroSection {

   height: 70vh;
   width: 100%;

   padding-top: 4rem;
   z-index: -1;

 }



 .imageHero {
   width: 100%;
   height: auto;
   padding: 15px;
   /* default for small screens */
 }

 /* For medium screens and above */
 @media (min-width: 768px) {
   .imageHero {
     height: 60%;
   }
 }












 @keyframes move {
   100% {
     transform: translate3d(0, 0, 1px) rotate(360deg);
   }
 }

 .background {
   position: relative;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   background: #000303;
   overflow: hidden;
 }

 .ball {
   position: absolute;
   width: 20vmin;
   height: 20vmin;
   border-radius: 50%;
   backface-visibility: hidden;
   animation: move linear infinite;
 }

 .ball:nth-child(odd) {
   color: #006D5B;
 }

 .ball:nth-child(even) {
   color: #FF6F61;
 }

 .ball:nth-child(even) {
   color: #c81e40;
 }

 .ball:nth-child(even) {
   color: #e9d81e;
 }

 /* Using a custom attribute for variability */
 .ball:nth-child(1) {
   top: 77%;
   left: 88%;
   animation-duration: 40s;
   animation-delay: -3s;
   transform-origin: 16vw -2vh;
   box-shadow: 40vmin 0 5.703076368487546vmin currentColor;
 }

 .ball:nth-child(2) {
   top: 42%;
   left: 2%;
   animation-duration: 53s;
   animation-delay: -29s;
   transform-origin: -19vw 21vh;
   box-shadow: -40vmin 0 5.17594621519026vmin currentColor;
 }

 .ball:nth-child(3) {
   top: 28%;
   left: 18%;
   animation-duration: 49s;
   animation-delay: -8s;
   transform-origin: -22vw 3vh;
   box-shadow: 40vmin 0 5.248179047256236vmin currentColor;
 }

 .ball:nth-child(4) {
   top: 50%;
   left: 79%;
   animation-duration: 26s;
   animation-delay: -21s;
   transform-origin: -17vw -6vh;
   box-shadow: 40vmin 0 5.279749632220298vmin currentColor;
 }

 .ball:nth-child(5) {
   top: 46%;
   left: 15%;
   animation-duration: 36s;
   animation-delay: -40s;
   transform-origin: 4vw 0vh;
   box-shadow: -40vmin 0 5.964309466052033vmin currentColor;
 }

 .ball:nth-child(6) {
   top: 77%;
   left: 16%;
   animation-duration: 31s;
   animation-delay: -10s;
   transform-origin: 18vw 4vh;
   box-shadow: 40vmin 0 5.178483653434181vmin currentColor;
 }

 .ball:nth-child(7) {
   top: 22%;
   left: 17%;
   animation-duration: 55s;
   animation-delay: -6s;
   transform-origin: 1vw -23vh;
   box-shadow: -40vmin 0 5.703026794398318vmin currentColor;
 }

 .ball:nth-child(8) {
   top: 41%;
   left: 47%;
   animation-duration: 43s;
   animation-delay: -28s;
   transform-origin: 25vw -3vh;
   box-shadow: 40vmin 0 5.196265905749415vmin currentColor;
 }



 .floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}







 .headerForAboutUs {
   font-family: "Edu NSW ACT Cursive", cursive;
   font-optical-sizing: auto;
   font-weight: 700;
   font-style: normal;
 }

 .aboutUsBody {
   font-family: "Edu NSW ACT Cursive", cursive;
   font-optical-sizing: auto;
   font-weight: lighter;
   font-style: normal;
 }


 

 /* .wow {
    visibility: visible !important;
    opacity: 0;
}

.wow.animate__animated {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
} */


/* From Uiverse.io by adamgiebl */ 
.cssbuttons-io-button {
  background: #a370f0;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}




/* From Uiverse.io by Creatlydev */ 
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: #000;
}

.button:hover .button__icon-wrapper {
  color: #000;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}




/* From Uiverse.io by Yaya12085 */ 
.form {
  display: flex;
  flex-direction: column;
  background: #606c88;
  background: -webkit-linear-gradient(to right, #3f4c6b, #606c88);
  background: linear-gradient(to right, #3f4c6b, #606c88);
  padding: 20px;
  border-radius: 10px;
  max-width: 350px;
}

.title {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}

.description {
  line-height: 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
  color: rgb(209 213 219);
}

.form div {
  display: flex;
  max-width: 28rem;
  margin-top: 1rem;
  column-gap: 0.5rem;
}

.form div input {
  outline: none;
  line-height: 1.5rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 );
  padding: 0.5rem 0.875rem;
  background-color: rgb(255 255 255 / 0.05);
  border: 1px solid rgba(253, 253, 253, 0.363);
  border-radius: 0.375rem;
  flex: 1 1 auto;
}

.form div input::placeholder {
  color: rgb(216, 212, 212);
}

.form div input:focus {
  border: 1px solid rgb(99 102 241);
}

.form div button {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.625rem 0.875rem;
  background-color: rgb(99 102 241);
  border-radius: 0.375rem;
  border: none;
  outline: none;
}


.glow-input:focus {
  border-color: #0d6efd !important;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.7);
  transition: 0.3s;
}













