/* styles.css */
.custom-dropdown .Select-value {
    color: #000000;  /* Set text color of the selected value */
}
/* styles.css */
.no-gutters .col {
    padding-right: 0;
    padding-left: 0;
}
.image-container {
  width: 100%;
  /* or a specific width */
  /* max-width: 90vh; */
  /* adjust as needed */
  margin: 0 auto;
  text-align: center;
}
/* Style the sub-header */
.sub-header {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  /* Gradient background */
  border-radius: 10px;
  /* Rounded corners */
  /* Subtle shadow */
  font-family: 'Arial', sans-serif;
  /* Default font */
  /* background-color: #aca8a849; */
}

.sub-header h2 {
  font-size: 2.5em;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}
/* Apply graffiti font to "Your Research Hub" */
.graffiti {
  text-align: center;
  font-family: 'Rock Salt', cursive;
  color: #faae3b;
  /* Gold color for a bold look */
  text-shadow: 2px 6px 6px rgba(0, 0, 0, 0.952);
  /* Adding shadow for more effect */
}
.sub-header h3 {
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}
.graffiti3 {
  text-align: center;
  font-family: 'Nunito', sans-serif;
    color: #1d1a15;
  /* Gold color for a bold look */
  /* text-shadow: 2px 6px 6px rgba(0, 0, 0, 0.952); */
  /* Adding shadow for more effect */
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.responsive-image {
  width: 100%;
  /* Makes it responsive */
  max-width: 600px;
  /* Adjust as needed */
  height: auto;
  /* Maintains aspect ratio */
  display: block;
  margin: 0 auto;
  /* Centers the image */
  object-fit: contain;
  /* Ensures it doesn’t stretch */
  border-radius: 10px;
  /* Optional: adds rounded corners */
}
.card-body {
  background-color: #c5c5c5cb;
  /* Change this to your desired color */
  color: #f8f7f7;
  text-align: left;
  border-radius: 15px;
    /* Adjust the radius as needed */
    padding: 20px;
    /* Optional: add padding for spacing */
  /* Adjust text color if needed */
  /* opacity: 25%; */
    width: 100%;
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* Adjust columns' width as needed */
  gap: 10px;
  /* Space between columns */
  padding: 10px;
  /* Padding around the grid container */
}

/* Style for the dropdown */
.dropdown-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.multi-select-dropdown {
  width: 100%;
  /* Full width of the column */
  padding: 10px;
  font-size: 16px;
}
/* styles.css */
.right-box {
       background-color: #298d85;
       padding: 15px;
       border-radius: 8px;
       margin-bottom: 20px;
       color: #00FF7F;
       font-weight: bold;
       position: fixed;
       right: 20px;
       /* Adjust as needed */
       top: 20px;
       /* Adjust as needed */
       width: 400px;
       /* Adjust width as needed */
       z-index: 1000;
       /* Ensure it sits above other content */
     }

.center-text {
  text-align: center;
}

h1,h4,p {
  margin-left: 20px;
  margin-right: 20px;
}
html, body {
    height: 100%; /* Ensure the body takes up full height */
    margin: 0; /* Remove default margin */
    padding: 0;
}
body {
  background: linear-gradient(to bottom, #5e52c9, #b2d8f7, #C2E9FB, #A1C4FD);
    background-repeat: no-repeat;
    height: 100%;
    min-height: 100vh;
    padding: 60px 0 0 0;
    /* Add padding at the top to push the content below the navbar */
    font-family: Arial, sans-serif;
    padding-top: 5px;
    /* Add padding to create space between navbar and title */
}
body::before {
    content: ""; /* Required for ::before pseudo-element */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/logo.png'); /* Replace 'your_image.jpg' with the actual filename of your image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15; /* Adjust opacity to control the image overlay */
    z-index: -1;
}
.sections-container {
  display: flex;
      flex-wrap: wrap;
        /* Allow items to wrap to the next line */
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    height: 400px;
    /* Adjust to the height you want */
    overflow: auto;
    /* Allows scrolling if content exceeds the container's height */
    box-sizing: border-box;
    /* Ensures padding is included in the height calculation */
}
.section {
  flex: 1;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 8px;
}
.sections-container-cta {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  height: 400px;
  /* Adjust to the height you want */
  overflow: auto;
  /* Allows scrolling if content exceeds the container's height */
  box-sizing: border-box;
  /* Ensures padding is included in the height calculation */
}
.section-cta {
  flex: 1;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 8px;
}



h2 {
  margin-top: 0;
  color: #333;
}

p {
  color: #555;
}
/* styles.css */
.VirtualizedSelectFocusedOption {
    color: #000000; /* Set the text color for focused options */
}

.VirtualizedSelectOption {
    color: #000000; /* Set the text color for other options */
}

.VirtualizedSelectFocusedOption, .VirtualizedSelectFocusedOption:hover {
    background-color: #f0f0f0; /* Set the background color for focused options */
}

/* styles.css */
.Select-input input {
    color: white; /* Set the text color for the input field */
    background-color: rgb(66, 65, 65) /* Set the background color for the input field */
}
.select2-container {
  width: 100% !important;
  /* Make it responsive */
  box-sizing: border-box;
  /* Include padding and borders in width calculation */
  margin-right: 20px;
  /* Outer padding for the container */
}
.select2-container .select2-selection--single {
  background-color: rgb(66, 65, 65) !important;
  /* Dark background */
  color: white !important;
  /* White text */

}

/* Ensure selected text inside the dropdown is also white */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: white !important;
}

/* Ensure dropdown options are visible */
.select2-dropdown {
  background-color: rgb(66, 65, 65) !important;
}

/* Ensure dropdown options text is visible */
.select2-results__option {
  color: white !important;
}

/* Style the search box inside the dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: rgb(169, 169, 169) !important;
  /* Gray search box */
  color: black !important;
  /* Ensure text is visible */
  border: 1px solid rgb(136, 136, 136) !important;
  /* Slightly darker border */
}

