@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Doto:wght@100..900&family=Iceland&family=Orbitron:wght@400..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rationale&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  z-index: 1;
}
html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}
body {
  overflow-x: hidden;
}
ul {
  list-style: none;
}
a {
  color: #ffffff;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p:hover {
  cursor: default;
}
:root {
  --bg: #010204;
  --navbar: #e0eef413;
  --font: white;
  --font2: #c9c9c9;
  --highlight: #7db2dd;
  --highlight2: #20425d;
  --highlight3: #123a38;
  --box: #ffffff0d;
  --shadow: var(--box);
  --border: rgb(66, 66, 66);
  --glow: rgba(125, 178, 221, 0.15);
  --glow2: rgba(0, 166, 140, 0.1);
  --card-bg: #0d1117;
  --gradient:
    linear-gradient(
      to bottom,
      var(--bg) 0%,
      rgba(255, 255, 255, 0) 50%,
      var(--bg) 100%
    ),
    url(assets/images/5.jpg);
  --gradient1:
    linear-gradient(
      to bottom,
      /* var(--bg) 0%, */ rgba(255, 255, 255, 0) 0%,
      var(--bg) 70%
    ),
    url(assets/images/3\ copy.jpg);
  --gradient2:
    linear-gradient(
      to bottom,
      var(--bg) 0%,
      rgba(255, 255, 255, 0) 50%,
      var(--bg) 100%
    ),
    url(assets/images/4.jpg);
  --gradient3:
    linear-gradient(
      to bottom,
      var(--bg) 0%,
      rgba(255, 255, 255, 0) 50%,
      var(--bg) 100%
    ),
    url(assets/images/7.gif);

  --red: #c23f52;
  --green: #00a68c;
  /* --logo: rgb(255, 153, 0); */
}
#main {
  /* background: var(--gradient); */
  /* background-size: cover; */
  background-color: var(--bg);
  color: var(--font);
}

/******************************************************   Notification   **********************************************************/
#notif-panel {
  color: var(--font);
  display: none;
  position: fixed;
  top: 65px;
  right: 20px;
  background: var(--navbar);

  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 300px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.notif-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.notif-header h3 {
  font-size: 1rem;
}
.notif-empty {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  text-align: center;
}
.notif-empty p {
  font-size: 1rem;
}
/******************************************************   NAV-BAR   **********************************************************/
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navbar);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
  height: 5rem;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(125, 178, 221, 0.1);
}
.nav-bar1 {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.5rem 0;
}
.nav-bar1 img {
  height: 2.4rem;
}
.nav-bar2 {
  display: flex;
  height: 100%;
  gap: 0.2rem;
}
.nav-el {
  color: var(--font2);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-el:hover {
  color: var(--highlight);
}
.nav-el::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--highlight);
  border-radius: 2px;
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-el:hover::after {
  width: 80%;
}
#hamburger {
  display: none;
  color: var(--font);
}
@media screen and (max-width: 1100px) {
  #hamburger {
    display: inline-block;
    font-size: 2rem;
    margin-right: 20px;
    transition: all 0.5s;
  }
  .nav-bar2 {
    width: 70vw;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-size: large;
    font-weight: bold;
    position: fixed;
    background: rgba(21, 21, 26, 0.859);
  
    backdrop-filter: blur(10px);
    color: var(--font);
    left: 30vw;
    top: -40vh;
    border-radius: 0 0 0 25px;
    transition: all 0.5s;
  }
  #hamburger.active {
    transform: rotate(90deg);
  }
  .nav-bar2.active {
    top: 80px;
  }
}

/******************************************************   Hero   **********************************************************/
#hero {
  background: var(--gradient1);
  background-size: cover;
}
.hero1 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 5rem;
  height: 60vh;
}
.hero1 h1 {
  font-size: 4rem;
}
.hero1 h1 span {
  color: var(--highlight);
  /* text-decoration: underline solid var(--font) 7px; */
  white-space: nowrap;
  text-shadow: 0px 0px 40px var(--highlight);
  transition:
    color 0.3s,
    text-shadow 0.3s;
}
.hero1 h1 span:hover {
  color: var(--font);
}
.hero1 p {
  font-size: 1.2rem;
  color: var(--font2);
}
.hero1 a:hover {
  color: var(--highlight);
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background: linear-gradient(
    135deg,
    var(--highlight2),
    rgba(125, 178, 221, 0.2)
  );
  color: var(--font);
  border: 1px solid rgba(125, 178, 221, 0.4);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.hero-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(125, 178, 221, 0.3),
    rgba(0, 166, 140, 0.2)
  );
  box-shadow: 0 0 30px rgba(125, 178, 221, 0.2);
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .hero1 {
    margin: 0 3rem;
    height: 30vh;
  }
  .hero1 h1 {
    font-size: 2rem;
  }
  .hero1 p {
    font-size: 1rem;
  }
  .hero-btn{
    font-size: 0.8rem;
     padding: 0.5rem 1.5rem;
  }
}

