* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  width: 100%;
  
}

body{
  background: #f4fff4;

}

/* Header */
.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 1rem 2rem;
  top: 0;
  z-index: 1000;
  height: 12vh;
  position: sticky;
  box-shadow: 2px 2px 12px rgba(204, 234, 208, 0.683);
}

.logo img {
  height: 10vh;
  width: 100px;
  margin-top: 1rem;
}

/* Nav */
.nav {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: green;
  padding: 0.5rem 1rem;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background: rgba(122, 222, 131, 0.2);
  border-radius: 5px;
}

.nav-links li a:focus{
    background: rgba(84, 221, 96, 0.2);
  border-radius: 5px;
}


    .video-cont {
      display: flex;
      flex-direction: row;
      overflow: scroll;
      padding: 1rem;
      flex-wrap: wrap;
      background-color: #f9f9f9;
      height: 32vh;
    }

    @media(max-width:768px){
      .video-cont{
        justify-content: center;
        align-items: center;
        text-align: center;
      }
    }


    .video-container {
      display: flex;
      flex-direction: row;
      overflow: scroll;
      padding: 1rem;
      flex-wrap: wrap;
      background-color: #f9f9f9;
    }

    .video-box {
      width: 200px;
      height: 29vh;
      overflow: hidden;
      border: 2px solid #ccc;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease-in-out;
    }

    .video-box:hover {
      transform: scale(1.05);
    }

    .video-box video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

/* Hamburger */
.hamburger-menu {
  display: none;
  cursor: pointer;
}

.hamburger-menu i {
  font-size: 1.8rem;
  color: green;
}


    .section {
      display: flex;
      flex-wrap: wrap;
      background-color: white;
      margin: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .text-box {
      background-color: #006400;
      color: white;
      padding: 40px;
      flex: 1 1 100%;
    }

    .text-box h2 {
      font-size: 36px;
      color: white;
      margin-bottom: 20px;
    }

    .text-box p {
      font-size: 18px;
    }

    .image-box {
      flex: 1 1 100%;
      max-height: 400px;
      overflow: hidden;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Responsive Layout */
    @media (min-width: 768px) {
      .section {
        flex-wrap: nowrap;
      }

      .text-box,
      .image-box {
        flex: 1 1 50%;
      }
    }

/* CSS */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Keeps the video nicely shaped */
  overflow: hidden;
  border-radius: 2rem;
  margin: 2rem auto;
  max-width: 1200px; /* Optional: limits width on large screens */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Optional: depth effect */
}

#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 2rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(0,0,0,0.1)); /* Optional */
  pointer-events: none;
}

.video-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}

.video-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.school-footer {
  background-color: #d8f8d8; /* Light green base */
  color: #033b00;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 0 2rem 2rem;
}

.footer-logo {
  width: 80px;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #025902;
}

.footer-col p, .footer-col a {
  font-size: 0.95rem;
  color: #033b00;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 1rem;
  color: white;
  background-color: #025902;
  padding: 0.6rem 1rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #014401;
}

.signup-btn {
  margin-top: 1rem;
  background-color: #006400;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-btn:hover {
  background-color: #004d00;
}

.footer-bottom {
  background-color: #011c01;
  color: #dcdcdc;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}

.debate-highlight {
  background: url('/assets/images/robotics_club_2.jpg');
  position: relative;
  background-size:cover ;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.debate-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 128, 55, 0.95) 40%, rgba(0, 0, 0, 0) 80%);
  display: flex;
  align-items: center;
  padding: 2rem;
}

.debate-text {
  max-width: 600px;
  padding: 2rem;
}

