* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: 'Poppins', sans-serif;
  outline: none;

}



body {
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);


}


.header-section {
  position: sticky;
  top: 10px;
  z-index: 999;
  background: transparent;
}

.header-section .header-main {
  max-width: 1210px;
  height: 60px;
  background: rgba(255, 255, 255, 0.592);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 50px;
  position: relative;
  border-radius: 2px;
}

.header-section .header-main .logo-port {
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.header-section .header-main .logo-port a {
  text-decoration: none;
  color: #fff !important;
  font-size: 24px;
  font-weight: 700;
}

.header-section .header-main .logo-port a span {
  color: #ff4d4d;
}

.header-section .header-main .nav-port {
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-section .header-main .nav-port ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 !important;
  padding: 0 !important;
}

.header-section .header-main .nav-port ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.header-section .header-main .nav-port ul li a:hover {
  color: #ff4d4d;
}

.header-section .header-main .nav-port ul li a.active {
  color: #ff4d4d;
}

.header-section .header-main .nav-port .humbergericon {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.humbergericon i {
  transition: transform 0.3s ease;
}

.humbergericon i.active {
  transform: rotate(90deg);
}

.login-cart {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-cart a .cv-load {
  padding: 8px 25px;
  background: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 999;
  position: relative;
}

.login-cart a {
  text-decoration: none;
  color: #fff;
}

.login-cart a .cv-load:hover {
  background: #ff4d4d;
  transition: all 0.3s ease;
  color: #fff;
}

.login-cart a .small-device-icon {
  display: none;
}

.mobile-menu {
  width: 100%;
  max-height: 0;
  display: none;
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
  ;
  /* display: none; */
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.mobile-menu.active {
  max-height: 500px;
  display: block;
  transition: all 0.7s ease;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 0;
  margin: 0 !important;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  color:#ff4d4d;
}

@media (max-width:901px) {
  .header-section .header-main .nav-port ul {
    gap: 20px;
  }

  .header-section .header-main .nav-port ul li a {
    font-size: 14px;
  }
}

@media (max-width:767px) {
  .header-section .header-main .nav-port ul {
    display: none;
  }

  .header-section .header-main .nav-port .humbergericon {
    display: block;
  }
}

@media (max-width:445px) {
  .login-cart a .cv-load {
    display: none;
  }

  .login-cart {
    gap: 20px;
  }

  .login-cart a .small-device-icon {
    display: block;
  }

}

@media (max-width:390px) {
  .cv-load {
    font-size: 12px !important;
    padding: 7px 15px !important;
  }

  .header-section .header-main .nav-port .humbergericon {
    font-size: 24px;
  }
}

@media (max-width:320px) {
  .header-section .header-main {
    padding: 35px 20px;
  }
}


@keyframes slideDown {

  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}















.banner {

  width: 100%;

  min-height: 90vh;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 40px 6%;

  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);

}





.banner-container {

  max-width: 1200px;

  width: 100%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;

  align-items: center;

}



/* TEXT */

.banner-text {

  color: #fff;

}



.banner-text h1 {

  font-size: 3.2rem;

  line-height: 1.1;

}



.banner-text span {

  color: #ff4d4d;

}



.banner-text p {

  margin: 20px 0;

  opacity: 0.85;

  max-width: 480px;

}



.banner-btns {

  display: flex;

  gap: 15px;

}



.banner-btns a {

  text-decoration: none;

  padding: 14px 30px;

  border-radius: 30px;

  font-size: 16px;

  transition: 0.3s;

}



.btn-primary {

  background: #ff4d4d;

  color: #fff;

}



.btn-primary:hover {

  background: #ff1f1f;

  transform: translateY(-2px);

}



.btn-outline {

  border: 2px solid #fff;

  color: #fff;

}



.btn-outline:hover {

  background: #fff;

  color: #000;

}





.banner-image {

  position: relative;

}



.banner-image img {

  width: 100%;

  max-width: 500px;

  border-radius: 25px;

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);

  animation: float 4s ease-in-out infinite;

}





.banner-image::before {

  content: "";

  position: absolute;

  inset: -20px;

  background: linear-gradient(45deg, #ff4d4d, #00f2ff);

  filter: blur(80px);

  opacity: 0.4;

  z-index: -1;

}





@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

}





@media (max-width: 900px) {

  .banner-container {

    grid-template-columns: 1fr;

    text-align: center;

  }



  .banner-text h1 {

    font-size: 2.4rem;

  }



  .banner-btns {

    justify-content: center;

  }

}