* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: black;

}

.main {
  display: flex;
  flex-direction: column;
  gap: 100px;
  overflow: hidden;
}

/* nav-bar */
.nav-bar {
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 85vw;
  margin: auto;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
  position: sticky;
  top:10px;
  z-index: 5;
}

/* nav-left */
.nav-left {
  margin-left: 0px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@keyframes moving {
  from {
    transform: translateX(150px);
  }

  to {
    transform: translateX(12px);
  }
}

.nav-left span {
  color: #0b84ff;
  margin-top: 1px;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "poppins", sans-serif;
  opacity: 1;
  animation: appear 2.5s ease-in-out;
}

@keyframes appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.nav-left div {
  animation: moving 1.5s ease-in-out forwards;
  position: relative;
}

.nav-left div img {
  height: 80px;
  object-fit: contain;
}

/* nav-right */
.nav-right {
  object-fit: cover;

}

.options {
  display: none;
}

.inp {
  display: none;
}

.smallscreen-menu label img {
  width: 35px;
  height: 35px;
}

.menutag {
  border: 2px solid white;
  text-decoration: underline;
  padding: 10%;
  font-weight: bold;
  color: white;
  font-family: "poppins";
}

#anchome {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#ancabout {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.menu-card {
  text-align: center;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  position: absolute;
  height: 100;
  width: 200px;
  background-color: black;
  right: 10px;
  border: 2px solid white;
  border-radius: 10px;
}

.men {
  display: none;
}

#menu-radio:checked~.men {
  display: grid;
}

.men {
  text-decoration: none;
}