/******************************************************   Hero2   **********************************************************/
.hero2 h2 {
  font-size: 2rem;
  align-self: flex-start;
  margin: 2rem 0rem;
  color: var(--highlight);
}
.hero2 {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  /* height: 100vh; */
  width: 70%;
  margin: 0 15%;
  padding-bottom: 3%;
}
#hero2-list {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  /* height: 20vh; */
  width: 100%;
}
.hero2-el {
  background: var(--card-bg);
  border: 1px solid rgba(125, 178, 221, 0.1);
  border-radius: 16px;
  width: 22%;
  aspect-ratio: 3/2;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 0 20px 5px var(--glow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
/* .hero2-el {
  width: 24%;
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  white-space: nowrap;
  background: var(--gradient2);
  background-size: contain;
} */
.hero2-el:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(125, 178, 221, 0.2);
}
/* .hero2-el:hover {
  cursor: pointer;
} */

.hero2-el:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(125, 178, 221, 0.2);
}
.hero2-el::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--highlight),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.hero2-el:hover::before {
  opacity: 1;
}

.hero2-el h4 {
  font-size: 1.2rem;
}
@media screen and (max-width: 1100px) {
  .hero2 {
    width: 90%;
    margin: 0 3rem;
  }
  #hero2-list {
    height: auto;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero2-el {
    width: calc(50% - 0.5rem);
  }
  .hero2-el h4 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .hero2 {
    width: 90%;
    margin: 0 auto;
  }
  #hero2-list {
    height: auto;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero2-el {
    width: 45%;
    height: auto;
  }
  .hero2-el h4 {
    font-size: 1rem;
  }
  .hero3 h2 {
    font-size: 1.2rem;
    height: auto;
  }
  .hero2 p{
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .hero2 {
    width: 90%;
    margin: 0 auto;
  }
  #hero2-list {
    height: auto;
    gap: 1px;
    flex-wrap: wrap;
  }
  .hero2-el {
    width: 45%;
    height: auto;
    margin-bottom: 10px;
  }
  .hero2-el h4 {
    font-size: 0.8rem;
  }
  .hero2 h2 {
    font-size: 1rem;
    height: auto;
  }
  .hero3 h2 {
    font-size: 0.5rem;
    height: auto;
  }
  .hero2 p{
    font-size: 0.6rem;
  }
}

/******************************************************   Hero3   **********************************************************/
.hero3 h2 {
  font-size: 2rem;
  align-self: flex-start;
  margin: 2rem 0rem;
  text-wrap: nowrap;
  color: var(--highlight);
}
.hero3 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 70%;
  margin: 0 15%;
}
#hero3-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* height: 30vh; */
  width: 100%;
}
.hero3-el {
  border: 1px solid rgba(125, 178, 221, 0.1);
  border-radius: 16px;
  font-size: 1.5rem;
  width: 30%;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: var(--card-bg);
  /* background: var(--gradient3); */
  background-size: contain;
  border-radius: 1rem;
  /* box-shadow: 0px 0px 20px var(--shadow); */
  box-shadow: 0 0 20px 5px var(--glow);
  transition:
    box-shadow,
    transform 0.3s;
}
.hero3-el:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(125, 178, 221, 0.2);
}
.hero3-el {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.hero3-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}
.hero3-list li {
  font-size: 1.2rem;
  /* border-bottom: 1px solid var(--font2); */
  color: var(--font2);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#hero3-list2 li span {
  color: var(--green);
}
#hero3-list3 li span {
  color: var(--red);
}

