@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap'); 




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bitcount Single Ink", system-ui;
}
body{

  background-color: #330a4a  ;
  position: relative;
  
overflow-x: hidden;

}

a{
  color:white;
  text-decoration: none;
}
#main {
  height: 100%;
  background: rgb(179, 179, 223);
  
  width: 100%;
  overflow-y: hidden;
}
.bab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 100%;
  position: sticky;
  top: 0;
  padding-right: 180px;
  background: transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  max-width: 1600px;
}
.head {
  

height: 1px;
  font-weight: 600;
  color: #8f6e6e;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
  width: 5px;
}
.head:hover {
  color: #1f0385;
  transform: scale(1.5);
}
ul {
  display: flex;
  position: relative;
  gap: 15px;
}

ul li {
  position: relative;
  list-style: none;
  width: 60px;
  height: 60px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  overflow: hidden;
}

/* gradient background layers */
ul li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--i), var(--j));
  opacity: 0;
  transition: 0.5s;
}

ul li::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--i), var(--j));
  filter: blur(15px);
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}

/* hover expansion */
ul li:hover {
  width: 180px;
  box-shadow: none;
}

ul li:hover::before {
  opacity: 1;
}
ul li:hover::after {
  opacity: 0.5;
}

/* ICON */
ul li .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

ul li i,
ul li ion-icon {
  color: #777;
  font-size: 1.75em;
  transition: 0.4s ease;
}

ul li:hover i,
ul li:hover ion-icon {
  opacity: 0;
  transform: scale(0);
}

/* TITLE */
ul li .title {
  position: absolute;
  color: #fff;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: scale(0);
  opacity: 0;
  transition: 0.4s ease;
}

ul li:hover .title {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 1200px) {
  body{
   overflow-x: hidden;
  }
  .bab {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 0;
    gap: 18px;
  }

}



@media (max-width: 480px) {
  .bab {
    backdrop-filter: none;
  }
  
}
@media (max-width: 580px) {
  .logo {
    padding: 0 1rem;
  }

  .head {
    font-size: 1.7rem; 
 
}
}

/* Responsive Fix for Logo & Icons */
@media (max-width: 600px) {

  body{
   overflow-x: hidden;
  }
  .bab {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 10px 0;
    gap: 18px;
  }

  .head img {
    height: 28px;   /* smaller logo */
  }

  ul {
    justify-content: center;
    gap: 8px;
  }

  ul li {
    width: 45px;
    height: 45px;
  }

  ul li i {
    font-size: 1.2em;
  }

  ul li:hover {
    width: 100px;
  }

  ul li .title {
    font-size: 0.8em;
  }
}

@media (max-width: 400px) {
     
body{
   overflow-x: hidden;
  }
  .head img {
    height: 34px;
   
  }

  ul li {
    width: 40px;
    height: 40px;
    
  }

  ul li i {
    font-size: 1em;
  }

  ul li:hover {
    width: 90px;
  }
}


#made{
  position: relative;
}

#go {
  text-align: center;
  font-size: 15rem;
  background: linear-gradient(to right, red, blue);
  color: transparent;
  margin-top: 50px;
  text-shadow: 0 0 60px rgba(255, 0, 0, 0.457);
  position: absolute;
  left: 10%;
  right: 10%;
  top: 1%;
  box-shadow: #973c3c transparent;
  transition: 4s;
  -webkit-background-clip: text;
  animation: anime 1s infinite alternate;
}
@keyframes anime {
  100% {
    text-shadow: 0 0 10px rgba(21, 0, 255, 0.457);
  }
}

.flight{
  overflow-y:hidden ;
}


#img {
  height: -70%;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  animation: game 1s linear infinite;
 left: 10%;
z-index: 1;
  
}
@keyframes game {
  0% {
    transform: scale(1.1);


  }

  100% {
    transform: scale(1.5);
    
  }
}
.word-box {
  position: absolute;
  text-align: center;
  margin-top: 400px;
  text-shadow: 2px 2px 4px #aaa;
  left: 30%;
  font-size: 80px;
  top: 350px;
  box-shadow: #298f76 transparent;
  transition: 4s;
  z-index: 1;
  color: lightgray;
}

