* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: Arial, sans-serif;
  /* background-color: #1c1c1c !important;  */
  overflow-x: hidden;
}

.wrapper {
  display: flex;
  position: relative;
  z-index: 2;
}

.wrapper .sidebar {
  width: 200px;
  height: 100%;
  background: black;
  padding: 30px 0px;
  position: fixed;
}

.wrapper .sidebar h2 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.wrapper .sidebar ul li {
  padding: 15px;
  border-bottom: 1px solid #bdb8d7;
  border-bottom: 1px solid rgba(206, 197, 197, 0.245);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wrapper .sidebar ul li a {
  color: #bdb8d7;
  display: block;
  text-decoration: none;
}

.wrapper .sidebar ul li a .fas {
  width: 25px;
}

.wrapper .sidebar ul li:hover {
  background-color: #594f8d;
}

.wrapper .sidebar ul li:hover a {
  color: #fff;
}














/* background */

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 27, 27, 0.868);
  z-index: 2;
  transition: background-color 0.3s ease;
}












/* Centered Button Styling */
.btn {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  padding: 0;
  /* Remove padding as we are using width and height */
  width: 40vw;
  /* 60% of viewport width */
  height: 20vh;
  /* 60% of viewport height */
  color: #b79726;
  font-size: 3rem;
  /* Large font size */
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  letter-spacing: 8px;
  /* Adjusted letter spacing */
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 3;
  /* Ensure button is above overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.407) !important;
  color: #fff;
  border-radius: 10px;
  /* Larger border radius */
  box-shadow: 0 0 10px #f4c803,
    0 0 30px #bd9d0b,
    0 0 70px #f4e403,
    0 0 50px #d5cf1e;
}

.btn span {
  position: absolute;
  display: block;
}

.btn span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  /* Increased height */
  background: linear-gradient(90deg, transparent, #f4c003);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.btn span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 4px;
  /* Increased width */
  height: 100%;
  background: linear-gradient(180deg, transparent, #f4bc03);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s;
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

.btn span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 4px;
  /* Increased height */
  background: linear-gradient(270deg, transparent, #f4dc03);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s;
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

.btn span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 4px;
  /* Increased width */
  height: 100%;
  background: linear-gradient(360deg, transparent, #f4b003);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s;
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}




/* java script */
.container {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.433);
  max-width: 1000px !important;
  /* Adjusted width */
  margin: 20px auto;
  /* Center horizontally */
  position: relative;
  right: -6%;
}

/* Heading Styling */
.animated-heading {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(45deg, #000000, #4B0082, #003366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For non-WebKit browsers */
  color: transparent; /* Fallback for non-WebKit browsers */
  margin-bottom: 20px;
  font-weight: bold;
 
}

/* Paragraph Styling */
.lead {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.animated-paragraph {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease-out;
}

/* Animation Keyframes */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 1000px) {
  .container {
    max-width: calc(100% - 40px);
    /* Full width with some padding */
    margin: 20px;
    /* Adjusted margin for smaller screens */
  }

  .animated-heading {
    font-size: 2rem;
  }

  .lead,
  .animated-paragraph {
    font-size: 1rem;
  }
}














/* what we */
.learning-section {
  text-align: center;
  margin: 50px 0;
}

.section-heading {
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(45deg, #000000, #4B0082, #003366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For non-WebKit browsers */
  color: transparent; /* Fallback for non-WebKit browsers */
  margin-bottom: 20px;
  margin-left: 200px;
}


.card-container {
  max-width: 100vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 35px;
  margin: 0 auto;
  padding: 40px 0;
  margin-left: 200px;

  .card {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);

    .face {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;

      &.face1 {
        box-sizing: border-box;
        padding: 20px;

        h2 {
          margin: 0;
          padding: 0;
        }

        .java {
          color: white;
        }

        .python {
          
          color: white;
        }

        .cSharp {
          color: white;
        }
      }

      &.face2 {
        transition: 0.5s;

        h2 {
          margin: 0;
          padding: 0;
          font-size: 10em;
          color: #fff;
          transition: 0.5s;
          text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          z-index: 10;
        }
      }
    }
  }

  .card:hover .face.face2 {
    height: 60px;

    h2 {
      font-size: 2em;
    }
  }

  .card:nth-child(1) .face.face2 {
    background-image: linear-gradient(40deg,
        #000000 0%,      /* Black */
        #4B0082 45%,      /* Indigo (purple) */
        #003366 100%);    /* Dark Blue */
    border-radius: 15px;
}

.card:nth-child(2) .face.face2 {
    background-image: linear-gradient(40deg,
        #4B0082 0%,      /* Indigo (purple) */
        #003366 45%,      /* Dark Blue */
        #000000 100%);    /* Black */
    border-radius: 15px;
}

.card:nth-child(3) .face.face2 {
    background-image: linear-gradient(40deg,
        #003366 0%,      /* Dark Blue */
        #000000 45%,      /* Black */
        #4B0082 100%);    /* Indigo (purple) */
    border-radius: 15px;
}
}















/* Editor container */
.editor-container {
  background-color: #2d2d2d;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  font-family: 'Courier New', Courier, monospace;
  max-width: 60%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  
  position: relative;
  transform: translateX(-50%);
  left: 37%;
}

/* Tabs for editor and output */
.editor-tabs {
  display: flex;
  background-color: #333;
}

.editor-tab {
  background-color: #444;
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  flex-grow: 1;
  text-align: center;
}

.editor-tab.active {
  background-color: #007acc;
}

/* Editor textarea */
.editor {
  padding: 10px;
  display: none;
}

#html {
  display: block;
}

textarea {
  background-color: #1e1e1e;
  border: none;
  border-radius: 3px;
  color: #dcdcdc;
  width: 100%;
  height: 200px;
  padding: 10px;
  font-size: 14px;
  resize: none;
  font-family: 'Courier New', Courier, monospace;
}

textarea:focus {
  outline: none;
}

button {
  background-color: #007acc;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

/* button:hover {
  background-color: #005999;
} */

/* Output console */
pre {
  background-color: #1e1e1e;
  padding: 10px;
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  min-height: 200px;
  border-radius: 3px;
}

#outputConsole {
  background: #1e1e1e;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  font-family: monospace;
  font-size: 1rem;
  color: white;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
  .heading-container {
    margin-top: 0;
    height: auto;
    width: 100%;
    margin-left: 0;
  }
  .login-box {
    z-index: 2;
  }
  .editor-container {
    max-width: 80%; /* Adjusted width for better fit on smaller screens */
    margin: 20px auto;
    transform: translateX(-35%); /* Move slightly to the left */
  }
}

@media (max-width: 480px) {
  .heading-container {
    height: 15vh;
    margin-top: 15%;
  }
  .editor-container {
    max-width: 95%;
    transform: translateX(-25%); /* Move slightly to the left for very small screens */
  }
  textarea {
    height: 100px;
  }
  pre {
    min-height: 100px;
  }
}






/* highlight text */















/* Footer section */
.footer {
  background-color: #282828;
  color: #f4f4f4;
  padding: 40px 0;
  text-align: left;
  width: calc(100% - 190px); /* Adjusted width to be 20px more */
  margin-left: 202px; /* Adjusted margin to align correctly */
  box-sizing: border-box;
}

.footer-col {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #f4c003;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #f4f4f4;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f4c003;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}
.social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #f4f4f4;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #f4c003;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer {
    width: 100%;
    margin-left: 0;
  }

  .footer-col {
    flex: 1 1 100%;
    margin: 20px 0;
  }

  .fcontainer {
    max-width: 100%;
    margin-right: 0;
  }
}














