@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
a {
  color: yellow;
  /* Optionally, you can add additional styling */
  text-decoration: none; /* Removes underline */
  /* Example hover effect */
}

a:hover {
  text-decoration: underline; /* Adds underline on hover */
}

  body {
    font-family: 'Roboto Mono', monospace;
    
    margin: 0;
    padding: 0;
    min-height: 100vh;
     background: black;
     color: white;
  }
  
  

  header {
    background-color: black;
    color: white;
   
    padding: 10px;
    text-align: center;
  }

  nav {
    background-color: black;
    text-align: center;
    color: white;
 
  }

  nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    display: inline-block;
  }

  nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
   
    transition: background-color 0.3s;
  }

  nav ul li a:hover {
    background-color: #777;
  }

  .dropdown {
    position: relative;
   
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #555;
    min-width: 160px;
    z-index: 1;
    top: 100%;
    left: 0;
     flex-direction: column; 
  }

  .dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #777;
  }
  * {
  margin: 0;
  padding: 0;
}

/* small screens-------------------- */


@media only screen and (max-width: 600px) {

.card2.info br {
    display: block; /* Ensure <br> is displayed as a block element */
    margin: 10px 0; /* Adjust margin as needed */
    content: ""; /* Ensure <br> does not add additional content */
  }

.card2.info h3 {
    margin-bottom: 10px; /* Adjust margin as needed or set it to 0 */
  }

.card2.info {
    display: flex;
    flex-direction: column; /* Reverses the order of flex items */
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
  }
.current-values {
      border: none; /* Increase border width */
    padding: 10px; /* Adjust padding to maintain inner spacing */
    margin: 0; /* Remove any margins */
    width: calc(100% - 4px); /* Ensure the div takes up the full width of its parent */
    box-sizing: border-box; /* Ensure padding is included within the width */
  }
  
.logo h1 {
display: none;
}
  /* Hide main menu on smaller screens */
  
  .card2 {
  background-color: #e1e1ee; /* Light gray background color */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 14px 21px rgba(0, 0, 0, 0.2);
  max-width: 80%;
  margin-top: 20px;
  border: 4px solid #ddd; /* Add a 2px solid border with a light gray color */
}
  
  .mitre-attack {
    display: none;
  }

  .top {
    flex-direction: column; /* Stack items in a column */
    align-items: center; /* Center items horizontally */
    text-align: left; /* Center text */
  }

  .top .logo-container {
  flex-basis: 50%; /* Take up half of the available space */
  display: flex;
  justify-content: center; /* Center the logo horizontally */
  align-items: center; /* Center the logo vertically */
  padding: 50px; /* Adjust padding as needed */
}


  /* Center the logo */
  .logo-container {
  
  display: none;
 
}
 .mid-content {
    flex-direction: column; /* Stack items in a column */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
  }

  .left-side,
  .right-side {
    width: 100%; /* Set both sides to full width */
    margin-bottom: 20px; /* Add spacing between the sides */
  }

  .card {
    width: 90%; /* Set card width */
    margin: 0 auto; /* Center the card */
    box-sizing: border-box; /* Include padding and border in the width */
  }

  .side-img {
    padding: 20px; /* Adjust padding as needed */
    max-width: 100%; /* Ensure image does not exceed its container */
    box-sizing: border-box; /* Include padding and border in the width */
  }
}

  .newsletter-form input[type="email"] {
    width: 100%; /* Set input field width to full width */
  }

  .newsletter-form button {
    width: 100%; /* Set button width to full width */
  }
}
.learn-to-hack {
  background-color: #f9f9f9; /* Light gray background color */
  padding: 50px 20px; /* Adjust padding as needed */
  text-align: center; /* Center align text */
}

.section-content {
  max-width: 800px; /* Set maximum width for the content */
  margin: 0 auto; /* Center the content horizontally */
}