.word{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: changeWord 5s infinite;
}

.word.first {
  animation-delay: 0s;
  
}
.word.second {
  animation-delay: 2s;
  
}


@keyframes changeWord {
  0% {
    opacity: 0;
     text-shadow: 0 0 20px rgba(207, 101, 19, 0.457); 
  }
  10% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(248, 7, 7, 0.457);
  }
  40% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(249, 10, 178, 0.457);
  }
  50% {
    opacity: 0;
    text-shadow: 0 0 20px rgba(16, 197, 28, 0.457);
  }
  100% {
    opacity: 0;
    text-shadow: 0 0 20px rgba(27, 15, 156, 0.457); 
  }
}




/* Responsive  */
@media (max-width: 1200px) {
  body{
   overflow-x: hidden;
  }
  #go {
    font-size: 10rem;
  }
  .word-box {
    font-size: 60px;
    top: 600px;
  }
  #img {
    width: 60%;
top: 700px;
  }
}

@media (max-width: 992px) {
  body{
   overflow-x: hidden;
  }
  #go {
    font-size: 12rem;
  }
  .word-box {
    font-size: 50px;
    top: 800px;
  }
  #img {
    
    width: 55%;
    top: 1000px;
  }
}

@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }
  #go {
    font-size: 11rem;
  }
  .word-box {
    font-size: 40px;
    top: 800px;

  }
  #img {
    width: 70%;
    top: 1000px;
  }
}

@media (max-width: 580px) {
  body{
   overflow-x: hidden;
  }
  #go {
    font-size: 8rem;
  }
  .word-box {
    font-size: 28px;
   

  }
  #img {
    top: 1000px;
    width: 85%;
  }
}


.perfect{
  position: relative;
  top: 800px;

display: flex;
justify-content: end;
align-items: end;
z-index: 2;
}

 .container {
  height: 60vh;
  width: 30vw;
  top: 500px;
  perspective: 1000px;
  cursor: pointer;
  display: flex;

  margin: 20px;
  position: absolute;
}

.box {
  height: 250px;
  width: 250px;
  position: relative;
  transform-style: preserve-3d;
  animation: spin 6s infinite linear;
}

@keyframes spin {
  0% { transform: rotateX(45deg) rotateY(-45deg); }
  25% { transform: rotateX(-45deg) rotateY(-45deg); }
  50% { transform: rotateX(45deg) rotateY(45deg); }
  75% { transform: rotateX(-45deg) rotateY(45deg); }
  100% { transform: rotateX(45deg) rotateY(-45deg); }
}

.card {
  height: 250px;
  width: 250px;
  text-align: center;
  color: white;
  background: transparent;
  border: 2px solid white;
  font-size: 28px;
  box-sizing: border-box;
  border-radius: 10px;
  position: absolute;
  transition: all 1s ease;
  text-shadow: 0 0 15px #ff00ff;
  box-shadow: 0 0 25px #00ffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: isekai 3s infinite alternate;
}

.card img {
  width: 250px;
  height: 250px;
  object-fit: fill;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px #00ffff);
  border-radius: 10px;
}

/* Cube face positions */
#front { transform: translateZ(125px); }
#back { transform: translateZ(-125px); }
#left { right: 125px; transform: rotateY(-90deg); }
#right { left: 125px; transform: rotateY(90deg); }
#top { bottom: 125px; transform: rotateX(90deg); }
#bottom { top: 125px; transform: rotateX(-90deg); }

/* Hover effect expands cube */
.container:hover .box #front { transform: translateZ(180px) rotateY(360deg); }
.container:hover .box #back { transform: translateZ(-180px) rotateY(360deg); }
.container:hover .box #left { right: 180px; }
.container:hover .box #right { left: 180px; }
.container:hover .box #top { bottom: 180px; }
.container:hover .box #bottom { top: 180px; }