/* home-section */
.Home {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  background-repeat: no-repeat;
  object-fit: cover;
}
.home-video{
  width:90vw;
  border: 2px solid white;
  border-radius: 10px;
  background-color: black;
}
.home-video video{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* home-area */
.home-heading {
  margin-top: 40px;
  display: flex;
  /* font-size: 25px; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  gap: 50px;
}

.home-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 15%,
      rgba(11, 132, 255, 0.25) 5%,
      rgba(11, 132, 255, 0.4) 20%,
      rgba(0, 0, 0, 0.9) 70%);
  filter: blur(80px);
  z-index: -2;
}

.home-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 15%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: -2;
}

.home-heading-part1 {
  font-size: 3em;
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.heading-span {
  color: #f7f7f7;
  font-family: 'poppins';
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.with-span {
  color: #0b84ff;
  font-weight: bold;
}

.home-button {
  max-height: 70px;
  font-family: "poppins";
  color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6em;
  padding: 15px;
  font-weight: 600;
  background: linear-gradient(90deg, #0b84ff, #0d00ff);
  border: 2px solid white;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease-in;
}

.home-button:hover {
  transform: scale(1.03);
}

.home-heading p {
  margin-top: 10px;
  color: white;
  font-size: 1.7em;
  font-family: "poppins";
}

.Cources {
  text-align: center;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 100px;
}

.course-span {
  font-size: 5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: linear-gradient(to right, #f7f7f7, #00aeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.courses-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px;
}

.course-card {
  padding: 10px;
  min-width: 330px;
  max-width: 400px;
  min-height: 480px;
  max-height: 550px;
  border-radius: 7px;
  background: #1a1a1a;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  transition: transform 0.2s ease-in;
}
.course-card:hover {
  transform: scale(1.03);
}
.course-card-img {
  min-height: 40%;
  max-height: 50%;
}

.course-card-img img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card-title {
  color: #f7f7f7;
  font-weight: bold;
  font-family: "poppins";
  font-size: 2em;
  word-wrap: wrap;

}

.course-card-tags {
  color: #f7f7f7;
  font-family: "poppins";
  display: flex;
  gap: 10px;
}

.course-card-tag {
  border: 1px solid white;
  padding: 6px;
  border-radius: 6px;
  background-color: #161616;
  font-size: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-card-buy-btn {
  cursor: pointer;
  background: linear-gradient(90deg, #0072ff, #4b00e0);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  padding: 12px 16px;
  font-size: 1.1em;
  border: none;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.course-card-buy-btn:hover {
  background: linear-gradient(90deg, #4b00e0, #0072ff);
  box-shadow: 0 4px 20px rgba(0, 114, 255, 0.4);
  transform: translateY(-2px);
}

/* Testimoniels */
.Testimoniels {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.Testimoniels-span {
  font-size: 3.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: linear-gradient(to right, #f7f7f7, #00aeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* tweets */
.twet-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
}

.tweet-card {
  background: #111a28;
  color: #fff;
  border-radius: 16px;
  width: 300px;
  height: 450px;
  padding: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  font-family: "poppins";
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition: transform 0.2s ease-out;
}

.tweet-card:hover {
  transform: scale(1.03);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tweet-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.tweet-header h3 {
  margin: 0;
  font-size: 16px;
}

.tweet-header p {
  margin: 0;
  font-size: 13px;
  color: #8b98a5;
}

.tweet-text {
  font-size: 15px;
  margin: 12px 0;
  line-height: 1.4;
}

.twet-tick {
  width: 14px;
  height: auto;
}

.mention {
  color: #1d9bf0;
}

.twet-username {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tweet-image {
  background: #1c2732;
  border-radius: 12px;
  height: auto;
  margin: 10px 0;
}

.tweet-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tweet-time {
  font-size: 13px;
  color: #8b98a5;
  margin-bottom: 10px;
}

.tweet-actions {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #1c2732;
  padding-top: 10px;
  font-size: 14px;
  color: #8b98a5;
}

.action span {
  margin-right: 4px;
}

.tweet-footer {
  background: #1d9bf0;
  text-align: center;
  color: white;
  border-radius: 10px;
  padding: 6px 0;
  margin-top: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.tweet-footer:hover {
  background: #1788d3;
}

/* about */

.About {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 50px;
}

.about-span {
  font-size: 5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #0b84ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-span2 {
  color: white;
  font-family: "poppins";
  font-weight: bold;
  font-size: 350%;
}

.about-span2 span {
  color: #0b84ff;
  font-family: "poppins";
  font-weight: bold;
  font-size: 100%;
}
/* about card */
.about-card-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5px;
  gap: 20px;
}

.profile-card {
  color: white;
  font-family: "poppins";
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #101218;
  padding: 15px;
  border-radius: 20px;
  height: 650px;
  box-shadow: 0 0 30px rgba(7, 3, 255, 0.2);
  max-width: 430px;
  transition: 0.3s;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(0, 89, 255, 0.4);
}

.profile-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #0b84ff;
  object-fit: cover;
}

.profile-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.profile-info .role {
  color: #0b84ff;
  font-weight: 500;
  margin-bottom: 5px;
}

.profile-info .subrole {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.about-tags span {
  display: inline-block;
  background: #0b84ff;
  color: white;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 0.85rem;
  margin: 3px;
  font-weight: 500;
}

.desc {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  max-width: 480px;
}

.buttons {
  display: flex;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(90deg, #0b84ff, #230bff);
  color: white;
  margin-right: 15px;
}

.btn.secondary {
  background: #1a1b25;
  border: 1px solid #0b84ff;
  color: #0b84ff;
}

.btn:hover {
  opacity: 0.85;
}

/* footer */

.footer {
  background-color: #0d0d0d;
  color: #ccc;
  padding: 25px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(to right, #fdfdfd, #0b84ff) 1;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section {
  flex: 1 1 1 ;
  min-width: 120px;
}

.footer-section span {
  color: #fff;
  margin-bottom: 15px;
  font-size: 45px;
  font-weight: bold;
  color: #0b84ff;
  font-weight: 600;
}


.footer-section p {
  color: #aaa;
  line-height: 1.6;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #a020f0;
}

/* Social Icons */
.socials {
  margin-top: 15px;
}
.socials a {
  height: 30px;
  width: 30px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  object-fit: cover;
  color: #0b84ff;
  
  overflow: hidden;
}
.fab{
  object-fit: cover;
}
.fab img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Links */
.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #0b84ff;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #888;
}


/* media-qures */

@media screen and (min-width:800px) {

  .footer {
    background-color: #0d0d0d;
    color: #ccc;
    padding: 60px 10%;
    border-top: 3px solid transparent;
    border-image: linear-gradient(to right, #fdfdfd, #0b84ff) 1;
    font-family: 'Poppins', sans-serif;
  }

  .footer-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-section {
    flex: 1 1 220px;
    min-width: 220px;
  }
}

@media screen and (min-width:850px) {
  .smallscreen-menu {
    display: none;
  }

  .nav-options {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .nav-options a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #0b84ff;
    transition: width 0.2s;
  }

  .nav-options a:hover::after {
    width: 100%;
  }

  .nav-options a span {
    color: white;
    font-size: 23px;
    font-family: "Karla", sans-serif;
    font-weight: 600;
  }

  .nav-options a {
    text-decoration: none;
    position: relative;
    color: white;
    text-decoration: none;
    padding: 8px 16px;

  }

}
