:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  /* Colors */
  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  /* Font and Rendering */
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Breakpoints */
  --breakpoint-lg: 1024px;
  --breakpoint-md: 768px;
  --breakpoint-sm: 480px;

  /* Spacing */
  --container-padding: 16px;
  --max-content-width: 1200px;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-width: 100vw;
  min-height: 100vh;
  background-color: var(--background-color);
}


.container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
}

p {
  font-size: 1rem;
  margin: 0.5rem 0;
  text-align: center;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.2s;
}
button:hover {
  border-color: #646cff;
  transform: scale(1.05);
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

/* Light Mode */
@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}

/* Responsive Breakpoints */
@media (max-width: var(--breakpoint-lg)) {
  h1 {
    font-size: 2rem;
  }

  button {
    padding: 0.5em 1em;
    font-size: 0.9em;
  }
}

@media (max-width: var(--breakpoint-md)) {
  body {
    flex-direction: column;

  }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }
}

@media (max-width: var(--breakpoint-sm)) {
  h1 {
    font-size: 1.5rem;
  }

  button {
    padding: 0.4em 0.8em;
    font-size: 0.8em;
  }
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.layout-container {
  width: 100%; /* Full width of the parent */
  height: 100%; /* Full height of the parent */
  display: flex; /* Use flexbox for alignment */
  flex-direction: column; /* Align items vertically */
  
  background-color: #f0f4f8; /* Optional background color */
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}

.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}

.logo.react:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}


.custom-title {
  color: #007bff; /* Bootstrap primary blue or any shade you prefer */
  text-decoration: underline;
}

.logo-small {
    width: 50px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
}
.btn-outline-greenish {
    background-color: transparent;
    border: none; /* Greenish border */
    color: #28a745;            /* Greenish text */
    font-weight: bolder;
  }
  
  .btn-outline-greenish:hover {    
    color: #0e2050;             
    
  }
  
.footer {
    position: relative; /* Can be changed to 'sticky' if preferred */
    bottom: 0;
    width: 100%;
    
  }
  .footer-list li {
    display: inline;
    margin-right: 10px; /* Adjust spacing as needed */
    position: relative;
  }
  

  
 
/* Footer2.css */
.footer-link {
    font-weight: bold;
    text-decoration: none; /* Remove underline */
  }
  
  .footer-link:hover {
    text-decoration: underline; /* Add underline on hover */
  }
/* Footer2.css */
.footer-link-bold {
    font-weight: bold; /* Make the text bold */
    text-decoration: none; /* Remove underline */
  }
  
  .footer-link-bold:hover {
    text-decoration: none; /* Keep underline removed on hover */
  }
/* Footer2.css */
.list-unstyled a {
    text-decoration: none; /* Remove underline from all links */
  }
  
  .list-unstyled a:hover {
    text-decoration: none; /* Ensure underline is not added on hover */
  }
/* Footer2.css */
.bg-custom-dark {
    background-color: #343a40; /* A lighter shade of dark */
  }
  .custom-footer-text {
    color: #d3d3d3; /* Lighter gray color for good contrast on dark background */
  }          

  /* Tooltip Styling */
.custom-footer-text {
  position: relative; /* Position relative to allow positioning of the tooltip */
}



  html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  .layout-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .content {
    flex-grow: 1;
  }
  
  .home-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
  padding-top: 10px;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  margin-bottom: 12px;
}

.home-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  z-index: -1;
}



.home-container > li:hover {
  background-color: aqua;
}

.card {
  background-color: transparent;
  border: none;
  border-radius: 8px;
  text-align: center;  
  width: 100%;
  max-width: 300px;
  font-size: 18px;
  color: #000000;  
  height: fit-content;
  margin-bottom: 16px;  
}
.card .title{
  width: 100%;
  background-color: #0e2050;
  color: #f8f9fa;
}
.grade {
  font-weight: bold;
  margin-bottom: 15px;
  color: #0e2050;
  border-bottom: 1px solid #0e2050;
  
}

.explore-button:hover {
  background-color: #0056b3;
}

/* Scoped style specific to nested-list */


.home-container .nested-list {
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
  cursor: pointer;
}