@keyframes isekai {
  0% {
    box-shadow: 0 0 25px #00ffff, 0 0 50px #00ffff;
    text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
  }
  25% {
    box-shadow: 0 0 25px #ff00ff, 0 0 50px #ff00ff;
    text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
  }
  50% {
    box-shadow: 0 0 25px #00ff00, 0 0 50px #00ff00;
    text-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00;
  }
  75% {
    box-shadow: 0 0 25px #ffff00, 0 0 50px #ffff00;
    text-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
  }
  100% {
    box-shadow: 0 0 25px #ff0000, 0 0 50px #ff0000;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  }
}





@media (max-width: 900px) {
  body{
   overflow-x: hidden;
  }
  .box, .card {
    height: 180px;
    width: 180px;
  }
  .card img {
    width: 180px;
    height: 180px;
    
  }
  .card {
    font-size: 20px;
  }
  #front { transform: translateZ(90px); }
  #back { transform: translateZ(-90px); }
  #left { right: 90px; }
  #right { left: 90px; }
  #top { bottom: 90px; }
  #bottom { top: 90px; }
}


@media (max-width: 600px) {
  body{
   overflow-x: hidden;
  }
  .box, .card {
    height: 130px;
    width: 130px;
  
  }
  .card img {
    width: 130px;
    height: 130px;
  }
  .card {
    font-size: 16px;
  }
  #front { transform: translateZ(65px); }
  #back { transform: translateZ(-65px); }
  #left { right: 65px; }
  #right { left: 65px; }
  #top { bottom: 65px; }
  #bottom { top: 65px; }
}

.write{
  margin: 10;
  position: relative;
  top: 1467px;
  height: 1100px;
  left: 2%;
font-size: 40px;

color: whitesmoke;


}




@media (max-width: 1024px) {
  body{
   overflow-x: hidden;
  }
  .container {
    width: 40vw;
  }
  .box {
    transform: rotateY(30deg) scale(0.9);
    gap: 100px;
  }
  .write {
    font-size: 28px;
    margin-top: 170px;
  }
}

@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }
  .perfect {
    margin-top: 100px; 
        flex-direction: column;
  }
  .container {
    width: 60vw;
  }
  .box {
    transform: rotateX(25deg) rotateY(35deg) scale(0.7);

  }
  .write {
    font-size: 28px;
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  body{
   overflow-x: hidden;
  }
  .perfect {
    margin-top: 300px;
    flex-direction: column;
  }
  .container {
    width: 70vw;
  }
  .box {
    transform: rotateX(35deg) rotateY(45deg) scale(0.6);
  }
  .write {
    font-size: 22px;
  }
}


.web{
  top: 540px;
  position: relative;
  left:5%;
 margin:10px;
  display: flex;
  margin: 5px;
}


.buy{

  top: 571px;
margin :2px;
  position: relative;
 
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  background-color: #2b0742; 
  padding: 40px;
  border-radius: 10px;
}

.wrapper .button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
  width: 60px;
  background: #fff;
  text-decoration: none;
  margin: 0 10px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: width 0.4s ease;
}


.wrapper .button:hover {
  width: 200px;
}


.wrapper .button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

/* Keep icon visible always */
.wrapper .button .icon i {
  font-size: 25px;
  color: #000;
  transition: color 0.3s ease;
}

/* TEXT setup */
.wrapper .button span {
  font-size: 20px;
  font-weight: 500;
  margin-left: 10px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}


.wrapper .button:hover span {
  opacity: 1;
}


.wrapper .button:nth-child(1):hover .icon {
  background: #1DA1F2;
  color: #fff;
}
.wrapper .button:nth-child(2):hover .icon {
  background: #E1306C;
  color: #fff;
}
.wrapper .button:nth-child(3):hover .icon {
  background: #0077B5;
  color: #fff;
}
.wrapper .button:nth-child(4):hover .icon {
  background: #FF0000; 
  color: #fff;
}

.wrapper .button:nth-child(1) span {
  color: #1DA1F2;
}
.wrapper .button:nth-child(2) span {
  color: #E1306C;
}
.wrapper .button:nth-child(3) span {
  color: #0077B5;
}
.wrapper .button:nth-child(4) span {
  color: #FF0000;
}