.learn-to-hack h2 {
  font-size: 2rem; /* Set font size for the heading */
  margin-bottom: 20px; /* Add spacing below the heading */
}

.learn-to-hack p {
  font-size: 1rem; /* Set font size for paragraphs */
  margin-bottom: 15px; /* Add spacing below paragraphs */
}

.learn-to-hack strong {
  font-weight: bold; /* Set font weight to bold for strong elements */
}

/* Header styles */
header {
  background-color: #333;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between; /* Align items on the header */
  align-items: center;
}

/* Logo and text styles */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px; /* Adjust size as needed */
  margin-right: 10px; /* Adjust spacing between logo and text */
}

.logo h1 {
  font-size: 1.5rem; /* Adjust font size as needed */
}
/* Buttons styles */
.buttons {
  display: flex;
}

.signup-btn,
.login-btn {
    font-weight: bold;
  padding: 8px 16px;
  margin-left: 10px; /* Adjust spacing between buttons */
  background-color: black; /* Button background color */
  color: white;
  border: solid white 1px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none ;
  float: right;
  width: 75px;
}

.signup-btn:hover,
.login-btn:hover {
  background-color: #0056b3; /* Button background color on hover */
}
footer {
  background-color: #333;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  float: bottom;
  bottom: 0;
     position: fixed;
     width: 100%;
 
}

/* Left side of footer */
.footer-left {
  font-size: 14px;
}

/* Right side of footer */
.footer-right {
  display: flex;
}

.social-links {
  list-style-type: none;
 
  margin-right: 25px;
  padding: 0;
}

.social-links li {
  display: inline-block;
  margin-left: 10px;
}

.social-links li:first-child {
  margin-left: 0;
}

.social-links a {
  display: inline-block;
}

/* Adjust the width and height of social icons as needed */
.social-links img {
  width: 30px;
  height: 30px;
}
.social-links li a i {
  color: white;
}

/* Left side of footer */
/* Main content styles */
/* Main content styles */
.main-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow items to wrap */
}

/* Left side of main content */
.mid-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.left-side, .right-side {
  flex-basis: 48%; /* Adjust as needed */
}

.card-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.side-img {
  width: 100%;
 
}

.card-container {
  display: flex;
  flex-direction: column; /* Stack cards in a column */
}
.card {
  background-color: #f9f9f9; /* Light gray background color */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 14px 21px rgba(0, 0, 0, 0.6);
  width: 90%;
  margin-top: 20px;
  border: 4px solid #ddd; /* Add a 2px solid border with a light gray color */
}
.card2 {
  background-color: #e1e1ee; /* Light gray background color */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 14px 21px rgba(0, 0, 0, 0.2);
  width: 93%;
  margin-top: 20px;
  border: 4px solid #ddd; /* Add a 2px solid border with a light gray color */
}
.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 0;
}



.right-side img {

  max-width: 100%; /* Ensure the image doesn't exceed its container */
}
.right-side::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: black; /* Color of the vertical line */
}
.top {
  padding: 20px; /* Add padding */

  
}

.top p {
  margin: 0; /* Remove default margin */
  font-size: 24px; /* Set font size */
  color: #333; /* Text color */
}
.main-menu {
  margin-right: auto; /* Push attack menu to the right */
}

.attack-menu {
  position: relative;
}

.mitre-attack {
  position: absolute;
  
  left: 0;
color: gray;
  padding: 5px;
 
}

.attack-menu li {
  margin-right: 10px;
}

.attack-menu li:last-child {
  margin-right: 0;
}

