@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



/* Wrapper to push footer down */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Full height */
}
html, body {
    font-family: "Poppins", sans-serif;
    background-color:#004c54;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    color: #ffffff; /* Bright font */
    /* font-family: 'Segoe UI', sans-serif; */
    margin: 0;
    padding: 1rem;
  }
  
  main {
    flex: 1; /* Takes up available space */
  }
  body {
    flex: 1;
  }

  main p {
    margin-bottom: 1rem; /* or 16px, adjust as needed */
  }
  main h2 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }
  main ul {
    margin-bottom: 1.5rem;
    padding-left: 40px; /* Adjust as needed */
  }


nav {
  padding: 15px 5%; /* Added more padding from top */
  margin-left: 20px 5%; /* Added more padding from top */
  background-color: #004F5F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px;
  z-index: 10;
  position: relative;
  border-radius: 10px; /* Optional: added a border radius for rounded corners */
  margin-top: 2px; /* Added some gap from the top */
  transition: background-color 0.3s ease-in-out; /* Smooth transition on hover */
  
}

nav:hover {
  background-color: #006678; /* Darker shade on hover */
}

.logo h1 {
  font-size: 1.6rem;
  color: #ffffff;
  margin: 0; /* remove default margin */
  padding-top: 2px; /* Added padding to align with the logo */
}
nav .logo {
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 30px;
  margin-right: 10px;
  filter: drop-shadow(1px 1px 2px black); /* Shadow to enhance visibility */
}

nav .logo h1 {
  color: white;
  font-size: 1.2rem;
}


/* Optional: added a border radius for rounded corners */
.logo a {
    text-decoration: none;
    color: inherit;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  .logo a:hover {
    text-decoration: none;
    color: inherit;
    transform: scale(1.02); /* Slightly enlarge the text on hover */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .logo a:visited {
    text-decoration: none;
    color: inherit;
  }

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0; /* remove default margin */
  /* padding-right: 80px; Added padding to align with the logo */
}

.nav-links li {
  position: relative;
  
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: color 0.3s ease; /* Added transition for smooth color change */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links a:hover {
  color: #00BFFF; /* Light blue color on hover */
    text-decoration: underline; /* Underline effect on hover */
  transform: scale(1.05); /* Slightly enlarge the text on hover */
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px; /* Shadow effect on hover */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Shift left by 50% of its own width */
  background-color: #004F5F;
  display: none;
  list-style: none;
  min-width: 180px;
  z-index: 1000;
  border-radius: 8px;
  padding: 0;
}


.dropdown-menu li a {
  padding: 10px;
  border-bottom: 1px solid #003366;
  
}

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

/* Nested Dropdown Styling */
.nested-dropdown {
  position: relative;
}

.nested-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%; /* Position it to the right of the parent item */
  background-color: #004F5F;
  display: none;
  list-style: none;
  min-width: 160px;
  z-index: 1001;
  border-left: 1px solid #003366;
  border-radius: 0 10px 10px 0;
}

.nested-dropdown-menu li a {
  padding: 10px;
  border-bottom: 1px solid #003366;
  white-space: nowrap;
}

/* Show nested dropdown on hover */
.nested-dropdown:hover .nested-dropdown-menu {
  display: block;
}

/* Optional: Add arrow icons to indicate submenu (▶ already used in your HTML) */
.nested-dropdown > a::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Optional hover effect for nested menus */
.nested-dropdown-menu a:hover {
  background-color: #006678;
  color: #00BFFF;
  text-decoration: underline; /* Underline effect on hover */
}

/* Hamburger menu */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100vh;
  background: #003366;
  padding-top: 60px;
  transition: left 0.5s ease-in-out;
  z-index: 9;
}

.menubar ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.menubar ul li {
  margin-bottom: 30px;
}

.menubar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}