@media (max-width: 600px) {
  body{
   overflow-x: hidden;
  }
  .wrapper {
    flex-direction: row;
  }
  .wrapper .button {
    height: 45px;
    width: 45px;
  }
  .wrapper .button:hover {
    width: 150px;
  }
  .wrapper .button .icon {
    height: 45px;
    width: 45px;
  }
  .wrapper .button .icon i {
    font-size: 18px;
  }
  .wrapper .button span {
    font-size: 16px;
  }
}








.course-design {
  position: relative;
  width: 100%;
  height: 350px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.course-design div {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotateCourse 24s linear infinite;
}

@keyframes rotateCourse {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(360deg); }
}

.course-design div span {
  position: absolute;
  inset: 0;
  transform: rotateX(calc(var(--i) * 15deg));
  backface-visibility: hidden; 
}

.course-design span::before {
  content: 'STRIKE COURSE';
  position: absolute;
  height: 100px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 8em;
  font-weight: 900;
  -webkit-text-stroke: 2px #000;
  text-shadow: 0 0 20px cyan, 0 0 40px blue, 0 0 80px purple;
  animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { text-shadow: 0 0 15px red, 0 0 30px orange, 0 0 60px red; }
  20% { text-shadow: 0 0 15px yellow, 0 0 30px green, 0 0 60px lime; }
  40% { text-shadow: 0 0 15px cyan, 0 0 30px blue, 0 0 60px cyan; }
  60% { text-shadow: 0 0 15px purple, 0 0 30px violet, 0 0 60px magenta; }
  80% { text-shadow: 0 0 15px pink, 0 0 30px red, 0 0 60px orange; }
  100% { text-shadow: 0 0 15px green, 0 0 30px cyan, 0 0 60px blue; }
}


.course-design:hover div {
  animation-play-state: paused;
}
@media (max-width: 900px){
  body{
   overflow-x: hidden;
  }
.buy{
font-size: 9.7px;
top:700px;
}
}

@media (max-width: 600px){
  body{
   overflow-x: hidden;
  }
.buy{
font-size: 7px;
top:700px;
}
}


@media (max-width: 411px){
  body{
   overflow-x: hidden;
  }
.buy{
font-size: 5.8px;
top:700px;
}
}
.specific{
  top:600px;
  position: relative;
font-size: 20px;
  left: 5px;
  color: antiquewhite;
  margin: 5px 50px;

}


.card-effective{
top:800px;
  position:relative;
  display: flex;
left: 15%;
}

.flip-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.flip-boxes {
  width: 560px;
  height: 640px;
  perspective: 1000px;
  position: relative;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-boxes:hover .flip-inner {
  transform: rotateY(180deg);
}


.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  overflow: hidden;

  box-shadow: 0 6px 20px rgba(228, 214, 214, 0.4);
}