/* Style placeholder text in the search box */
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
  color: rgb(50, 50, 50) !important;
  /* Darker gray for better readability */
}

/* Style placeholder text in the search box */
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
  color: rgb(50, 50, 50) !important;
  /* Darker gray for better readability */
}
/* Style the select2 container when applied to the .new-filter class */
.new-filter+.select2-container .select2-selection--single {
  background-color: white !important;
  /* White background for the dropdown */
  color: black !important;
  /* Black text for the selected option */
}

/* Style the dropdown options */
.new-filter+.select2-container .select2-results__option {
  color: black !important;
  /* Black text for the dropdown options */
}

/* Style the search box inside the dropdown */
.new-filter+.select2-container .select2-search--dropdown .select2-search__field {
  background-color: white !important;
  /* White background for the search input field */
  color: black !important;
  /* Black text inside the search input field */
  border: 1px solid rgb(136, 136, 136) !important;
  /* Border for the search input field */
}

/* Optional: Ensure the selected item (displayed in the field) has black text */
.new-filter+.select2-container .select2-selection__rendered {
  color: black !important;
}
.pricing-title {
  text-align: left;
  font-size: 1.5em;
  font-weight: bold;
  color: #0d0e0e;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  /* Modern, clean font */
}

.pricing-note {
  font-size: 1.2em;
  color: #00796b;
  margin-bottom: 1px;
}

.pricing-trial {
  color: #ff6f61;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 1px;


}

.pricing-table {
  border-radius: 12px;
  overflow: hidden;

  background-color: #b6b6b88c;
}

.pricing-table li {
  border-radius: 12px;
}
.plan-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    letter-spacing: 1.2px;
}


.plan-description {
  font-size: 1rem;
  color: #555;
}
.w3-button.w3-teal {
  background-color: #004d40;
  border: none;
  border-radius: 8px;
}

.w3-button.w3-teal:hover {
  background-color: #00796b;
}
.w3-gray {
  background-color: #727171 !important;
  color: #fff !important;
    border: none;
      border-radius: 8px;
}
.image-container {
  text-align: center;
  padding: 20px;
}

