/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat/static/Montserrat-Regular.ttf');
}
@font-face {
  font-family: 'Montserrat2';
  src: url('Montserrat/static/Montserrat-Light.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.intro {
  position: fixed;
  z-index: 100000;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  transition: 1s;
}

.logo-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.logointro{
  position: relative;
  display: inline-block;
  bottom: -20px;
  opacity: 0;
  font-size: 700%;
}

.logointro.active {
  bottom: 0;
  opacity: 1;
  transition: ease-in-out 0.5s;
}

.logointro.fade {
  bottom: 150px;
  opacity: 0;
  transition: ease-in-out 0.5s;
}

.main {
  height: 100vh;
  width: 100%;
}
body {
  /* Basic dimensions and centering */
  width: 100%;
  height: 100%;

  /* Dark mode colors and gradient */
  background: #000000; /* Fallback for browsers that don't support gradients */
  background: linear-gradient(
    135deg,
    #000000 25%,
    #040404 25%,
    #040404 50%,
    #000000 50%,
    #000000 75%,
    #040404 75%,
    #040404
  );
  background-size: 40px 40px;

  /* Animation */
  animation: move 4s linear infinite;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10;
}

.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}

.image-data span.text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
  margin-left: 10%;
  margin-right: 10%;
}

a.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  color: #333;
  background: #fff;
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s ease;
}

a.button:hover {
  background-color: #333;
  color: #fff;
  font-size: 120%;
}

.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transition: 0.3s;
  background: #fff;
}

.nav-btn:hover {
  background: #ababab;
  height: 55px;
  width: 55px;
}

.swiper-button-next {
  right: 50px;
}

.swiper-button-prev {
  left: 50px;
}

.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: #000000;
}

.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #ff5e00;
  visibility: visible;
}

.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #009dff;
}

@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }

  .swiper-pagination-bullet {
    visibility: visible;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 100px 5px 100px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 100;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}
.header:hover::before {
  left: 100%;
}
.logo {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
  margin-top: 10px;
  transition: 0.3s;
}
.navbar a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  margin-left: 35px;
  transition: 0.3s;
}
.logo:hover{
  font-size: 200%;
}
.navbar a:hover {
  font-weight: bolder;
  font-size: 200%;
}
#menu-icon {
  font-size: 36px;
  color: #fff;
  display: none;
}

::-webkit-scrollbar {
  display: none;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

:root {
  --card-height: 15vh;
  --card-width: 100vh;
}

.card {
  margin-top: 10%;
  margin-bottom: 7%;
  width: var(--card-width);
  height: var(--card-height);
  padding: 3px;
  position: relative;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  color: #000000;
  letter-spacing: 1px;
  font-size: 90%;
  z-index: -1;
}

.card h1{
  margin-left: 5%;
  margin-right: 5%;
  font-family: "Montserrat2";
}

.card::before {
  content: "";
  width: 101.15%;
  height: 105%;
  border-radius: 8px;
  background-image: linear-gradient(
    var(--rotate),
    #ff6e1a,
    #ffae00 43%,
    #298bca
  );
    position: absolute;
    z-index: -1;
    top: -2.3%;
    left: -0.5%;
    animation: spin 2.5s linear infinite;
}

.card::after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(1);
  filter: blur(calc(var(--card-height) / 6));
  background-image: linear-gradient(
    var(--rotate),
    #ff6e1a,
    #ffffff 43%,
    #298bca
  );
    opacity: 1;
  transition: opacity .5s;
  animation: spin 2.5s linear infinite;
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}

.blob{
  width: 400px;
  height: 300px;
  background-size: cover;
  background-position: center center;
  margin-right: 9%;
  margin-left: 0%;
  box-shadow: 0 15px 15px 15px rgb(0, 0, 0);
  animation: blobAnim1 5s ease-in-out infinite;
  transition: all 1s ease-in-out;
  float: right;
  margin-bottom: 2%;
}

@keyframes blobAnim1 {
  0%, 100%{
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50%{
      border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

.box {
  position: relative;
  width: 450px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  z-index: 1;
}
 
.box::before {
  content: ' ';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
}
 
.box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50;
  width: 50%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px);
}
 
.box:hover:before,
.box:hover:after {
  transform: skewX(0deg) scaleX(1.3);
}
 
.box:before,
.box:after {
  background: linear-gradient(315deg, #009dff, #ff5e00)
}
 
.box span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}
 
.box span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.1s;
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08)
}
 
.box span::before {
  top: -40px;
  left: 40px;
  width: 50px;
  height: 50px;
  opacity: 1;
}
 
.box span::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.5s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  animation-delay: -1s;
}
 