.flip-front {
  background: linear-gradient(180deg, #0f7ed3, #38b199);
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.flip-front img {
  width: 100%;
  border-radius: 0.5rem;
  height: 350px;
  object-fit: cover;
}

.flip-front h2 {
  margin-top: 1rem;
  font-size: 3.4rem;
}

.flip-front p {
  font-size: 2.9rem;
  text-align: center;
  color: #333;
}

.flip-back {
  background: linear-gradient(180deg, #71d5f1ef, #5C5C5C);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(79, 255, 252, 0.8),
              0 0 50px rgba(252, 128, 211, 0.5),
              inset 0 0 15px rgba(87, 184, 19, 0.2);
}


.flip-back h3 {
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
  font-size: 2.9rem;
}


.feature {
  display: flex;
  align-items: center;
  margin: 0.4rem 0;
  font-size: 2.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  margin-right: 10px;
}


.light-toggle {
  margin-top: 1.2rem;
  align-self: center;
}

.lumen-switch {
  display: none;
}

.lumen-label {
  display: inline-block;
  background: black;
  color: #aaa;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #555;
  font-size: 2.8rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: inset 0 -3px 6px #ada6a6, inset 0 1px 1px #fff1;
  border-radius: 10px;
}

.lumen-switch:checked + .lumen-label {
  background: linear-gradient(145deg, #fff, #ffecb3);
  color: #09141b;
  box-shadow: 0 0 12px rgba(206, 123, 248, 0.533), 0 0 25px #66d9ff;
  border-radius: 10px;;
}

.flip-boxes:has(.lumen-switch:checked) {
  box-shadow: 0 0 25px rgba(230, 127, 127, 0.533), 0 0 50px #159b30;
  transition: all 0.4s ease;
}

/*  RESPONSIVE  */
@media (max-width: 1200px) {
  body{
   overflow-x: hidden;
  }
  .flip-front h2 {
    font-size: 2.8rem;
  }
  .flip-front p,
  .flip-back h3,
  .feature {
    font-size: 2.5rem;
  }
  .lumen-label {
    font-size: 2.4rem;
    padding: 0.4rem 0.8rem;
  }
  .flip-front img {
    height: 300px;
  }
}

@media (max-width: 992px) {
  body{
   overflow-x: hidden;
  }

  .flip-front h2 {
    font-size: 2.3rem;
  }
  .flip-front p,
  .flip-back h3,
  .feature {
    font-size: 2.1rem;
  }
  .lumen-label {
    font-size: 2rem;
  }
  .flip-front img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }
  .flip-front h2 {
    font-size: 1.9rem;
  }
  .flip-front p,
  .flip-back h3,
  .feature {
    font-size: 1.7rem;
  }
  .lumen-label {
    font-size: 1.6rem;
    padding: 0.3rem 0.7rem;
  }
  .flip-front img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  body{
   overflow-x: hidden;
  }
  .flip-front h2 {
    font-size: 1.6rem;
  }
  .flip-front p,
  .flip-back h3,
  .feature {
    font-size: 1.4rem;
  }
  .lumen-label {
    font-size: 1.3rem;
    padding: 0.2rem 0.6rem;
  }
  .flip-front img {
    height: 150px;
  }
}


@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }
  .card-effective {
flex-direction: column;

margin-right:20px ;
height: 1300px;
width:300px;
display: flex;


  }
}
.gog{

  display: flex;
  position: relative;
top: 900px;

font-size: 60px;
color: whitesmoke;
margin-left: 40%;

}
@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }

.gog{
 
  font-size: 45px;
}
}




.other-courses{
  position: relative;
top: 950px;

}


.edu-banner {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.edu-carousel {
  position: relative;
  width: 250px;
  height: 350px;
  transform-style: preserve-3d;
  animation: rotateEdu 20s linear infinite;
}

@keyframes rotateEdu {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.edu-box {
  position: absolute;
  inset: 0;
  transform: rotateY(calc((var(--i) - 1) * (360deg / var(--total)))) translateZ(550px);
  transition: transform 0.8s;
}

.edu-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}

.edu-box:hover .edu-inner {
  transform: rotateY(180deg);
}


.edu-front, .edu-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}


.edu-front {
  background: #1e1e2f;
  display: flex;
  flex-direction: column;
}

.edu-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.edu-front .content {
  padding: 1rem;
}

.edu-front h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.edu-front p {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.4;
}


.edu-back {
  background: linear-gradient(160deg, #8b5cf6, #3b0764);
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0 35px 10px rgba(139, 92, 246, 0.4);
}

.edu-back h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.edu-back .edu-features {
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: left;
  width: 100%;
  margin-bottom: 1.5rem;
}


.edu-btn {
  background: #fff;
  color: #3b0764;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.edu-btn:hover {
  background: #3b0764;
  color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
  transform: scale(1.05);
}




@media (max-width: 1200px) {
  body{
   overflow-x: hidden;
  }
  .edu-front img {
    height: 160px;
  }

  .edu-front h3 {
    font-size: 0.95rem;
  }
  .edu-front p,
  .edu-back .edu-features {
    font-size: 0.8rem;
  }
  .edu-back h2 {
    font-size: 1.1rem;
  }
  .edu-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  body{
   overflow-x: hidden;
  }
  .edu-front img {
    height: 140px;
  }
  .edu-front h3 {
    font-size: 0.9rem;
  }
  .edu-front p,
  .edu-back .edu-features {
    font-size: 0.75rem;
  }
  .edu-back h2 {
    font-size: 1rem;
  }
  .edu-btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }
  .edu-front img {
    height: 120px;
  }
  .edu-front h3 {
    font-size: 0.85rem;
  }
  .edu-front p,
  .edu-back .edu-features {
    font-size: 0.7rem;
  }
  .edu-back h2 {
    font-size: 0.9rem;
  }
  .edu-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .edu-box {
    transform: rotateY(calc((var(--i) - 1) * (360deg / var(--total)))) translateZ(270px);
  }
}