.home-container .nested-list li {
 text-align: left;
 margin-top: 10px;
 padding-left: 16px;
 cursor: pointer;
}

.home-container .nested-list li:hover {
  color: purple;
}

.home-container .nested-list li:focus {
  color: blue;
  text-decoration: underline;
}


/* Prevent hover effects on nested list items */
.home-container .nested-list li > ul {
  cursor: default; /* Disable hover effects for nested lists */
}
.subjectList {
  margin-bottom: 1rem;
}

.subjectList .nested-list {
  list-style: none;
  padding-left: 1rem;
}

.subjectSpan {
  cursor: pointer;
  color: #0d6efd;
}

.subjectSpan:hover {
  text-decoration: underline;
}


.subjectSpan:focus {
  font-weight: bolder;
  padding: 6px 18px;
  color: rgba(119, 6, 211, 0.87);

  margin-bottom: 16px;
  
}

.data-display-container{

}

.data-list{

}
.data-list li{
list-style: none;
color: #1c6fc6;
text-decoration: underline;
font-size: 14px;
}


.main-layout {
  display: flex;
  height: 100vh; /* Adjust as needed based on your layout */
  gap: 1rem;
  overflow: hidden; /* Prevent layout overflow */
}

.column {
  flex: 1;
  min-width: 0;
  
  overflow: hidden; /* Prevent internal scroll unless specified */
}

.center-column {
  overflow-y: auto;
  background-color: #f8f9fa;
}

.left-column {
  overflow-y: scroll;              /* Enables scrolling */
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #f8f9fa;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  padding: 16px;

  /* Hide scrollbar */
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* Internet Explorer 10+ */
}

.left-column::-webkit-scrollbar {
  display: none;                  /* Chrome, Safari, Opera */
}




.email-info {
  margin-top: 10px;
  display: flex;
  
  gap: 8px;
  font-size: 16px;
  color: #879fff;
}

.email-icon {
  width: 18px;
  height: 18px;
  color: #879fff;
}

.subscribed-section {
  margin-top: 12px;
}

.subscribed-section h4 {
  margin: 0;
  font-size: 18px;
  color: #222;
}




.right-column {
  padding: 16px;
  background-color: #fefefe;
  border-left: 1px solid #e0e0e0;
  overflow-y: auto;
  height: 100vh;
  width: 280px;
}

.right-column h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1c6fc6;
}

.social-widget,
.news-widget {
  margin-bottom: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.social-widget h5,
.news-widget h5 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
}

.news-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-widget ul li {
  margin-bottom: 8px;
}

.news-widget ul li a {
  color: #1c6fc6;
  text-decoration: none;
}

.news-widget ul li a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .left-column,
  .right-column {
    display: none;
  }

  .center-column {
    flex: 1 1 100%;
    height: auto;
    overflow: visible;
  }

  .main-layout {
    height: auto;
    flex-direction: column;
  }
}