.attack-menu li a {
  text-decoration: none;
  color: inherit;
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info {
 padding: 20px;
 margin: 15px;
 border: 2px solid gray;
 border-radius: 15px;
 font-size: 20px;
  
  
}
.top-text {
  flex-basis: 50%; /* Take up half of the available space */
}

.logo-container {
  flex-basis: 30%; /* Take up half of the available space */
  display: flex;
  justify-content: flex; /* Align the logo to the right */
  padding: 20px;
 
}

.logo-container img {
  max-width: 100%; /* Ensure the logo fits within its container */
  
}
.whats-new h3 {
  font-size: 24px; /* Set the font size to 24 pixels */
  padding: 10px 0; /* Add padding above and below the heading */
}

.whats-new ul {
  list-style-type: none; /* Remove default list styles */
  padding: 0; /* Remove default padding */
}

.whats-new li {
  font-size: 18px; /* Set the font size of list items to 18 pixels */
  margin-bottom: 10px; /* Add space between list items */
}
#cia {
  width: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Ensure image does not exceed its container */
  opacity: 50%; /* Make the image 50% transparent */
   border: 5px solid black; /* Add a 5px solid black border around the image */
  border-radius: 15px; /* Apply a border-radius of 15px */

}

.side-img {
padding: 20px;
max-width: 100%;


}
.newsletter-form {
  margin-top: 20px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 5px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}

.newsletter-form button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #0056b3;
}
.ciat {
padding: 20px;
font-size: 20px;
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: gray;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Ensure popup is above other content */
  border: 4px solid black;
}

.popup h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-field {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-width: 90%;
}

.captcha-container {
  /* Style the container for the CAPTCHA field */
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #0056b3;
}