@media (max-width: 600px) {
  body{
   overflow-x: hidden;
  }
  .edu-front img {
    height: 100px;
  }
  .edu-front h3 {
    font-size: 0.8rem;
  }
  .edu-front p,
  .edu-back .edu-features {
    font-size: 0.65rem;
  }
  .edu-back h2 {
    font-size: 0.85rem;
  }
  .edu-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  .edu-box {
    transform: rotateY(calc((var(--i) - 1) * (360deg / var(--total)))) translateZ(220px);
  }
}

@media (max-width: 480px) {
  body{
   overflow-x: hidden;
  }
  .edu-front img {
    height: 80px;
  }
  .edu-front h3 {
    font-size: 0.75rem;
  }
  .edu-front p,
  .edu-back .edu-features {
    font-size: 0.6rem;
  }
  .edu-back h2 {
    font-size: 0.8rem;
  }
  .edu-btn {
    padding: 4px 8px;
    font-size: 0.65rem;
  }
  .edu-box {
    transform: rotateY(calc((var(--i) - 1) * (360deg / var(--total)))) translateZ(180px);
  }
}



.ALLUS{
  position: relative;
  top:1000px;
 font-size: 70px;
  left: 35%;
  color :white
}
@media (max-width: 880px){
  body{
   overflow-x: hidden;
  }
.ALLUS{
font-size: 30px;

}

}
#capital{
  color: rgb(rgba(228, 104, 104, 0.468), rgb(189, 231, 189), rgb(174, 174, 248));

;
}
.para{
  position: relative;
  font-size: 30px;
  top:1000px;
  left: 20%;
  color: white;
}
@media (max-width: 880px){
  body{
   overflow-x: hidden;
  }
.para{
  font-size: 25px; 
  margin-right: 5px;
}
}




#teachers{
  position: relative;
  top:1000px;
}



.instructor-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}
/* Glass card container */
.instructor-card {
  width: 500px;
  height: 730px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 20px;
  transition: 0.5s;
  position: relative;
  overflow: visible;
}

.instructor-card:hover {
  transform: translateY(-10px);
}