img {
  width: 70%;
  min-height: 200px;
  max-height: 400px;
}
.note {
  font-size: 0.95em;
  font-style: italic;
  color: #555555;
}
.video-container {
  display: flex;
  justify-content: space-between;
  /* Spreads videos evenly */
  flex-wrap: wrap;
  /* Prevents wrapping */
  padding: 20px;
  background-color: #cce7e770;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
    max-width: 30%;
      /* Ensures columns don’t exceed this width */
  /* Adds some horizontal space between columns */
}

.title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  /* Ensures the header takes full width */
}

.text {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  /* Ensures the text takes full width */
}

video {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  width: 100%;
  /* Ensures the video fills its container */
  transition: transform 0.3s;
}

video:hover {
  transform: scale(1.05);
}

/* Media Query for Smaller Screens */
@media (max-width: 800px) {
  .column {
    flex: 1 1 45%;
    /* Adjust flex-basis for smaller screens */
    max-width: 45%;
  }
}

@media (max-width: 600px) {
  .column {
    flex: 1 1 100%;
    /* Stack columns vertically on very small screens */
    max-width: 100%;
  }
}
.glow {
  animation: glow 2s infinite;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #40E0D0, 0 0 30px #40E0D0, 0 0 40px #40E0D0, 0 0 55px #40E0D0;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #40E0D0, 0 0 30px #40E0D0, 0 0 40px #40E0D0, 0 0 55px #40E0D0;
  }

  50% {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #40E0D0, 0 0 60px #40E0D0, 0 0 80px #40E0D0, 0 0 110px #40E0D0;
  }

  100% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #40E0D0, 0 0 30px #40E0D0, 0 0 40px #40E0D0, 0 0 55px #40E0D0;
  }
}

.text-white {
  color: #FFFFFF;
}

.text-green {
  color: #32CD32;
}

.text-red {
  color: #FF0000;
}

.btn.btn-custom {
  background-color: #20b2aa;
  color: white;
}

.btn.btn-custom:hover {
  background-color: #17a589;
}


.card,
.card-custom {
  width: 100%;
  box-sizing: border-box;
}

.btn {
  margin: 0 5px;
}

.btn-lg {
  font-size: 1.25rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3rem;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.custom-footer {
  background-color: #686767;
  /* Gray background color */
  color: white;
  /* Text color */
  max-height: 150px;
  /* Adjust based on your layout */
  margin: 0 auto;
  /* Center the footer */
  padding: 5px;
  /* Adjust padding if needed */
  box-sizing: border-box;
  /* Ensure padding is included in width */
  text-align: center;
  /* Center text alignment */
}

.custom-footer a {
  color: white;
  /* Ensure links are visible against the gray background */
}

.custom-footer a:hover {
  color: #ADD8E6;
  /* Optional: change link color on hover */
}

/* General container styles */
.container {
  display: flex;
  flex-wrap: wrap;
  /* Allow items to wrap */
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

/* Styles for CTA sections */
.cta-section {
  flex: 1 1 100%;
  /* Full width on small screens */
  text-align: center;
  padding: 40px;
  background-color: #8ba5b15e;
  border-radius: 8px;
  /* Adjust to fit in smaller screens */
  max-width: calc(50% - 20px);
  /* Adjust to fit within the container's width, accounting for gap */
  box-sizing: border-box;
  /* Ensure padding is included in width calculation */
}

/* Styles for CTA titles */
.cta-title {
  font-size: 4em;
  /* Adjusted size for better scaling */
  color: #333;
  margin: 0;
}

/* Styles for CTA descriptions */
.cta-description {
  font-size: 1.2em;
  /* Slightly larger for better readability */
  color: #555;
  margin-top: 10px;
}

/* Styles for CTA buttons */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 25px;
  font-size: 1.1em;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
  /* Darker shade on hover */
}

/* Styles for image containers */
.image-container {
  flex: 1 1 100%;
  /* Full width on small screens */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Adjust to fit in smaller screens */
  max-width: calc(50% - 20px);
  /* Adjust to fit within the container's width, accounting for gap */
  box-sizing: border-box;
  /* Ensure padding is included in width calculation */
}

/* Styles for responsive images */
.responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  /* Optional: match the border-radius with the CTA section */
}