/* For containers */

      /* body {
      font-family: "Poppins", sans-serif;
      background-color: #f9f9f9;
      padding: px;
    } */
    .container {
        display: flex;
        gap: 20px;
        padding: 23px 5%; /* Similar padding as the nav bar */
        /* padding-top: 25px; /* Added padding to align with the logo */
        /* padding-bottom: 25px; Added padding to align with the logo */ 
        background-color: #004f5f; /* Same background color as the nav bar */
        border-radius: 8px; /* Adding border radius for consistency */
        box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px; /* Same shadow as the nav bar */
        justify-content: space-between;
        align-items: flex-start;
        margin: 30px auto;
        margin-left: auto;
        margin-right: auto;
        transition: background-color 0.3s ease-in-out; /* Smooth transition on hover */
      }

      .container:hover {
        background-color: #006678; /* Darker shade on hover, like the nav bar */
      }

      .section {
        background-color: #fff;
        padding: 30px;
        padding-top: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        width: 48%;
        box-sizing: border-box;
      }

      @media (max-width: 768px) {
        .section {
          width: 100%;
        }
      }
      .h2bms {
        text-align: center;
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        color: black;
        /* font-weight: 600; */
        text-transform: uppercase;
        /* letter-spacing: 1px; */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        

          }

      h2 {
        margin-bottom: 10px;
        color: #ffffff;
      }

      h1 {
        margin-bottom: 10px;
        /* color: #000000; */
        font-weight: bold;
      }

      textarea {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
        font-family: monospace;
        padding: 10px;
        border: 1px solid #003b42; /* Slightly darker border than the background */
        background-color: #003b42; /* Slightly darker background to blend with the nav */
        color: white; /* White text color for contrast */
        border-radius: 8px;
        resize: vertical;
      }

      table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;

      }

      th,
      td {
        border: 2px solid #444;
        padding: 8px;
        text-align: center;
        color: #000000;
        /* font-weight: 600; */
        font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      }

      th {
        background-color: #004f5f;
        color: white;
        text-align: center;
      }
      thead {
        background-color: #004f5f;
        color: white;
        text-align: left;
      }

      .copy-button {
        margin: 10px 0;
        padding: 10px 18px;
        font-size: 14px;
        background-color: #004f5f;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

      }

      .copy-button:hover {
        background-color: #006678;
        transform: scale(1.02);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

      }

      @media (max-width: 768px) {
        .section {
          width: 100%;
        }

        textarea {
          height: 120px;
        }
      }

      .p{
        margin-bottom: 50px;
        margin-top: 50px;
      }

/* Add your styles here */

.footer {
  background-color: #004F5F;
  padding: 15px 5%;
  color: white;
  text-align: center;
  border-top: 1px solid #007B8A;
  box-shadow: rgba(0, 0, 0, 0.3) 0px -1px 3px;
  transition: background-color 0.3s ease-in-out;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0; /* Added margin to separate from the main content */
}
  /* Add your styles here */
.footer-link {
    color: #00BFFF;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    
  }
  .footer-link a:hover {
    color: #00BFFF; /* Light blue color on hover */
      text-decoration: underline; /* Underline effect on hover */
    transform: scale(1.05); /* Slightly enlarge the text on hover */
      box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px; /* Shadow effect on hover */
  }
  footer:hover {
    background-color: #006678; /* Darker shade on hover */
  }