.profile-pic {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(140, 82, 255, 0.5);
  transform: translateY(-50px);
  transition: transform 0.5s ease;
  background: linear-gradient(145deg, #6f42c1, #b197fc);
}

.instructor-card:hover .profile-pic {
  transform: translateY(-70px) scale(1.1);
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.instructor-card {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px;
  border-radius: 20px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
}

.profile-pic {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 25px 5px #7a2bff;
  transition: 0.4s ease;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-pic:hover {
  box-shadow: 0 0 35px 10px #9f6bff;
}

.info {
  max-width: 600px;
}

.info h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.roles {
  margin-top: 10px;
}

.tag {
  display: inline-block;
  background: #151520;
  border-radius: 20px;
  padding: 5px 15px;
  margin-right: 8px;
  color: #c4b3ff;
  font-size: 0.9rem;
}

.badges {
  margin-top: 20px;
}

.badge {
  display: inline-block;
  background: #7a2bff;
  color: white;
  border-radius: 20px;
  padding: 6px 15px;
  font-weight: 600;
  margin-right: 10px;
  font-size: 0.9rem;
}

.bio {
  margin-top: 20px;
  line-height: 1.7;
  color: #d0d0d5;
}

.buttons {
  margin-top: 30px;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.start {
  background: linear-gradient(90deg, #8a2be2, #9c4aff);
  color: white;
  margin-right: 15px;
}

.start:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.know {
  background: #141414;
  color: #bcaaff;
  border: 1px solid #3f2b6f;
}

.know:hover {
  background: #1d1d2b;
  transform: scale(1.03);
}


/* Responsive Design Section */

@media (max-width: 900px) {
  body{
   overflow-x: hidden;
  }
  .instructor-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    height: 700px;
    width: 600px;
  }

  .profile-pic {
    width: 300px;
    height: 300px;
  }

  .info h1 {
    font-size: 2rem;
  }

  .bio {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  body{
   overflow-x: hidden;
  }
  .profile-pic {
    width: 160px;
    height: 160px;
  }

  .info h1 {
    font-size: 1.6rem;
  }

  .bio {
    font-size: 0.85rem;
  }

  .tag,
  .badge {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

.community{
  position: relative;
  top:1000px
}


.career-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 8%;
  flex-wrap: wrap;
}

.career-content {
  flex: 1;
  min-width: 350px;
}

.career-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.career-content span {
  color: #8b5cf6; 
}

.career-content p {
  margin-top: 1.5rem;
  color: #b4b6c0;
  font-size: 1.1rem;
  max-width: 600px;
}

.career-points {
  list-style: none;
  margin-top: 1.8rem;
  padding: 0;
}

.career-item {
  margin: 0.6rem 0;
  font-size: 1rem;
  color: #b4b6c0;
}

/* Responsive */
@media (max-width: 900px) {
  body{
   overflow-x: hidden;
  }
  .career-section {
    flex-direction: column;
    text-align: center;
  }
}


.cloud-tag{

position: relative;
top:700px;
left: 50%;

}







/* Main card container */
.techshowcase-card {
  position: relative;
  width: 700px;
  height: 650px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
  overflow: hidden;
  padding: 2rem;
  transition: 0.5s;
}

.techshowcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1, #22d3ee);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                 linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.techshowcase-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
}

/* Header */
.techshowcase-header {
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.techshowcase-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.techshowcase-header p {
  font-size: 1rem;
  color: #cbd5e1;
}

/* Sphere */
.techshowcase-sphere {
  width: 400px;
  height: 400px;
  margin: 0 auto;
  perspective: 1000px;
}

.techshowcase-cloud {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: tech-rotate 28s linear infinite;
}

.techshowcase-card:hover .techshowcase-cloud {
  animation-play-state: paused;
}

/* Tech icons */
.tech-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  object-fit: contain;
  transform: rotateY(var(--ry)) rotateX(var(--rx)) translateZ(220px);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.tech-icon:hover {
  transform: rotateY(var(--ry)) rotateX(var(--rx)) translateZ(270px) scale(1.3);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.9));
}

@keyframes tech-rotate {
  from { transform: rotateY(0deg) rotateX(0deg); }
  to { transform: rotateY(360deg) rotateX(360deg); }
}

/* Responsive */





@media (max-width: 1668px) {
  body{
   overflow-x: hidden;
  }
  .techshowcase-card {
    width: 90%;
    height: auto;
    top: 300px;
    right:47%;
  }
}
@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }
  .techshowcase-card {
    width: 90%;
    height: auto;
    top: 300px;
    right:47%;
  }

  .techshowcase-sphere {
    width: 300px;
    height: 300px;
  }

  .tech-icon {
    width: 55px;
    height: 55px;
    transform: rotateY(var(--ry)) rotateX(var(--rx)) translateZ(160px);
  }
}


.last-message{
  position: relative;
  top: 1030px;
 
}



/* Main box */
.contact-box {
  background-color: #111122;
  padding: 20px 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Text */
.contact-text {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #8c4bff;
}

/* Responsive */
@media (max-width: 600px) {
  body{
   overflow-x: hidden;
  }
  .contact-text {
    font-size: 2rem;
  }
}





.form-contacts{
  position: relative;
  top: 1070px;
}


.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}


.form-card {
  position: relative;
  width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}


.form-card::before,
.form-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 50%;
  height: 100%;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
}

.form-card::before {
  background: linear-gradient(315deg, #ff007f, #00d0ff);
}

.form-card::after {
  background: linear-gradient(315deg, #ff007f, #00d0ff);
  filter: blur(30px);
}

.form-card:hover::before,
.form-card:hover::after {
  transform: skewX(0deg);
  left: 20px;
  width: calc(100% - 90px);
}


.form-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.form-bg::before,
.form-bg::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  opacity: 0;
  transition: 0.5s;
  animation: float 2s ease-in-out infinite;
}

.form-card:hover .form-bg::before {
  top: -40px;
  left: 40px;
  opacity: 1;
}

.form-card:hover .form-bg::after {
  bottom: -40px;
  right: 40px;
  opacity: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(10px); }
  50% { transform: translateY(-10px); }
}


.form-body {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  color: #fff;
  z-index: 1;
}

.form-title {
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(315deg, #ff007f, #00d0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.form-fields {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1em;
}

input,
textarea {
  border: none;
  outline: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

textarea {
  resize: none;
  height: 120px;
}

input:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.4),
              0 0 15px rgba(0, 208, 255, 0.3);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  color: #111;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(315deg, #ff007f, #00d0ff);
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 0, 128, 0.5),
              0 0 25px rgba(0, 208, 255, 0.4);
  transform: scale(1.03);
}