.debate-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.debate-text p {
  font-size: 1.2rem;
  line-height: 1.7;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .debate-highlight {
    height: auto;
    padding: 2rem 0;
  }

  .debate-overlay {
    background: rgba(0, 128, 55, 0.15);
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .debate-text h2 {
    font-size: 1.8rem;
  }

  .debate-text p {
    font-size: 1rem;
  }
}



    .services-section {
      background-color: #eafaf1;
      padding: 60px 20px;
      text-align: center;
    }

    .services-section h2 {
      color: #004d1a;
      font-size: 32px;
      margin-bottom: 40px;
    }

    .cards-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      max-width: 1200px;
      margin: auto;
    }

    
    .highlight-section {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      background: linear-gradient(to right, #005500ee 40%, transparent 60%);
      color: white;
      padding: 0rem;;
      margin-top: 2rem;
    }

    .highlight-text {
      flex: 1 1 50%;
      padding: 40px 60px;
      z-index: 2;
    }

    .highlight-text h2 {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .highlight-text p {
      font-size: 16px;
      line-height: 1.6;
    }

    .highlight-image {
      flex: 1 1 50%;
      background-image: url('/assets/images/sharks.jpg');
      background-size: cover;
      background-position: center;
      min-height: 400px;
    }

    @media (max-width: 768px) {
      .highlight-section {
        flex-direction: column;
        background: #005500;
      }

      .highlight-text {
        padding: 20px;
      }

      .highlight-image {
        min-height: 300px;
      }
    }


    .service-card {
      background: white;
      border-radius: 12px;
      padding: 25px 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      text-align: left;
      width: 100%;
      max-width: 280px;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card:hover {
      transform: translateY(-6px);
    }

    .service-card i {
      font-size: 36px;
      color: #1a7300;
      margin-bottom: 15px;
    }

    .service-card h3 {
      color: #003300;
      font-size: 20px;
      margin-bottom: 12px;
    }

    .service-card p {
      color: #444;
      font-size: 14px;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .service-card a {
      display: inline-block;
      background-color: #1a7300;
      color: white;
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 6px;
      font-size: 14px;
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .service-card a:hover {
      background-color: #145d02;
    }




    /* Responsive tweaks */
    @media (max-width: 768px) {
      .service-card {
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
      .services-section h2 {
        font-size: 26px;
      }

      .service-card {
        padding: 20px;
      }

      .service-card h3 {
        font-size: 18px;
      }

      .service-card i {
        font-size: 30px;
      }
    }




/* Video Background */
/* .video-container {
  position: static;
  height: 60vh;
  overflow: hidden;
  margin: 1rem;

}

#myVideo {
  width: 100%;
  height: 100%;
  border-radius: 2rem;

} */


.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content h1 {
  font-size:7rem;
  font-weight: 900;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
  margin-bottom: 5rem;
  text-shadow: 30px 30px 30px black;
}

.content p {
  font-size: 1.5rem;
  margin-bottom: 10rem;

}

.about-section{
  display: flex;
}

.about-section .phaseY{
  border: 1px solid black;
  width: 600px;
  margin: 0rem;
  border: none;
}

.about-section .phaseX{
  border: 1px solid black;
  width: 500px;
  margin: auto;
  border: none;
}

.phaseX h1{
  color: green;
  margin: 1rem 3rem;
  font-family: 'Courier New', Courier, monospace;
}

.phaseX p{
  font-weight: 500;
  font-family: Corbel Light;
}

.phaseX button{
  margin: 0.3rem 3rem;
  padding: 0.5rem 2rem;
  background: green;
  border: none;
}

.phaseX button a{
  text-decoration: none;
  color: white;
}

.text-border{
  border: 1px solid black;
  width: 500px ;
  margin: 1rem 3rem;
  line-height: 1.2rem;
  border: none;
  
}

.admission-wrapper{
  display: flex;
  flex-direction: row;
}

.svg1-holder{
  border: 1px solid black;
  width: 600px;
  border: none;
}

.svg1-holder img{
  margin: 1rem 20rem;
}

.svg2-holder{
  border: 1px solid black;
  width: 600px;
  border: none;
}

.svg2-holder img{
  margin: 1rem 20rem;
}

.svg1-holder h2{
  margin: 1rem 20rem;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
}

.svg1-info h1{
    color: green;
  margin: 1rem 3rem;
  font-family: 'Courier New', Courier, monospace;
}

.title_gallery{
  text-align: center;
    color: green;
  margin: 1rem 3rem;
  font-family: 'Courier New', Courier, monospace;
}

.svg1-info h2{
  font-weight: 300;
  margin: 1rem 3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.svg1-info p{
  margin: 1rem 3rem;
  font-weight: 500;
  font-family: Corbel Light;
  line-height: 0.6rem;
}

.svg1-info button{
  margin: 0.3rem 3rem;
  padding: 0.5rem 2rem;
  background: green;
  border: none;
}

.svg1-info button a{
  text-decoration: none;
  color: white;
}


.result-checker{
  display: flex;
  flex-direction: row;
}

.course-section{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.course-section .border1{
  border: 1px solid black;
  width: 600px;
  height: 60vh;
  border: none;  
}


.course-section .border2{
  border: 1px solid black;
  width: 500px;
  height: 60vh;
  border: none;
}

.border1 .title-section h1{
  border: 1px solid black;
  width: 500px;
  height: 7vh;
  border: none;
  margin: auto;
  text-align: center;
  background: green;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sub-border{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;  
}

.sub-border .sub2{
  border: 1px solid black;
  width: 250px;
  height: 50vh;
  border-top: 10px solid green;
  border-left: none;
  border-right: none;
  border-bottom: none;
  margin: 1rem;
}

.sub1{
  text-align: center;
}

.sub-border .sub1{
  border: 1px solid black;
  width: 250px;
  height: 50vh;
  border-top: 10px solid rgb(130, 163, 137);
  background: rgb(217, 226, 217) ;
  border-left: none;
  border-right: none;
  border-bottom: none;
  margin: 1rem;
}

.sub2{
  text-align: center;
  background:  rgb(69, 174, 92);
  color: white;
  background: rgb(217, 226, 217) ;
  color: black;
}


.sub1 .title-sub1 .title-head{
  text-align: center;
  margin: 1rem;
  font-size: 1.3rem;
  font-weight: 300;
  font-family: arial;
}

.sub1 .title-info{
  line-height: 2rem;
  border: 1px solid black;
  font-size: 18px;
  width: 200px;
  margin: auto;
  border: none;
  font-weight: 100;
  font-family: calibri;
}

.course-list ul li{
  border: 1px solid black;
  border-bottom: 1px solid rgb(168, 169, 175);
  margin: 0.5rem auto;
  border-top: none;
  border-left: none;
  border-right: none;
  font-weight: 400;
  list-style: none;


}

.btn-sub1 button{
  margin: 1.5rem;
  padding: 1em 2.4rem;
  border-radius: 1rem;
  border: none;
  background: rgb(35, 134, 35);
}

.btn-sub1 button:hover{
  box-shadow: 8px 8px 26px  black;
  transition: 0.4s;
}

.btn-sub1 button a{
  text-decoration: none;
  color: white;
}


.sub2 .title-sub2 .title-head2{
  text-align: center;
  margin: 1rem;
  font-weight: 300;
  font-family: calibri;
  font-size: 19px;
}

.title-info2{
  border: 1px solid black;
  width: 200px;
  margin: auto;
  border: none;
  line-height: 2rem;
  font-weight: 400;
}


.club-list p{
  border-bottom:1px solid rgb(168, 169, 175) ;
  text-align: center;
  margin: 0.3rem;

}


.btn-sub2 {
  margin: 0.4rem;
  padding: 1em 2.4rem;
  border-radius: 1rem;
  border: none;
  background: rgb(35, 134, 35);
}

.btn-sub2:hover{
  box-shadow: 8px 8px 26px  black;
  transition: 0.4s;
}

.btn-sub2 a{
  text-decoration: none;
  color: white;
}


.border2 .title-section1{
  border: 1px solid black;
  width: 500px;
  height: 7vh;
  border: none;
  margin: auto;
  text-align: center;
  background: rgb(106, 165, 106);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.subdiv{
  display: flex;
  box-sizing: border-box;
  list-style: none;
  flex-direction: row;
}

.div1{
  border: 1px solid black;
  width: 290px;
  height: 50vh;
  border-top: 10px solid rgb(130, 163, 137);
  background: rgb(217, 226, 217) ;
  border-left: none;
  border-right: none;
  border-bottom: none;
  margin: 1rem;
  

}

.div2{
  border: 1px solid black;
  width: 350px;
  height: 50vh;
  border-top: 10px solid green;
  background: rgb(217, 226, 217) ;
  border-left: none;
  border-right: none;
  border-bottom: none;
  margin: 1rem;

}

.subdiv .titlediv{
  text-align: center;
  font-family: calibri;
  font-size: 19px;
  font-weight: 800;
}

.subdiv .divlist{
  border: 1px solid black;
  display: flex;
  border: none;
}

.subdiv p{
  margin: 0rem 1rem;
  line-height: 3rem;
  font-family: calibri;
  font-weight: 300;
  font-size: 1.1rem;

}

.sum-div{
  border: 1px solid black;
  display: flex;
  border: none;
}

.sum-div p{
  margin: 0rem 2rem;
}

.push-item{
  width: 50%;
}

.top-scroll button{
  padding: 0.6rem 1rem;
  border-radius: 1rem;
  background: green;
  position: fixed;
  top: 0;
  border: 1px solid black;
  margin: 2rem;
  border: none;
}

.top-scroll button:hover{
  text-shadow: 20px 30px 50px black;
}

.top-scroll button a{
  color: white;
  text-decoration: none;
}

.sharks-quiz-section{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 3rem;
}

.b1{
  border: 1px solid green;
  width: 300px;
  height: 15vh;
  text-align: center;
  background: green;
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
}

.b1 p{
  margin-top: 3rem;
  color: white;
  font-family: Segoe Script;
}

.b2{
  border: 1px solid green;
  width: 755px;
  height: 60vh;
  background-image: url('/assets/images/sharks.jpg');
  border: none;
  border-radius: 0.6rem;
}



.b3 p{
  font-family: cursive;
  padding: 1rem;
  color: white;

}

.programs-section{
  display: none;
}

.info-section {
  padding: 3rem 1.5rem;
  background-color: #f5fdf5;
  text-align: center;
}

.info-title {
  font-size: 2rem;
  color: #025c02;
  margin-bottom: 2rem;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

.info-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.1);
  border-top: 4px solid #0a7e0a;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.card-title {
  font-size: 1.3rem;
  color: #013801;
  margin-bottom: 1rem;
  font-weight: bold;
}

.info-card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.info-card ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.info-card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: #025c02;
  font-weight: 500;
}

.card-button {
  display: inline-block;
  background-color: #037403;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.card-button:hover {
  background-color: #025c02;
}

/* Stat section specific */
.stats-card .stat-row,
.stats-card .stat-total {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 500;
}

.stats-card .stat-total {
  font-weight: 700;
  margin-top: 1rem;
}

.sharks-quiz {
  background-color: #f4fff4;
  padding: 4rem 1rem;
}

.sharks-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.admission-results-section {
  display: grid;
  gap: 2rem;
  padding: 3rem 1rem;
  background-color: #f4fff4;
}

.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 128, 0, 0.05);
  text-align: center;
}

.info-box img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.info-text h3 {
  color: #006400;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.subtitle {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.info-text p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.info-btn {
  background-color: #006400;
  color: white;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.info-btn:hover {
  background-color: #004d00;
}

/* Responsive: side-by-side on wider screens */
@media (min-width: 768px) {
  .admission-results-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-box {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }

  .info-box img {
    margin-bottom: 0;
  }
}


@media (min-width: 768px) {
  .sharks-container {
    flex-direction: row;
  }
}

.sharks-text-box {
  background-color: #025c02;
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.15);
  max-width: 400px;
  text-align: center;
}

.sharks-text-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
}

.sharks-text-box p {
  font-size: 1rem;
  line-height: 1.5;
}

.sharks-image-box img {
  width: 100%;
  max-width: 550px;
  border-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}



/* --- Responsive Styles --- */
@media (max-width: 768px) {

  .programs-section {
  background-color: #f9fdf9;
  padding: 2rem 1.5rem;
  border-top: 4px solid green;
  text-align: center;
  border-radius: 1rem;
  margin: 2rem 1rem;
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.1);
}

.programs-title {
  font-size: 1.8rem;
  color: green;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: 'Courier New', Courier, monospace;
}

.programs-description {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.programs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.programs-list li {
  font-size: 1rem;
  padding: 0.5rem 0;
  color: green;
  border-bottom: 1px solid rgba(0, 128, 0, 0.2);
}

.programs-list li:last-child {
  border-bottom: none;
}

  .course-section{
    display: none;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    display: none;
  }
  
  .main{
    border-bottom: 2px solid green;
    height: 10vh;
    width: 100%;
  }

  .logo img {
  height: 9vh;
  width: 80px;
  margin: 0rem 0rem;


}

.video-container {
  position: static;
  height: 38vh;
  overflow: hidden;
  border: 1px solid black;
  width: 300px;
  margin: 1rem 2rem;
  border: none;
  }

#myVideo {
  width: 300px;
  height: 37vh;

  
}


  .nav.nav-active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
  }

  .hamburger-menu {
    display: block;
    margin: 0rem 0rem;
  }


.about-section{
  display: flex;
  flex-direction: column;
}

.test{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-section .phaseY{
  border: 1px solid black;
  width: 290px;
  margin: 2rem auto ;
  border: none;
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.about-section .phaseX{
  border: 1px solid black;
  width: 300px;
  margin: auto;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

}

.phaseX h1{
  color: green;
  margin: 0rem 1rem;
  font-size: 1.3rem;
}

.phaseX p{
  font-weight: 500;
  font-family: Corbel Light;
  margin: 0.3rem 1rem;
}



.phaseX button{
  margin: 0.8rem 3rem;
  padding: 0.5rem 1rem;
  background: green;
  border: none;
}

.phaseX button a{
  text-decoration: none;
  color: white;
}

.text-border{
  border: 1px solid black;
  width: 250px ;
  border: none;
  line-height: 1.2rem;
  margin: 0rem 1rem;
}


.phaseY iframe{
  border: 1px solid black;
  width: 250px;
  border: none;
  margin: 0rem 0rem;

  
}




.admission-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.result-checker{
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2REM;
}

.svg1-holder{
  border: 1px solid black;
  width: 200px;
  border: none;
  
  
}

.svg1-holder img{
  margin: 0rem 0rem;
  order: 1px solid black;
  margin: 0rem 1.3rem;
  width: 200px;
  height: 25vh;
}

.svg2-holder{
  border: 1px solid black;
  width: 200px;
  border: none;
  
  
}

.svg2-holder img{
  border: 1px solid black;
  margin: 0rem 0rem;
  width: 200px;
  height: 25vh;
  border: none;
}

.svg1-holder h2{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 400;
  margin: 0rem 0rem;
}

.svg1-info h1{
  color: green;
  font-family: 'Courier New', Courier, monospace;
  margin: 0rem 1rem;
  font-size: 1.4rem;
}

.svg1-info h2{
  font-weight: 300;
  margin: 0rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.svg1-info p{
  line-height: 1rem;
  font-weight: 500;
  font-family: Corbel Light;
  margin: 1rem 1rem;
  border: 1px solid black;
  width: 250px;
  border: none;
}

.svg1-info button{
  margin: 1rem 1rem;
  padding: 0.5rem 2rem;
  background: green;
  border: none;
}

.svg1-info button a{
  text-decoration: none;
  color: white;
}

.sharks-quiz-section{
  display: none;
}




}