/* Responsive */
@media screen and (max-width: 790px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .menubar.active {
    left: 0;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.link-card-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.link-card {
  background-color: #1e1e1e; /* or any other color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.link-card h3 {
  font-size: 1.4rem;
  color: #ffffff;
  background-color: rgba(0, 79, 95, 0.7); /* Teal-dark glass effect */
  padding: 10px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #00BFFF; /* Bright blue accent */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.Search_here {
  text-align: center;
  font-size: 2rem;
  margin-top: 50px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.link-card h3:hover {
  transform: scale(1.03);
  background-color: rgba(0, 102, 120, 0.8); /* Slightly brighter teal on hover */
}


.resource-link {
  display: inline-block;
  padding: 4px 8px;
  margin: 4px 0;
  text-decoration: none;
  color: #ffffff;
  background-color: #00BFFF;
  border-radius: 8px;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 191, 255, 0.3);
}

.resource-link:hover {
  background-color: #009ACD;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 191, 255, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}


main {
  padding: 20px;
}


.link-card-section {
  padding: 20px 5%;
  margin-top: 10px;
  margin-bottom: 40px;
  
}

.section-title {
  color: white;
  font-size: 2.4rem;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.link-card {
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
}

.link-card:hover {
  transform: translateY(-5px);
}

.link-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #000;
}

.link-card ul {
  list-style: none;
  padding-left: 0;
}

.link-card li {
  margin-bottom: 8px;
}

.link-card a {
  color: #004FFF;
  text-decoration: none;
  font-weight: 500;
}

.link-card a:hover {
  text-decoration: underline;
}

/* Bright Background Color Variants */
.bright-blue {
  background-color: #d0eaff;
}
.bright-yellow {
  background-color: #fff3cd;
}
.bright-green {
  background-color: #d4edda;
}
.bright-purple {
  background-color: #e6d6ff;
}


.link-card {
  border-radius: 12px;
  padding: 20px;
  background-color: white; /* or keep your bright-* backgrounds */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}


mark {
  background-color: yellow;
  color: black;
  font-weight: bold;
  border-radius: 4px;
  padding: 0 2px;
}

.search-bar {
  width: 50%;
  margin: 20px auto 0 auto;
  padding: 12px 20px;
  border-radius: 30px;
  border: 2px solid #3498db;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-bar:focus {
  border-color: #2ecc71;
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}
.search-bar:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.copy-top-button {
  background-color: #004F5F; /* Deep teal */
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
  /* Add these properties: */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.copy-top-button:hover {
  background-color: #006678; /* Lighter teal for hover */
  transform: scale(1.03); /* Optional: subtle animation on hover */
}


mark {
  background-color: yellow;
  color: black;
  padding: 0 2px;
  border-radius: 3px;
}
.onboarding-section {
  padding: 2rem;
}

.onboarding-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: space-between;
}

.onboarding-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  box-sizing: border-box;
}

.onboarding-item {
  border: 1px solid #ddd;
  border-radius: 15px;
  padding-left: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 6px rgba(0.08, 0.2, 0, 0.25);
  transition: background-color 0.3s ease;
}

.onboarding-item:hover {
  background-color: #006678;
}

.onboarding-title {
  font-size: 1.4rem;
  padding-left: 2rem;
  padding-top: 2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.onboarding-btn {
  display: inline-block;
  font-size: 1rem;
  padding-left: 2rem;
  color: #6da3ea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.onboarding-btn:hover {
  transform: scale(1.05);
  text-decoration: underline;
  color: #65d4ed;
}


/* Scoped CSS for onboarding page only */
.onboarding-section {
  padding: 2rem;
  /* background-color: #f9f9f9; */
}
.onboarding-point:hover {
  background-color: #006678; /* Darker shade on hover */
}

.onboarding-point {
  /* background-color: #ffffff; */
  border: 1px solid #ddd;
  border-radius: 15px;
  /* padding: 1.5rem; */
  padding-left: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 6px rgba(0.08, 0.2, 0, 0.25);
}

.onboarding-heading {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.onboarding-subpoint {
  font-size: 1rem;
  padding-left: 2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.onboarding-link {
  display: inline-block;
  font-size: 1rem;
  padding-left: 2rem;
  color: #6da3ea;
  text-decoration: none;
  font-weight: 500;
}

.onboarding-link:hover {
  text-decoration: underline;
  color: #65d4ed;
}

.team-section {
  padding: 3rem 2rem;
  /* background-color: #f7f9fc; */
}

.team-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  /* background-color:  */
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  /* background-color: #e7f7ff; */
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: #4fa6c8;
  margin-bottom: 0.75rem;
}

.team-link {
  font-size: 0.95rem;
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

.team-link:hover {
  text-decoration: underline;
  color: #005f99;
}

.architecture-section {
  padding: 3rem 2rem;
  /* background-color: #f5f8fb; */
  

}

.architecture-heading {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
  
}

.architecture-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.architecture-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.architecture-image:hover {
  /* transform: scale(1.02); Slightly enlarge the image on hover */
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px; /* Shadow effect on hover */
}

.architecture-details {
  max-width: 900px;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.7;
  /* background-color: ; */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0.2, 0, 0.2, 0.15);
}
.architecture-details:hover {
  background-color: #006678; /* Darker shade on hover */
  /* transform: scale(1.02); Slightly enlarge the text on hover */
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 3px; /* Shadow effect on hover */
}


@media (min-width: 768px) {
  .architecture-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .architecture-image {
    flex: 1;
    max-width: 50%;
  }

  .architecture-details {
    flex: 1;
    box-shadow: 0 5px 6px rgba(0.08, 0.2, 0, 0.25);
  }
}