.sidebar-content-wrapper{
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-group {
  width: calc(100% + 20px);  /* increases width by 20px */
  margin-left: -10px;        /* shift it back to center */ 
  margin-top: 12px;
  border-bottom: 2px solid rgb(239, 243, 255);
 
}




.category-group ul {
  list-style: none;        /* remove default bullets */
  padding: 0;
  margin: 0;
}

.category-group li {
  padding: 6px 0; 
  font-size: 14px;
  color: #000000;
}

.category-group li:last-child {
  border-bottom: none;     /* remove last item border */
}
.category-group h5 {
  position: relative;
  padding-left: 24px; /* Space for the icon */
  margin-bottom: 8px;
  font-size: 17px;  
  font-weight: 600;
  color: #1c6fc6;
}

.category-group h5::before {
  content: "📘"; /* Emoji or Unicode icon */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}


.subscription-intro {
  text-align: center;
  padding: 20px 24px;
  margin-bottom: 20px;

  background: rgba(255, 255, 255, 0.25);       /* Smooth glass tint */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #1c6fc6;                             /* Calming blue */
  font-size: 12px;
  line-height: 1.6;
}


.subscription-intro p {
  color: #1c6fc6; /* Same soft blue */
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  font-weight: 700;
}

.subscription-categories ul li {
  color: #1c6fc6;
}

.more-resources-container {
  height: 300px;
  margin-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.more-resources-intro {
  font-size: 1.125rem; /* about 18px */
  color: #1c6fc6;
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}

.more-resources-button {
  margin-top: 30px;
  padding: 0.75rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.4rem;
  transition: background-color 0.3s ease;
}

.more-resources-button:hover {
  background-color: #004085; /* darker blue on hover */
  text-decoration: none;
}

.ad {
  background-color: #e6f4ff;
  border: 1px solid #91d5ff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ad h6 {
  margin: 4px 0;
  color: #1c6fc6;
  font-weight: 500;
}

.ad-contact {
  margin-top: 10px;
  font-size: 14px;
  color: #0c4a8b;
}





.grade ul {
    list-style: none;
    justify-content: space-between;
   
}

.tables{
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
  cursor: pointer;
}
.tables li{
    text-align: left;
 margin-top: 10px;
 padding-left: 16px;
 cursor: pointer;
}
.senior-school-grade-selection{
  display: flex;
  height: 100px;
  align-items: center;
  
  justify-content: center;
  width: 100%;
  margin: 6px 0
}

.senior-school-grade-selection ul {
  list-style: none;
  font-size: 1.2em;
  font-weight: bold;
  color: rgb(28, 28, 28);
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 0; /* Removes any padding */
  margin: 0; /* Removes any margin */
}

.senior-school-grade-selection ul li {
  gap: 60px;
  transition: 
    color 0.3s ease,
    border-bottom 0.5s ease,
    letter-spacing 0.5s ease;
}

.senior-school-grade-selection ul li:focus,
.senior-school-grade-selection ul li:hover { 
  color: #1d24e8;
  border-bottom: 2px solid #1d24e8;
  letter-spacing: 3px; /* Optional: slight spacing effect on hover/focus */
  outline: none;
}


.senior-selected-grade { 
  text-align: center;
  font-weight: 900;
  letter-spacing: 20px;
  font-size: xx-large;
  color: white;
  -webkit-text-stroke: 1px black;
  /* Optional: for better text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



.senior-pathway{
  width: 100%;
  background-color: rgb(255, 255, 255);
  color: #0d0d0d;
  height: 40px;
  /*padding-left: 2%;*/
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 6px;
}
.senior-pathway h5 {
  margin-bottom: 0;
  color: white;
  -webkit-text-stroke: 1px black;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}


.selected-grade h6{
    color: lch(80.9% 82.56 100.72);
    width: fit-content;
    padding: 0px 6px;
    font-size: 20px;
    border-bottom: 2px solid lch(80.9% 82.56 100.72);
}


.sec-materials{
  width: 100%;
  display: flex;
  justify-content: center;
}
.sec-materials li {
  text-align: left;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
  list-style-type: circle;
  margin-top: 10px;
  margin-bottom: 6px;
  padding-left: 16px;
  cursor: pointer;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sec-materials li:hover {
  transform: translateX(10px); /* creates a smooth "move to the right" */
}



.subjects{
   cursor: pointer;
   min-width: 150px;
  
}
.subjects li {
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.9s ease, transform 0.9s ease;
    margin-bottom: 6px;    
}

.subjects li:focus {
    color: #e9ecef; /* Light gray text */
    background-color: rgba(119, 6, 211, 0.87); /* Purple background */
    text-align: center;
    transform: scale(1.05); /* Slight zoom-in effect */
    padding: 4px 0;   
}


.senior-school-title {
  height: 400px;
  width: 100%;
  background: url("/assets/hero-image-CV2uBA75.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .senior-school-title {
    height: 300px;
    background-position: center top;
  }
}

@media (max-width: 480px) {
  .senior-school-title {
    height: 250px;
    background-position: center top;
  }
}







  .senior-grade-headings{
    font-weight: bold;
  margin-bottom: 15px;  
  
  }
  .senior-grade-headings ul{
    display: flex;
    list-style: none;
  
  }
  .selected-grade {
    padding: 10px;
    color: rgb(211, 210, 216);
    border-radius: 5px;
  }
  
  .selected-grade-grade11 {
    background-color: #0558b0; /* Blue */
    color: #e9ecef;
  }
  
  .selected-grade-grade12 {
    background-color: #cd018c; /* Green */
    color: #e9ecef;
  }
  
  .selected-grade-grade10 {
    background-color: #004c13; /* Yellow */
    color: rgb(255, 255, 255);
  }

  .bts-hero-section {
    height: 406px;
    background: url("/assets/school-pic--ER9QiNj.jpg") no-repeat 50%;
    background-size: cover;
}
.bts-hero-section {
    height: 580px;
}
.bts-hero-section {
    height: 500px;
    background: url("/assets/school-pic--ER9QiNj.jpg") no-repeat 50%;
    background-size: cover;
}
.bts-hero-section {
    height: 395px;
    background: url("/assets/school-pic--ER9QiNj.jpg") no-repeat 50%;
    background-size: cover;
}
.bts-hero-section {
    background: url("/assets/school-pic--ER9QiNj.jpg") no-repeat 50%;
    background-size: cover;
    height: 470px;
    display: inline-block;
    width: 100%;
}

.page-width {
    box-sizing: border-box;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}



.bts-hero-section .page-width .btn {
    min-width: 327px;
    margin: 280px 0;
}


/* General button styles */
.btn {
    border: 0;
    box-sizing: border-box;
    padding: 11px 24px;
    display: inline-block;
    font-size: 17px;
    border-radius: 30px;
    line-height: 18px;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    text-align: center;
    transition: opacity .25s, background-color .25s, color .25s, border .25s, box-shadow .25s;
    outline: none;
    font-family: TTNorms-Medium, Arial, sans-serif;
    font-weight: 500;
}

/* Large button */
.btn.btn-lg {
    line-height: 26px;
    font-size: 20px;
    padding: 12px 24px;
}

/* Blue/Primary button */
.btn.btn-blue,
.btn.btn-primary {
    background-color: #5672c4;
    color: #fff;
    border-radius: 57px;
    box-shadow: 0 0 2px 0 rgba(0,0,0,.06), 0 2px 2px 0 rgba(0,0,0,.12);
}

/* Link styling */
.bts-hero-section a:not(img)  {
    text-decoration: none;
    color: #5672c4;
    vertical-align: baseline;
    cursor: pointer;
}



/* Responsive for small screens */
@media (max-width: 480px) {
    .bts-hero-section .page-width .section-text {
        width: 100%;
        font-size: 18px;
        padding: 0 10px;
        margin-top: 20px;
    }
}

.other-setion {
    background: url("/assets/school-pic--ER9QiNj.jpg") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem; /* optional spacing between columns */
  }
  .custom-card {
    background-color: #ffffffcc;
    border-radius: 12px;
    overflow: hidden; /* ensures rounded corners apply to inner content */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .custom-card:hover {
    transform: translateY(-5px);
  }
  
  .custom-card-header {
    background-color: #12121233;
    padding: 16px 20px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    border-bottom: 2px solid #ddd; /* creates the clear separation */
  }
  
  .custom-card-body {
    padding: 20px;
    background-color: #fff;
  }
  
  .custom-card-body li {
    list-style: circle;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: fit-content;
  }
  .custom-card-body li:hover {
    text-decoration: underline;
    
  }
  

  .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

  
.modalBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    border-radius: 12px;
    display: flex;
    margin: 6px;
    justify-content: center;
    z-index: 1050;
}

.modalContainer {
    background: rgb(249, 244, 249);
    width: 400px;    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
}

.modalHeader {
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes title left, button right */
}

.modalHeader .btn-close {
    margin-left: auto; /* Moves the close button to the right */
}

.modalFooter {
    border-top: 1px solid #dee2e6;
    padding: 12px 16px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

.data-table tr:hover {
    background-color: #f5f5f5;
}

.data-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.data-display-container {
    padding: 20px;
}

.downloadable-item{
    
}
.downloadable-item ul{
    list-style: none;
   color: rgb(13, 13, 197);
   text-decoration: underline;

}
.downloadable-item span:hover{
    cursor: pointer;

}.custom-form{
    padding: 0px 12px;
    width: 100%;
}
.custom-form form{
   padding: none;
   margin: none;
   box-sizing: border-box;
}.hero-section.container {
  display: flex;
  flex-direction: column; /* or row if you want horizontal layout */
  justify-content: center; /* vertical alignment */
  min-height: 100vh; /* full viewport height */
  padding: 2rem; /* optional padding */
}

.hero-right {
  background: white;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  height: 100%; /* Optional if you want it to match hero-left height */
}

.hero-right form {
  width: 100%; /* ⬅️ This makes the form fill hero-right */
}

.hero-right h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  color: #212529;
}
.hero-left {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 20px;
}

.subscription-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.subscription-card:hover {
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.subscription-table thead th {
  background-color: #007bff !important;
  color: #fff;
  vertical-align: middle;
}

.subscription-table td,
.subscription-table th {
  padding: 10px 12px;
  font-size: 14px;
}

.subscription-table tbody tr:hover {
  background-color: #f1f9ff;
  transition: background 0.2s ease;
}

.subscription-table td:first-child {
  font-weight: 500;
  color: #212529;
}

.clickable-row {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.clickable-row:hover {
  background-color: #f0f8ff !important;
}

.table-success {
  background-color: #d1e7dd !important;
}
.coming-soon-container {
  text-align: center;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  background: 
    linear-gradient(rgba(227, 227, 227, 0.5), rgba(227, 227, 227, 0.5)), 
    url("/assets/blackboard-CHDSdbvh.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coming-soon-heading {
  font-size: 6vw;
  max-width: 90%;
  margin: 0 auto 20px;
  color: #007bff;
}

.coming-soon-timer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.time-box {
  background-color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-width: 80px;
  margin-top: 10px; /* Fixed spacing unit */
}

.time {
  font-size: 1.3rem;
  display: block;
  font-weight: bold;
}

.launched-text {
  font-size: 1.2rem;
  font-weight: bold;
}

.notify-form {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.notify-input {
  padding: 10px;
  width: 80%;
  max-width: 300px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.notify-button {
  padding: 10px 15px;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  width: 80%;
  max-width: 150px;
}

.fb-link {
  color: #007bff;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 15px;
}

.highlighted-paragraph {
   background: radial-gradient(circle, #f1f8ff 0%, transparent 100%);
  box-shadow: 0 0 15px rgba(31, 31, 31, 0.2);
  padding: 30px 20px;
  max-width: 750px;
  margin: 40px auto;
  border-radius: 12px;
  color: #2c2c2c;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.highlighted-paragraph .intro {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #007bff;
}

.highlighted-paragraph .section {
  margin-bottom: 20px;
}

.highlighted-paragraph h6 {
  font-size: 1.1rem;
  color: #004080;
  margin-bottom: 8px;
  font-weight: bold;
}

.highlighted-paragraph p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.features-list {
  list-style: disc;
  padding-left: 25px;
  margin: 10px 0 0 0;
  text-align: left;
  justify-items: center;
}

.features-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.cta {
  text-align: center;
  margin-top: 30px;
  font-size: 1.15rem;
  color: #007bff;
  font-weight: 700;
}
.launch-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #1890ff, #0050b3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
  
}

.fade-out {
  animation: fadeOutSmooth 0.8s ease forwards;
}

@keyframes fadeOutSmooth {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.launch-content {
  text-align: center;
  z-index: 2;
  animation: slideUp 1s ease-out;
}

.launch-title {
  font-size: 2.8rem;
  font-weight: bold;
  animation: popIn 0.6s ease;
}

.launch-subtitle {
  font-size: 1.3rem;
  margin-top: 10px;
  opacity: 0.95;
}

.launch-date {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #d4f0ff;
}

.launch-loader {
  margin: 24px auto 0;
  width: 50px;
  height: 50px;
  border: 5px solid white;
  border-top: 5px solid #e6f4ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Floating animation */
.floating-objects {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.float-object {
  position: absolute;
  bottom: -50px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation-name: floatUp;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  opacity: 0.7;
}

.float-object:nth-child(even) {
  background: #d2eaff;
  width: 8px;
  height: 8px;
}

/* Keyframes */
@keyframes popIn {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-120vh) scale(1.4);
    opacity: 0;
  }
}

.continue-btn {
  margin-top: 30px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #ffffff;
  color: #1890ff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.continue-btn:hover {
  background-color: #e6f7ff;
  transform: scale(1.05);
}
