@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');
/*
@font-face {
  font-family: 'Electrolize';
  src: url('../../Electrolize-Regular.ttf') format('truetype');
} */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none; border: none;
  text-transform:none;
  transition: all .2s linear;
}
html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body{
  background: #04060e;
  /*font-family: 'Electrolize', sans-serif;*/
  font-family: 'Poppins', sans-serif;
}

*::selection{
  background: #2b3dda;
  color: #fff;
}
html{
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar{
  width: .8rem;
}
html::-webkit-scrollbar-track{
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb{
  background: #420177;
}
/* navbar starts */
header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #0c091df5;
  box-shadow: 0 1px 4px rgba(146,161,176,0.3);
}
section{
  min-height: 100vh;
  padding: 2rem 9%;
}
header .logo{
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #36fc05;
}
header .navbar ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li{
  margin-left: 2.5rem;
}
header .navbar ul li a{
  font-size: 1.57rem;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
}
header .navbar ul li a.active,
header .navbar ul li a:hover{
  color: #36fc05;
  border-bottom: .2rem solid #011aff;
  padding: .5rem 0;
}

/* Style for the dropdown button */
.dropdown-button {
  font-size: 1.6rem;
  cursor: pointer;
}

/* Style for the dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #14122e;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(255, 255, 255, 0.2);
  z-index: 1;
  font-size: 1.4rem;
}

/* Style for the dropdown items */
.dropdown-content li {
  padding: 1rem;
}

/* Style for the dropdown items on hover */
.dropdown-content li:hover {
  background-color: #14122e;
}

/* navbar ends */

/* hamburger icon starts*/
#menu{
  font-size: 3rem;
  cursor: pointer;
  color: rgb(255, 255, 255);
  display: none;
}
@media(max-width:768px){
  #menu{
      display: block;
  }
  header .navbar{
    position: fixed;
    top: 6.5rem; right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul{
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li{
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: .5rem;
    width: 26rem;
  }
  header .navbar ul li a{
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover{
    padding: 1rem;
    color: #fff;
    border-radius: .5rem;
    border-bottom: .5rem solid #36fc05;
  }
  .fa-times{
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle{
    right: 0;
  }
}
/* hamburger icon ends */

/*section start */
.page_404{ 
    padding:40px 0; 
    background:#04060e;
    margin-top: 6rem;
    min-height: 60vh;
}

.msg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
     transition: transform 1s, opacity 1s;
     opacity: 0;
     transform: translateY(-100%);
}



.msg h3{
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;

}
.msg h2{
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
}
.msg p{
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 95%;
    color: #ffffff;
    text-align: left;
}
.msg pre{
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 95%;
  color: #ffffff;
}
.msg .headera{
  font-size: 2.5rem;
  font-weight: 520;
  color: #fcfcfc;
}
.msg .headerb{
  font-size: 1.5rem;
  font-weight: 520;
  color: hsl(0, 0%, 100%);
}
.msg .headerc{
  font-size: 1.8rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
}
.msg .headerd{
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
}
.msg ol{
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 95%;
  text-align: left;
}
.wrapper h1{
  font-size:80px;
  text-align: center;
}

/* back button */
.backbtn{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.backbtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: .5em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, .6);
  text-align: center;
}
.backbtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: 'Nunito', sans-serif;
}
.backbtn .btn i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.backbtn .btn:hover{
  background: #1a047e;
}
.backbtn .btn:hover i {
  transform: translateX(-8px);
}
/* 404 section end */