.close-btn {
  display: block;
  margin-top: 10px;
  padding: 8px;
  background-color: #ccc;
  color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn:hover {
  background-color: #999;
}
.logout-btn {
   padding: 8px 16px;
  margin-left: 10px; /* Adjust spacing between buttons */
  text-decoration: none ;
  background-color: gray; /* Button background color */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}
/* dash info */
/* Style for the update information section */
.update-info {
  margin-top: 20px;
}

/* Style for form labels */
.update-info label {
  display: block;
  margin-bottom: 5px;
}

/* Style for form inputs */
.update-info input[type="text"],
.update-info input[type="email"],
.update-info input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Style for submit button */
.update-info button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Style for submit button on hover */
.update-info button:hover {
  background-color: #45a049;
}
/* Style for the quiz chart container */
.quiz-chart {
  display: flex;
  flex-wrap: wrap;
}

/* Style for each quiz */
.quiz {
  width: calc(25% - 20px); /* Adjust the width as needed */
  margin: 10px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Style for quiz title */
.quiz-title {
  font-weight: bold;
  margin-bottom: 10px;
}

/* Style for completion status */
.completion {
  margin-bottom: 5px;
}

/* Style for grade */
.grade {
  font-weight: bold;
}
.get-certificate {
  background-color: #4CAF50;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

.get-certificate:hover {
  background-color: #45a049;
}
.current-values {
  float: right;
  width: calc(50% - 20px); /* Adjust width as needed */

  padding: 20px;
 
}
@media only screen and (min-width: 600px) {
.current-values {
  float: right;
  width: calc(50% - 20px); /* Adjust width as needed */
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  border: 4px solid gray;
}
}
.current-values p {
  margin: 10px 0;
}
.confirm-login-btn {
   padding: 8px 16px;
  margin-left: 10px; /* Adjust spacing between buttons */
  background-color: gray; /* Button background color */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}
.team-members {
  padding: 60px;
   margin-right: 50px; /* Remove default margin */
  font-size: 24px; /* Set font size */
  color: #333; /* Text color */
}

.team-member {
  margin-bottom: 15px;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #f9f9f9;
}
.team-member-img {
  width: 100px; /* Adjust size as needed */
  height: 100px; /* Adjust size as needed */
  border: 2px solid black;
  border-radius: 50%; /* To make the image round */
  margin-right: 20px;
}

.team-member strong {
  font-weight: bold;
  color: #333;
}

.team-member p {
  margin: 5px 0;
}

  .sectionabout {
    margin-bottom: 30px;
  }

  .sectionabout h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .sectionabout p {
    margin-bottom: 15px;
  }
  .points {
  margin: 20px;
    padding-left: 20px;
    
  }
  
.contact-form,
.contact-details {
  width: 100%;
  max-width: 400px;
  padding: 30px;
}
.contact-form p {
  margin-bottom: 20px;
  flex-direction: vertical;
}

.contact-form {
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button[type="submit"]:hover {
  background-color: #0056b3;
}
.card3.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
   background-color: #e1e1ee; /* Light gray background color */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 14px 21px rgba(0, 0, 0, 0.2);
  max-width: 80%;
  margin-top: 20px;
  border: 4px solid #ddd; /* Add a 2px solid border with a light gray color */
}
.main {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}
/* Style for table of contents */
.table-of-contents {
  max-width: 300px; /* Adjust width as needed */
  margin: 50px;
}

/* Style for table of contents heading */
.table-of-contents h2 {
  color: #333; /* Dark gray color */
  font-size: 1.2em; /* Adjust font size as needed */
}

/* Style for table of contents links */
.table-of-contents a {
  color: white; /* Black color for links */
  text-decoration: none;
}

/* Style for nested list items */
.table-of-contents ol ol {
  margin-left: 20px; /* Adjust indentation as needed */
}

/* Style for nested list items */
.table-of-contents li {
  margin-bottom: 10px;
}
.privacy .container {
    max-width: 800px;
    margin: 0 auto;
}
.privacy h1,
.privacy h2,
.privacy h3,
.privacy h4,
.privacy h5,
.privacy h6 {
    margin-top: 20px;
}
.privacy p {
    line-height: 1.6;
}
 .table {
            border: 2px solid #ddd;
            border-radius: 5px;
            padding: 20px;
            margin-bottom: 20px;
            background-color: #f9f9f9;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        table {
            width: 90%;
            border-collapse: collapse;
        }
        
        th, td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        th {
            background-color: #f2f2f2;
            color: black;
      
       }

       
@media only screen and (min-width: 600px) {
    .mobile-menu-main {
        display: none;
    }
    
}
@media only screen and (max-width: 600px) {
    .attack-menu {
        display: none;
    }
    .mobilet {
    display: flex;
    flex-direction: column;
   
    }
    
}
.horizontal-menu {
    display: flex;
    list-style-type: none;
    padding: 0;
}

.horizontal-menu li {
    margin-right: 50px; /* Adjust spacing between menu items */
}
.gray-square-menu {
    list-style-type: none;
    padding: 0;
    margin-right: 50px;
}

.gray-square-menu li {
    background-color: gray;
    padding: 10px 20px;
    margin-bottom: 5px; /* Adjust spacing between menu items */
}

.gray-square-menu li a {
    text-decoration: none;
    color: #000; /* Text color */
}
.column {
    flex: 1;
    /* Equal width for both columns */
}
.tutorials {
 padding: 20px;
 align-items: left;
 max-width: 100%;
 
 }
 iframe {
 max-width: 100%;
 }
 video {
 max-width: 100%;
 }
 .adsbygoogle {
 max-width: 100% !important;
 }
 
 
 .typed-out{
    overflow: hidden;
    
    white-space: nowrap;
    font-size: 1.6rem;
    width: auto;
    animation: typing 2s forwards;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

.btn {
  padding: 8px 16px;
  margin-left: 10px; /* Adjust spacing between buttons */
  background-color: gray; /* Button background color */
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none ;
  width: 75px;
}
@media only screen and (max-width: 600px) {
    .typed-out {
        white-space: normal; /* Allow text to wrap normally on smaller screens */
        width: auto; /* Set width to auto for normal wrapping */
        animation: none; /* Disable typing animation on smaller screens */
    }
}.codebox {
        border:1px solid black;
        background-color:#EEEEFF;
        white-space: pre-line;
        padding:10px;
        font-size:0.9em;
        display: block;
        color: black;
     max-width: 90%;
       width:300px;
        overflow:auto;    
  
}