/* Media queries for responsive adjustments */
@media (max-width: 800px) {

  .cta-section,
  .image-container {
    flex: 1 1 100%;
    /* Full width on smaller screens */
    max-width: 100%;
    /* Adjust to full width on smaller screens */
  }
}

/* Ensure the container does not affect layout unexpectedly */
.container {
  margin: 0 auto;
  /* Center the container */
  padding: 20px;
  /* Optional: Add some padding around the container */
  box-sizing: border-box;
  /* Ensure padding is included in width calculation */
}

.header-container {
  display: flex;
  align-items: flex-start;
  /* Align items at the top */
  justify-content: space-between;
  /* Space out items */
  margin-bottom: 20px;
  /* Adjust margin as needed */
}

.header-container h1 {
  margin: 0;
  /* Remove default margin */
  font-size: 60px;
  /* Ensure the size is consistent */
}

.header-container .box {
  background-color: #298d85;
  padding: 5px;
  border-radius: 5px;
  margin-top: 25px;
}

.header-container .box p {
  color: #00FF7F;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 12px;
  /* Ensure text size is consistent */
}
.container-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* Ensures vertical stacking */
  text-align: center;
  width: 100%;
  margin: 0 auto;
  /* Centers the entire container */
}

.header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.text {
  font-size: 16px;
  margin-bottom: 20px;
}
body {
  margin: 0;
  min-height: 100vh;
    /* Makes sure the body is at least the height of the viewport */
  padding: 0;
    overflow-y: scroll !important;
  
}
.iframe-container {
  /* overflow: hidden; */
  position: relative;
  width: 100%;
  height: 100%;
}

iframe {
  border: none;
  width: 100%;
  display: block;
  overflow: hidden;
  /* transform: scale(0.6); */
  height: 3000px;
  transform-origin: 5 0;
  /* pointer-events: none; */
    /* Disable interaction with the iframe */
}
/* Enable iframe interaction when explicitly clicked */
.iframe-container:active iframe {
  pointer-events: auto;
}
@media (max-width: 768px) {
  .iframe-container {
    padding: 20px;
    /* Add padding around iframe */
  }
}
.standingsright {
  display: flex;
  flex-direction: column;
  /* Stack button on top, dropdown below */
  align-items: flex-end;
  /* Align both to the right */
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
/* Dropdown Button */
.dropbtnstandings {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtnstandings:hover,
.dropbtnstandings:focus {
  background-color: #2980B9;
}

/* Dropdown Container */
.dropdownstandings {
  position: relative;
  /* ✅ This stays relative */
  display: inline-block;
  width: 400px;
}

/* Dropdown Content */
.dropdownstandings-content {
  display: none;
  width: 100%;
  overflow-y: auto;
  padding: 20px;
  background-color: rgb(92, 91, 91);
  border: 1px solid #ccc;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  text-align: right;
  z-index: 1;
  /* Lower z-index now */
  box-sizing: border-box;

  /* ✅ Remove position absolute */
  position: static;
  /* default, or just remove this line */
}
/* Show the dropdown when .show class is added */
.dropdownstandings-content.show {
  display: block;
}
/* Force background on all cells inside group1 rows */
.group1 td {
  background-color: #666666 !important;
}

/* Force background on all cells inside group2 rows */
.group2 td {
  background-color: #918f8f !important;
}

/* Ticker Container */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #00aeb4;
  /* red */
  color: white;
  padding: 8px 0;
  position: relative;
  border-bottom: 2px solid #139402;
}

/* Inner Scrolling Content */
.ticker {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker-scroll 15s linear infinite;
  font-size: 0.95rem;
  font-weight: 600;
}

.ticker span {
  margin-right: 50px;
  /* Spacing between messages */
}

/* Animation */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}