/* footer section starts */
.footer{
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 43);
}
.footer .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .box-container .box{
  flex: 1 1 25rem;
  margin: 2rem;
}
.footer .box-container .box h3{
  font-size: 2.5rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: normal;
}
.footer .box-container .box p{
  font-size: 1.5rem;
  color: #ccc;
  padding: .7rem 0;
  text-transform: none;
}
.footer .box-container .box p i{
  padding-right: 1rem;
  color: #ffae00;
}
.footer .box-container .box a{
  font-size: 1.5rem;
  color: rgb(238, 238, 238);
  padding: .3rem 0;
  display: block;
}
.footer .box-container .box a:hover{
  color: #ffae00;
}
.footer .box-container .box .share{
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a{
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: .2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover{
  background: transparent;
  transform: scale(0.98);
  border: .1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit{
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Nunito',sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: .1rem solid #fff3;
}
.footer .credit a{
  color: #ffae00;
}
.footer .fa{
    color: #E90606;
    margin: 0 .3rem;
    font-size: 1.5rem;
    animation: pound .35s infinite alternate;
}
@-webkit-keyframes pound{
  to{
    transform: scale(1.1);
  }
}
@keyframes pound{
  to{
    transform: scale(1.1);
}
}
@media(max-width:450px){
  .footer .box-container .box{
    margin: 2rem;
  }
  .footer .box-container .box p{
    padding: 0.7rem;
  }
  .footer .box-container .box .share a{
    padding: 1.1rem;
  }
}
/* footer section ends */

/* common media queries starts*/
@media(max-width:450px){
  html{
    font-size: 55%;
  }
  body{
    padding-right: 0;
  }
  section{
    padding: 2rem;
  }
}

@media(max-width:600px){
  .image {
    margin-top: 2rem;
  }
  .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
}
/* common media queries ends*/


/* scroll top starts */
#scroll-top{
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 5rem;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active{
  top: calc(100% - 12rem);
}
/* scroll top ends */

.image {
  text-align: center;
  flex: 1 1 35rem;
}
.image img {
  margin: 3rem;
  width: 30rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.6);
  mix-blend-mode: normal;
  transition: 0.3s;
  cursor: pointer;
}
.image img:hover {
  mix-blend-mode: normal;
}


/* contact section starts */
.contact {
  background: #04060e;
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */

.recon-image {
  text-align: center;
  flex: 1 1 35rem;
}
.recon-image img {
  margin: 4rem;
  width: 40rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  cursor: pointer;
}
.recon-image img:hover {
  mix-blend-mode: normal;
}

.color {
  background-color: #0c0a24;
  color: rgb(241, 10, 10);
}
.heading span {
  color: rgb(180, 10, 10);
}

.headinga span {
  color: rgb(201, 5, 5);
}

.header span {
  color: rgb(12, 226, 23);
}
.headera span {
  color: rgb(255, 251, 10);
}
.headerb span {
  color: rgb(255, 0, 0);
}
.headerc span {
  color: rgb(15, 238, 26);
}
.headerd span {
  color: rgb(223, 238, 15);
}
.colora {
  background-color: #0c0a24;
  color: rgb(237, 241, 10);
}

.colorb {
  background-color: #0c0a24;
  color: rgb(241, 37, 10);
}

.colorc {
  background-color: #ffffff5e;
}
.colord {
  background-color: #0c0a24;
  color: rgb(10, 241, 29);
}
.colore {
  color: rgb(185, 185, 185);
  font-weight: 250;
}
.list li {
  color: #fff;
  font-weight: 500;
  margin-left: 3%;
  }
  .list ul {
    color: #fff;
    font-weight: 500;
    }
  .owasp-image {
    text-align: center;
    flex: 1 1 10rem;
  }
  .owasp-image img {
    margin: 4rem;
    width: 10rem;
    height: auto;
    border-radius: 5%;
    transition: 0.3s;
    cursor: pointer;
  }
  .owasp-image img:hover {
    mix-blend-mode: normal;
  }

  .list .btn {
    margin-top: 1rem;
    position: absolute;
    line-height: 0;
    padding: 0.8rem 1.7rem;
    border-radius: 2em;
    transition: 0.5s;
    color: #000000;
    background: #00c410;
    box-shadow: 0px 5px 18px rgba(48, 68, 247, 0.6);
    font-family: "Nunito", sans-serif;
  }
  .list .btn span {
    font-weight: 550;
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }
  .list .btn i {
    margin-left: 0.3rem;
    font-size: 1rem;
    transition: 0.3s;
  }
  .list .btn:hover {
    background: #1a047e;
    color: #fff;
  }
  .list .btn:hover i {
    transform: translateX(5px);
  }





  
  #sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 67px;
    left: 0;
    background-color: #0e0818;
    overflow-x: hidden;
    transition: 0.3s;
    z-index: 1;
}

#sidebar ul {
    list-style-type: none;
    padding: 0;
}

#sidebar ul li {
    padding: 10px;
}

#sidebar ul li a {
    color: white;
    text-decoration: none;
}

/* Adjust main content margin to avoid overlap */
#main-content {
    margin-left: 250px;
}

@media screen and (max-width: 767px) {
    #sidebar {
        display: none; /* Hide the sidebar on small screens */
    }

    /* Adjust main content margin for small screens */
    #main-content {
        margin-left: 0;
    }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height/width) */
  padding-top: 0;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the videos horizontally */
  align-items: center; /* Center the videos vertically */
}

.video {
  width: 45%; /* Set a fixed width for the videos */
  height: auto; /* Maintain the aspect ratio */
  margin-right: 20px; /* Adjust as needed for spacing between videos */
  margin-bottom: 20px; /* Adjust as needed for spacing between rows */
}

@media (max-width: 768px) {
  /* On screens with a width up to 768 pixels (adjust as needed) */
  .video {
    width: 100%; /* Make each video take up full width on small screens */
    margin-right: 0; /* Reset margin for stacked layout */
  }
}

/* hyperlink injection bypass page*/
.imagedup {
  text-align: center;
  flex: 1 1 35rem;
}
.imagedup img {
  margin: 3rem;
  width: 45rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 2.5px 5px rgba(66, 65, 65, 0.6);
  mix-blend-mode: normal;
  transition: 0.3s;
  cursor: pointer;
}
.imagedup img:hover {
  mix-blend-mode: normal;
}

@media(max-width:600px){
  .imagedup {
    margin-top: 2rem;
  }
  .imagedup img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
}


 /* Main container styling */
    .code-container {
      width: 100%; 
      max-width: 1000px; 
      overflow-x: auto; 
      background-color: #2e2e2e; 
      color: #ffffff; 
      padding: 16px;
      border-radius: 8px;
      font-family: monospace; 
      font-size: 14px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Smooth scrolling effect */
    .code-container::-webkit-scrollbar {
      height: 8px;
    }

    .code-container::-webkit-scrollbar-thumb {
      background-color: #888;
      border-radius: 4px;
    }

    .code-container::-webkit-scrollbar-thumb:hover {
      background-color: #555;
    }

