body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

header {
  background-color: black;
}

.contact-us-bar {
  background-color: #3f3f3f;
  color: #fff;
  padding: 0.5px 20px;
  text-align: right;
}

.contact-us-bar a {
  color: #ffffff; /* A bright color for the links for contrast */
  text-decoration: none;
  padding-right: 5px;
}

.contact-us-bar a:hover {
  text-decoration: underline;
}

.contact-bar-icon {
  max-width: 20px;
  max-height: 20px;
  padding-right: 5px;
}

header nav {
  display: flex;
  justify-content: space-between;
  background-color: black;
  padding: 10px;
}

.menu-icon {
  position: absolute;
  right: 5px;
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-icon span {
  display: block;
  width: 30px; /* Width of the menu lines */
  height: 0.1px; /* Height of the menu lines */
  margin-bottom: 5px; /* Space between the lines */
  position: relative;
  background: #dbdbdb; /* Color of the menu lines */
  border-radius: 5px;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.menu-icon span:last-child {
  margin-bottom: 0; /* No margin for the last line */
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links .logo-placeholder {
  flex-grow: 1;
}

.logo-container {
  position: absolute;
  left: 50%;
  top: 60.5px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  height: 60px; /* Adjust based on your logo's size */
}

/* Additional styles for aesthetics */
.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}

.nav-links a:hover {
  color: #ccc;
}

header nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

header nav ul li {
  display: inline;
  margin: 0 15px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

header nav ul li a:hover {
  color: #f0e68c;
}

footer {
  background-color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
}

footer nav ul {
  list-style: none;
  padding: 0;
}

footer nav ul li {
  display: inline;
  margin: 0 10px;
}

footer nav ul li a {
  color: black;
  text-decoration: none;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

.our-partners {
  text-align: center;
  padding: 10px;
  background-color: #f4f4f4; /* Adjust background color as needed */
}

.partners-logos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px; /* Adjust the space between logos */
}

.partner-logo {
  max-width: 175px; /* Adjust based on the desired size for logos */
  max-height: 50px;
  height: auto;
}


@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Tablets and below (screens smaller than 1000px) */
@media (max-width: 1000px) {
  .text {
    width: 70%; /* Increase width for medium screens */
    padding: 15px; /* Slightly reduce padding */
    font-size: 16px; /* Adjust font size for better readability */
    /* Adjust other properties as needed */
  }
}

/* Phones and below (screens smaller than 480px) */
@media (max-width: 480px) {
  .box {
    flex-direction: column;
  }
  .text {
    width: 90%; /* Further increase width for small screens */
    padding: 10px; /* Reduce padding */
    font-size: 14px; /* Further adjust font size for small screens */
    /* Adjust other properties as needed */
  }
}

.subscribe-section {
  width: 100%;
  background-color: #ffffff; /* Light grey background, adjust as needed */
  padding: 20px 0; /* Adds some padding around the section */
  text-align: center; /* Centers the content */
}

.subscribe-form {
  margin: auto;
  max-width: 600px; /* Adjust based on your design preference */
  padding: 15px;
}

.subscribe-form input[type="email"] {
  width: 70%;
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #ccc; /* Light grey border */
  border-radius: 5px; /* Rounded corners */
}

.subscribe-form button {
  padding: 10px 20px;
  background-color: #060af8; /* Bootstrap primary color, adjust as needed */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #0056b3; /* Darker shade for hover effect */
}

.container {
  width: 100%;
}

.row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; /* Adds spacing between rows */
}

.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%; /* Adjust based on your preference */
  padding: 10px;
}

.box img {
  width: 48%; /* Adjust image size as needed, leaving room for text */
}

.box .text {
  width: 48%;
  padding: 0 20px; /* Adjust padding as needed */
  text-align: justify;
  flex-direction: column;
}

/* Specific styling for image-right class */

.box.image-left img,
.box.image-right img {
  width: 50%; /* Adjust image size as needed */
}

.box.image-left .text,
.box.image-right .text {
  width: 50%;
  padding: 0 20px; /* Adjust padding as needed */
}

.box.image-right {
  flex-direction: row-reverse;
}

.image {
  border-radius: 8px; /* Optional: Adds rounded corners to images */
}

.text {
  text-align: justify;
}

.image-left img,
.image-right img {
  opacity: 0; /* Start images as invisible */
  will-change: transform, opacity; /* Optimizes animations */
}

.image-left .text,
.image-right .text {
  background-color: #f0f0f0; /* Light grey background, change as needed */
  color: #333; /* Dark text color for contrast, adjust as needed */
  padding: 20px; /* Adds padding inside the text boxes */
  margin: 10px 0; /* Adds space around the text boxes */
  border-radius: 8px; /* Optional: adds rounded corners to the text boxes */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

/* Optional: Slightly grow and elevate the text box on hover for a dynamic effect */
.image-left .text:hover,
.image-right .text:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.box {
  opacity: 0; /* Start off invisible */
  will-change: transform, opacity; /* Optimizes animations */
  display: flex;
  align-items: stretch; /* Ensures children fill the height */
  justify-content: space-between;
  width: 80%; /* Adjust based on your preference */
  height: 75%;
  margin: 20px auto; /* Adds margin for spacing and centers the box */
}

/* Update animations for the entire box */
.fade-in-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
}

/* Ensure text boxes and images fill the container properly */
.image-left img,
.image-right img,
.image-left .text,
.image-right .text {
  flex: 1; /* Allows children to fill the available space */
  display: flex;
  align-items: center; /* Centers text vertically */
  justify-content: center; /* Centers text horizontally */
}

.image-left .text,
.image-right .text {
  background-color: #8b8b8b; /* Example background color */
  color: #ffffff; /* Example text color */
  border-radius: 8px; /* Optional rounded corners */
  margin: 0 20px; /* Adds margin between text and image */
}

/* Keep the @keyframes and the .fade-in-left / .fade-in-right classes unchanged */

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-left {
  animation: fadeInLeft 2s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 2s ease-out forwards;
}

nav a.nav-button {
  background-color: black; /* Button background */
  color: #fff; /* Button text color */
  padding: 10px 20px; /* Button padding */
  text-decoration: none; /* Removes underline from links */
  border-radius: 5px; /* Optional: rounded corners for buttons */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
  margin: 0 0px; /* Spacing between buttons */
}

nav a.nav-button:hover,
nav a.nav-button:focus {
  background-color: #fff; /* Background turns white */
  color: #000; /* Text turns black */
}

.about-us-section {
  margin: 40px auto; /* Adjusts the spacing around the section */
  padding: 20px; /* Adds padding inside the section */
  max-width: 800px; /* Controls the width of the section for readability */
  background-color: #f8f8f8; /* Light background, adjust as needed */
  border-radius: 8px; /* Optional: adds rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow for depth */
}

.about-us-section h2 {
  text-align: center; /* Centers the heading */
  color: #333; /* Dark color for the text, adjust as needed */
  margin-bottom: 20px; /* Spacing between the heading and paragraph */
}

.about-us-section p {
  text-align: justify; /* Justifies the paragraph text for better readability */
  line-height: 1.6; /* Adjusts line height for readability */
  color: #666; /* Lighter text color for the paragraph */
}

@media (max-width: 1000px) {
  nav a.nav-button {
    padding: 8px 15px; /* Smaller padding on mobile */
    margin: 0 3px; /* Less spacing between buttons on mobile */
  }
  .image-left img,
  .image-right img,
  .image-left .text,
  .image-right .text {
    padding: 20px;
  }
}

@media (max-width: 1000px) {
  .about-us-section {
    padding: 15px;
    margin: 20px;
  }
  .box {
    align-items: center;
  }
  .box.image-right {
    flex-direction: column;
  }
  .box.image-left {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
}

.panel.leftbar {
  background-color: #f0f0f0; /* Light grey background */
  border-left: 5px solid #0d00bd; /* Blue left border for emphasis */
  padding: 20px; /* Padding around the text */
  margin: 20px 0; /* Margin above and below the panel */
  font-family: "Georgia", serif; /* A font that suits quotations well */
}

.panel.leftbar p {
  margin: 10px 0; /* Spacing between paragraphs */
  line-height: 1.6; /* Improved readability */
  color: #333; /* Dark gray color for text */
}

.panel.leftbar p:first-child {
  font-style: italic; /* Italicize the first paragraph (the quote) */
  font-size: 1.2em; /* Slightly larger font size for the quote */
  text-align: center; /* Center the quote for emphasis */
}

.panel.leftbar p:nth-child(2) {
  font-weight: bold; /* Bold the speaker's designation for emphasis */
  text-align: right; /* Align the speaker's name and title to the right */
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
  gap: 20px; /* Ensures consistent spacing between categories */
}

.category-container {
  flex: 0 1 45%; /* Adjusts the base size and flex-basis, allows wrapping */
  background-color: #f9f9f9; /* Light background for each category */
  padding: 15px;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.category-title {
  font-size: 40px;
  color: #333;
  margin-bottom: 15px; /* Space between title and first service box */
  padding-bottom: 5px;
  border-bottom: 2px solid #007bff; /* Accent line under title */
  text-align: center; /* Center-align the title */
}

.service-box {
  display: flex;
  align-items: flex-start; /* Aligns items to the start, useful if content varies in height */
  gap: 20px; /* Spacing between image and text */
  margin: 10px 0; /* Margin between service boxes */
  padding: 10px;
  border-radius: 10px;
}

.service-header {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 5px; /* Small gap between header and content */
  color: #0056b3; /* Darker shade for headers */
  flex: 1; /* Allows the header to fill the available space */
}

.service-content {
  display: flex;
}

.service-content,
.service-image {
  flex: 1; /* Allows the content and image to share available space */
}

.service-image {
  max-width: 150px; /* Adjust based on your preference */
  height: auto; /* Maintains aspect ratio */
  border-radius: 8px; /* Optional: adds rounded corners to the image */
}

.pop-up-blurb {
  max-height: 70vh; /* Sets the maximum height to 70% of the viewport height */
  max-width: 150vh;
  overflow-y: auto; /* Enables vertical scrolling */
  /* Keep your existing styles and add the ones above */
}

.product-image {
  max-height: 200px;
}

.product-wrap {
  display: block;
  flex-wrap: wrap;
  width: 50%;
  flex: 1;
}

.product-image-wrap {
  display: block;
  flex-wrap: wrap;
  width: 50%;
  flex: 2;
  max-height: 450px;
  max-width: 450px;
  padding-top: 40px;
}

.service-content p {
  font-size: 0.95em;
  line-height: 1.6;
  text-align: justify; /* Justifies the text for better readability */
  color: #444; /* Slightly lighter text for readability */
}

/* Hover effect for service boxes */
.service-box:hover {
  cursor: pointer;
  background-color: #f0f0f0; /* Light grey background on hover */
  border: 1px solid #ddd; /* Optional: adds a border */
}

/* Styles for the pop-up blurb */
.pop-up-blurb {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ddd;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 10; /* Sit on top */
  animation: fadeInScaleUp 0.3s ease-out forwards;
}

/* The Close Button */
.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.product {
  font-size: 30px;
}

@media (max-width: 1000px) {
  .category-container {
    flex: 0 1 100%; /* Each category container takes full width on small screens */
  }

  .service-header,
  .service-content p {
    text-align: left; /* Adjusts text alignment for readability on smaller screens */
  }
  .row {
    border: 1px solid black;
    border-radius: 10px;
  }
}

.behind {
  background-image: url("images/contentbg.png");
  background-size: cover; /* Ensure the background covers the full area of the section */
  background-position: center; /* Center the background image */
  color: #ffffff; /* Adjust text color for readability */
  padding: 50px 20px; /* Adjust padding as needed */
}

.behind-reverse {
  background-image: url("images/contentbgreverse.png");
  background-size: cover; /* Ensure the background covers the full area of the section */
  background-position: center; /* Center the background image */
  color: #ffffff; /* Adjust text color for readability */
  padding: 50px 20px; /* Adjust padding as needed */
}

.sectionbg {
  background-image: url("images/sectionbg.png");
  background-size: cover; /* Ensure the background covers the full area of the section */
  background-position: center; /* Center the background image */
  color: #ffffff; /* Adjust text color for readability */
  padding: 50px 20px; /* Adjust padding as needed */
}

.sectionbg-reverse {
  background-image: url("images/sectionbgreverse.png");
  background-size: cover; /* Ensure the background covers the full area of the section */
  background-position: center; /* Center the background image */
  color: #ffffff; /* Adjust text color for readability */
  padding: 50px 20px; /* Adjust padding as needed */
}

/* General button styling */
.button {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Specific button styles with placeholder images */
.splashtop-button {
  background: url("images/button.png") no-repeat center center / cover;
}

.rds-button {
  background: url("images/button.png") no-repeat center center / cover;
}

.ticket-button {
  background: url("images/button.png") no-repeat center center / cover;
}

.support-button {
  background: url("images/button.png") no-repeat center center / cover;
}

/* Hover effect for buttons */
.button:hover {
  opacity: 0.8;
}

/* Active (click) effect for buttons */
.button:active {
  transform: translateY(2px);
}

.button-container {
  display: flex;
  justify-content: start; /* Aligns items to the start of the container */
  align-items: center; /* Centers items vertically */
  flex-wrap: wrap; /* Allows items to wrap to the next line on small screens */
  gap: 10px; /* Adds some space between the buttons */
}

.splashtop-button,
.rds-button,
.ticket-button,
.support-button {
  display: inline-block;
  padding: 20px 20px;
  margin: 0; /* Removes default margins */
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background-color: #5c52e6;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  opacity: 0.8;
}

.rds-button,
.support-button {
  width: 90%;
}

.splashtop-button,
.ticket-button {
  width: 90%;
}

.support-page {
  width: 100%;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center; /* Center text */
}

.hidden {
  display: none;
}

.info-box {
  background-color: #7c7c7c;
  color: white;
  border: #000;
  border-radius: 5px;
  padding: 10px 20px;
}

.rounded-box {
  border-radius: 10px; /* Adjust as needed for the desired rounded corner effect */
  background-color: #f2f2f2; /* Light grey background, adjust the color as needed */
  padding: 20px; /* Adds some space inside the box */
  margin-bottom: 20px; /* Optional: Adds some space below the box */
}

span {
  font-size: 24px;
  background-color: #383838;
  color: white;
  padding: 5px;
}

/* Responsive adjustments for screens narrower than 1000px */
@media (max-width: 1000px) {

  .pop-up-blurb img {
    max-width: 70vh;
    margin-right: 0; /* Remove the margin as it's now stacked */
  }
}

/* Responsive adjustments for screens narrower than 600px */
@media (max-width: 750px) {

  .pop-up-blurb img {
    max-width: 40vh;
    margin-right: 0; /* Remove the margin as it's now stacked */
  }
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: auto;
    position: absolute;
    background-color: black;
    right: 0;
    top: 60px; /* Adjust based on the height of your nav bar */
    z-index: 1;
  }

  .nav-links.active {
    display: flex;
    top: 140px;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
  }

  nav a.nav-button {
    display: block;
    text-align: center;
  }

  .logo-container {
    position: static;
    transform: none;
  }
}

footer a:hover {
  color: #0056b3;
}

.responsive-img {
  aspect-ratio: 1 / 1;
}

.box-agro {
  width: 100%;
  display: flex;
}

.pricing-container {
  display: flex;
  gap: 20px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.pricing-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  width: 16.5%;
  transition: transform 0.3s;
}

.pricing-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 36px;
  color: #0056b3;
  margin-bottom: 10px;
}

.pricing-card .price span {
  font-size: 14px;
  color: #777;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card .features li {
  margin-bottom: 10px;
}

.pricing-card button {
  background-color: #0056b3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pricing-card button:hover {
  background-color: #0056b3;
}

.pricing-card .view-features {
  display: block;
  margin-top: 10px;
  color: #0056b3;
  text-decoration: none;
  transition: color 0.3s;
}

.pricing-card .view-features:hover {
  color: #0056b3;
}

.bronze {
  border: 2px solid #CD7F32;
}

.silver {
  border: 2px solid #C0C0C0;
}

.gold {
  border: 2px solid #FFD700;
}

.platinum {
  border: 2px solid #00d9ff;
}

.featured-sub {
  padding: 5px;
}

.pricing-card-feature {
  background-color: #fff;
  padding: 17px;
  text-align: center;
  width: 16.5%;
  transition: transform 0.3s;
}

.feature-head {
  border-bottom: 1px solid #0056b3;
  border-top: 1px solid #0056b3;
}

.featured-sub img {
  width: 15px;
}

.custom-table {
  width: 50%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}

.custom-table th, .custom-table td {
  border: 1px solid #dddddd;
  padding: 8px;
}

.custom-table th {
  background-color: #f2f2f2;
}

.banner {
  width: 100%;
  text-align: center;
  align-items: center;
  background-color: #666;
  padding: 5px;
}

.banner h1 {
  color: white;
}

.featured-sub.clickable {
  cursor: pointer;
  color: blue;
  text-decoration: underline;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.custom-table-2 {
  width: 50%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: center;
}

.custom-table-2 th, .custom-table-2 td {
  border: 1px solid #dddddd;
  padding: 8px;
}

.custom-table-2 th {
  background-color: #f2f2f2;
  text-align: center;
}

.custom-table-2 td {
  background-color: #fff;
}

mark {
    background-color: red;
}