.box span:after {
  bottom: -40px;
  right: 40px;
  width: 50px;
  height: 50px;
  opacity: 1;
}
.box .content {
  position: relative;
  width: 2000px;
  height: 250px;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1;
  transform: 0.5s;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.box .content h2 {
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1.3px;
  line-height: 25px;
  font-size: 18px;
  font-family: "Montserrat";
}

footer{
  position: relative;
  width: 100%;
  background: #ffffff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 12%;
}
.social_icon, .menu{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}
.social_icon li, .menu li{
  list-style: none;
}
.social_icon li a{
  font-size: 2em;
  color: #333;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social_icon li a:hover{
  transform: translateY(-10px);
}
footer .menu li a{
  font-size: 1.2em;
  color: #333;
  margin: 0 10px;
  display: inline-block;
  text-decoration: none;
  opacity: 0.75;
}
footer .menu li a:hover{
  opacity: 1;
}
footer p{
  color: #333;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
}
footer .wave{
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(WaveNew.png);
  background-size: 1000px 100px;
}
footer .wave#wave1{
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}
@keyframes animateWave{
  0%{
    background-position-x: 1000px;
  }
  100%{
    background-position-x: 0px;
  }
}
footer .wave#wave2{
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animateWave2 4s linear infinite;
}
@keyframes animateWave2{
  0%{
    background-position-x: 0px;
  }
  100%{
    background-position-x: 1000px;
  }
}
footer .wave#wave3{
  z-index: 998;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWave3 3s linear infinite;
}
@keyframes animateWave3{
  0%{
    background-position-x: 1000px;
  }
  100%{
    background-position-x: 0px;
  }
}
footer .wave#wave4{
  z-index: 997;
  opacity: 0.7;
  bottom: 20px;
  animation: animateWave3 3s linear infinite;
}
@keyframes animateWave4{
  0%{
    background-position-x: 1000px;
  }
  100%{
    background-position-x: 0px;
  }
}
.form {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: #171717;
  border-radius: 2.5em;
  padding: 30px;
  width: 50%;
  height: 350px;
}

.form::before {
  content: '';
  background-image: linear-gradient(45deg, #ff5e00, 
  #298bca);
  height: 358px;
  width: 51%;
  position: absolute;
  margin-top: -34px;
  margin-left: px;
  z-index: -1;
  border-radius: 2.7em;
}

.buttonn {
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  background: #fff;
  color: black;
  padding: 0.7em 5.5em;
  display: flex;
  align-items: center;
  border: 2px solid #66da4300;
  border-radius: 5em;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.buttonn:hover {
  border: 2px solid #333;
  background: #00000000;
  color: #fff;
}

.buttonn:active {
  border: 2px solid #b1b1b1;
  background: #b1b1b1;
  color: black;
}

.input {
  width: calc(100% - 10px);
  padding: 8px;
  margin-bottom: 20px;
  border: 1px solid #66da4300;
  border-bottom: 1px solid #ff5900;
  outline: none;
  background-color: transparent;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  transition: 0.2s;
}

.input:focus {
  border: 1px solid #66da4300;
  border-bottom: 1px solid #ff5900;
  background-color: transparent;
  color: white;
}

.input::placeholder {
  color: #9b725b;
}

.textarea {
  font-family: Arial, Helvetica, sans-serif;
  width: calc(100% - 10px);
  padding: 8px;
  height: 100px;
  margin-bottom: 20px;
  border: 1px solid #66da4300;
  border-bottom: 1px solid #ff5900;
  outline: none;
  background-color: transparent;
  color: #ffffff;
  resize: none;

}

.textarea::placeholder {
  color: #9b725b;
}

.textarea:focus {
  border: 1px solid #66da4300;
  border-bottom: 1px solid #ff5900;
  background-color: transparent;
  color: white;
}
 .COntainer {
  display: grid;
  place-items: center;
  margin-inline: 1.5rem;
  padding-block: 5rem;
  margin-bottom: 40%;
}

.card__container {
  display: grid;
  row-gap: 3.5rem;
}

.card__article {
  position: relative;
  overflow: initial;
}

.card__img {
  width: 328px;
  border-radius: 1.5rem;
}

@media screen and (max-width: 340px) {
  .COntainer {
    margin-inline: 1rem;
  }

  .card__data {
    width: 250px;
    padding: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .COntainer {
    height: 100vh;
  }

  .card__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .card__img {
    width: 348px;
  }
  .card__data {
    width: 316px;
    padding-inline: 2.5rem;
  }
}































@media (max-width: 992px) {
  .header {
    padding: 1.25rem 4%;
  }
}
@media (max-width: 768px) {
  .blob{
    margin-left: 10%;
    float: none;
    margin-bottom: 7%;
    width: 80vw;
    margin-top: 10%;
    height: 220px;
  }
  .card{
      width: 60vw;
      height: 100px;
      font-size: 50%;
  }
  .box{
      width: 80%;
      margin-top: 15%;
      margin-bottom: 15%;
  }
  /*.box .content h2{
    letter-spacing: 1.3px;
    line-height: 20px;
    font-size: 12px;
  }*/
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 4%;
    display: none;
  }
  .navbar.active {
    display: block;
  }
  .navbar a {
    display: block;
    margin: 1.5rem 0;
  }
  .navbar a:hover {
    color: #ffffff;
    font-size: 18px;
  }
  .nav-bg {
    position: fixed;
    top: 79px;
    left: 0;
    width: 100%;
    height: 295px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: none;
  }
  .nav-bg.active {
    display: block;
  }
  .careeed {
    width: 75vw;
    height: 250px;
  }
  footer{
    margin-top: 30%;
  }
}