@media (max-width: 800px) {
  body{
   overflow-x: hidden;
  }
  .form-card {
    width: 90%;
  }

  .form-body {
    padding: 25px;
  }

  .form-title {
    font-size: 1.5em;
  }

  label,
  input,
  textarea {
    font-size: 0.9em;
  }

  .submit-btn {
    font-size: 1em;
    padding: 10px;
  }
}





.messageus{
  position: relative;
  top: 900px;

}


.mail-container {
  position: relative;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(130, 100, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}


.envelope {
  width: 50%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #9f7bff, #7d5cff);
  border-radius: 15px 15px 5px 5px;
  position: relative;
  transform: rotateX(15deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}


.letter {
  width: 80%;
  height: 70%;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.at-symbol {
  font-size: 3rem;
  font-weight: bold;
  color: #8561ff;
}


.icon {
  position: absolute;
  font-size: 1.6rem;
  animation: float 4s ease-in-out infinite;
}

.paper-plane {
  left: 15%;
  top: 50%;
  animation-delay: 0.2s;
}

.bell {
  right: 20%;
  top: 35%;
  animation-delay: 0.6s;
}

.chat {
  left: 20%;
  bottom: 25%;
  animation-delay: 0.4s;
}

.like {
  right: 15%;
  bottom: 20%;
  animation-delay: 0.8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


.status {
  position: absolute;
  bottom: 10px;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.online {
  right: 15px;
}

.quick {
  left: 15px;


}






@media (max-width: 1374px) {
  body{
   overflow-x: hidden;
  }
  .mail-container {
    width: 260px;
    height: 260px;
    margin-top: 5px;
    margin-left: 50%;
   top: 200px;
  
  }
}





@media (max-width: 974px) {
  body{
   overflow-x: hidden;
  }
  .mail-container {
    width: 260px;
    height: 260px;
    margin-top: 5px;
    margin-left: 50%;
   top: 200px;
  
  }
}

@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }
  .mail-container {
    width: 260px;
    height: 260px;
    margin-top: 5px;
    margin-left: 50%;
top: 150px;
  
  }

  .at-symbol {
    font-size: 2.2rem;
  }

  .icon {
    font-size: 1.3rem;
  }

  .status {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  body{
   overflow-x: hidden;
  }
  .mail-container {
    width: 220px;
    height: 120px;
margin: 3px;

top: 170px;


  }

  .at-symbol {
    font-size: .8rem;
  }
.status {
    font-size: 0.5rem;
    padding: 5px 10px;
   
  }
  
}

.footerlast{
  position: relative;
  top:1100px;
}





.footer {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -5px 20px rgba(255, 255, 255, 0.05);
  color: #cfd6df;
  padding: 60px 10%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

/* Subtle glass gradient glow */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  pointer-events: none;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  background: linear-gradient(90deg, #fcbf49, #ff914d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-section h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-section p {
  color: #b0b9c3;
  line-height: 1.6;
  font-size: 0.95rem;
}

/*  Links  */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #cfd6df;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #fcbf49;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fcbf49;
}

.footer-links a:hover::after {
  width: 100%;
}

/*  Footer Bottom  */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #a0aab4;
  position: relative;
  z-index: 2;
}

/*  Responsive */
@media (max-width: 768px) {
  body{
   overflow-x: hidden;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-links {
    align-items: center;
  }
}