.hero3-el:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(125, 178, 221, 0.2);
}
.hero3-el::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--highlight),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.hero3-el:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .hero3 {
    width: 90%;
    margin: 0 auto;
  }
  #hero3-list {
    gap: 1rem;
  }
  .hero3-el {
    width: 32%;
    font-size: 1.2rem;
  }
  .hero3-list li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 760px) {
  #hero3-list {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .hero3-el {
    width: 100%;
    aspect-ratio: auto;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 600px) {
  .hero3 h2{
    font-size: 1rem;
  }
}
/******************************************************   list   **********************************************************/
#list {
  /* margin: 2rem 0; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 70%;
  margin: 0 15%;
  margin-bottom: 5rem;
}
#list h2 {
  align-self: flex-start;
  margin: 2rem 0rem;
  font-size: 2rem;
  color: var(--highlight);
}
#list-list {
  width: 70vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#list-el {
  font:
    1.5rem Poppins,
    sans-serif;
  color: var(--font);
  font-size: 1rem;
}
.list-el {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  width: 100%;
  padding-left: 1rem;
  border-top: 0.5px solid rgba(237, 237, 237, 0.198);
  border-radius: 20px;
}
.list-el:hover {
  background-color: var(--card-bg);
  color: var(--highlight);
  cursor: pointer;
}
.list-el i {
  font-size: 1.5rem;
  color: inherit;
}
.list-el h4 {
  width: 20%;
}
.list-el p {
  width: 20%;
  text-align: center;
}
.list-el h4 img {
  height: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.list-el p img {
  height: 3.5rem;
  vertical-align: middle;
}

.list-el:hover {
  transform: translateY(-1px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(125, 178, 221, 0.2);
}
.list-el::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--highlight),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.list-el:hover::before {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  #list {
    width: 100%;
    margin: 0;
  }
  #list-list {
    width: 100%;
    overflow-x: auto;
  }
  .list-el {
    align-self: flex-start;
    width: 200%;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  #list h2{
    font-size: 1rem;
  }
  .list-el {
    align-self: flex-start;
    width: 200%;
    height: 4rem;
  }
  #list-list {
    width: 100%;
  }
}
/******************************************************   FEEDBACK   **********************************************************/
.feedback {
  background: linear-gradient(
    135deg,
    rgba(125, 178, 221, 0.06),
    rgba(0, 166, 140, 0.04)
  );
border-top: 2px solid var(--highlight2);
  padding: 0 7.5%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.feedback h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--font);
}
/* .feedback a {
  color: var(--font2);
  margin-top: 0.3rem;
} */
.feedback button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 2px solid rgba(125, 178, 221, 0.4);
  color: var(--highlight);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.feedback button:hover {
  background: rgba(125, 178, 221, 0.1);
  box-shadow: 0 0 20px rgba(125, 178, 221, 0.2);
}

/******************************************************   FOOTER   **********************************************************/

.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 60vh;
  line-height: 2rem;
  background-color: var(--bg);
  border-top: 2px solid var(--highlight2);
}
.footer1 {
  width: 100%;
  padding-left: 8%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  /* height: 70%; */
}
.footer1 ul {
  width: 20%;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--highlight);
  /* color: #000000; */
  cursor: default;
}
.footer1 ul li {
  font-weight: 200;
  text-decoration: none;
  font-size: 1.2rem;
  color: rgb(185, 185, 185);
  cursor: pointer;
  transition: color 0s;
}
.footer1 ul li:hover {
  color: var(--highlight);
}
.footer2 {
  font-size: 2rem;
  display: flex;
  flex-direction: row;
}
.fa-brands {
  font-size: 3rem;
  color: var(--font);
  transition: color 0.3s;
  cursor: pointer;
}
.fa-brands:hover {
  color: var(--highlight);
}
.footer3 {
  cursor: default;
  color: rgb(121, 121, 121);
}
.footer4 {
  font-size: 1.2rem;
  color: var(--font2);
  transition: color 0.5s;
  z-index: 1000;
  white-space: nowrap;
}
.footer4:hover {
  transition: color 0.5s;
  cursor: pointer;
}
.footer4:hover i {
  color: rgb(255, 0, 0);
  scale: 2;
  text-shadow: 0 0 1rem rgb(255, 0, 0);
}
.footer4 i {
  color: rgb(255, 64, 64);
  transition:
    color 0.5s,
    scale 1s,
    text-shadow 0.5s;
}

@media screen and (max-width: 900px) {
  .footer {
    height: auto;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .footer1 {
    flex-wrap: wrap;
    row-gap: 1.5rem;
    padding: 0 1rem;
  }
  .footer1 ul {
    width: 45%;
  }
}

@media screen and (max-width: 800px) {
  .footer1 {
    padding-left: 3%;
    justify-content: space-between;
  }
  .footer1 ul {
    font-size: 1.1rem;
    width: 35%;
  }
  .footer1 ul li {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .footer1 {
    padding-left: 3%;
    justify-content: space-between;
  }
  .footer1 ul {
    font-size: 1rem;
    width: 22%;
  }
  .footer1 ul li {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 450px) {
  .footer1 {
    padding-left: 3%;
    justify-content: space-between;
  }
  .footer1 ul {
    font-size: 0.7rem;
    width: 22%;
  }
  .footer1 ul li {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 600px) {
  .footer2,
  .footer4,
  .footer3 {
    scale: 0.7;
  }
}
@media screen and (max-width: 400px) {
  .footer2,
  .footer4,
  .footer3 {
    scale: 0.6;
  }
  .footer4 {
    scale: 0.5;
  }
}
