@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --bs-primary: #00696D;
  --bs-secondary: #106E00;
  --bs-tertiary: #AC2471;
  --bs-error: #BA1A1A;
  --bs-background: #F8FDFF;
  --bs-on-background: #001F25;
  --bs-surface: #F8FDFF;
  --bs-on-surface: #001F25;
  --bs-surface-variant: #DAE4E4;
  --bs-on-surface-variant: #3F4949;
  --bs-outline: #6F7979;
  --bs-dark-hover: #00585b; /* Darker shade for hover states */
}

.navbar-brand {
  font-weight: 700; /* Bold for branding */
  /* ... */
}
.navbar-brand img {
  margin-right: 10px; /* Adjust as needed */
  /* Additional styling if needed */
}

.animated-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Apply custom colors to Bootstrap components */
.bg-primary {
  background-color: var(--bs-primary) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.btn-primary {
  font-weight: 500; /* Medium for buttons */
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
  font-family: 'Roboto Flex', sans-serif;
}

.btn-primary:hover {
  background-color: var(--bs-dark-hover);
  border-color: var(--bs-dark-hover);
}

/* Custom styles */
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

.icon-container {
  background: var(--bs-surface-variant);
  border-radius: 50%;
  padding: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.icon-container:hover {
  transform: scale(1.05);
  background: var(--bs-surface-variant); /* No darken function, adjust manually if needed */
}

footer {
  background-color: #f8f9fa;
  padding: 2rem 0;
}

footer h5, footer a, footer .social-media {
  margin-bottom: 1rem;
  color: #ffffff;
}

footer a:hover {
  text-decoration: underline;
}

/* Styles for the FAQ section */
.faq-header {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500; /* Medium for FAQ questions */
  color: var(--bs-on-background);
  font-family: 'Roboto Condensed', sans-serif;

}

.faq-body {
  font-weight: 400; /* Regular for FAQ answers */
  font-size: 1rem;
  color: #5a5a5a;
}

/* Custom CTA Styles */
.cta-section {
  background-color: var(--bs-background);
  border-top: 1px solid var(--bs-outline);
  border-bottom: 1px solid var(--bs-outline);
  padding: 2rem 0;
}

.cta-heading {
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--bs-primary);
  margin-bottom: 20px;
  
}

.cta-section .btn-primary {
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 50px;
  font-family: 'Roboto Flex', sans-serif;
  box-shadow: 0px 5px 15px rgba(0, 105, 109, 0.2);
}

.cta-section .btn-primary:hover {
  background-color: var(--bs-dark-hover);
  box-shadow: 0px 5px 15px rgba(0, 88, 91, 0.3);
}

/* Navbar CTA Button */
.navbar .btn-primary {
  border: 2px solid var(--bs-primary);
  color: var(--bs-primary);
  background-color: transparent;
}

.navbar .btn-primary:hover {
  color: var(--bs-on-background);
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

header.hero {
  background: url('hero-background.jpg') no-repeat center center / cover; /* Replace with your image or video */
  color: var(--bs-on-background);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700; /* Bold for headings */
}
.btn, .nav-link, .cta-heading {
  font-weight: 500; /* Medium for clickable items and important calls to action */
}
.hero-heading, .faq-header {
  font-family: 'Roboto Condensed', sans-serif;
}
.hero-heading {
  font-weight: 700; /* Bold for hero heading */
  /* ... */
}

.hero-tagline {
  font-weight: 400; /* Regular for hero tagline */
  /* ... */
}

header.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0, 25, 37, 0.6); /* Dark overlay for better text visibility */
}

header.hero h1, header.hero p {
  position: relative; /* Above the overlay */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

header.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
  font-family: 'Roboto Condensed', sans-serif;
}

header.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

header.hero .btn {
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
  opacity: 0;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  color: white;
  background-color: var(--bs-primary);
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

header.hero .btn:hover {
  background-color: var(--bs-tertiary); /* Change color on hover for desktop */
}

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

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
  header.hero h1 {
    font-size: 2.5rem;
  }
  header.hero p {
    font-size: 1.2rem;
  }
  header.hero .btn {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    color: #fff; /* White text */
    background-color: var(--bs-secondary); /* Use secondary color for more contrast */
    border: none; /* Remove border if not needed */
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  header.hero .btn:hover {
    background-color: var(--bs-tertiary); /* Change to tertiary or another contrasting color on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px); /* Slight raise effect */
  }
  
  /* Ensure the button text stays white on hover */
  header.hero .btn:hover {
    color: #fff;
  }
}
/* Ensures accordion button text is white */
.accordion-button {
  color: var(--bs-background) !important;
  background-color: var(--bs-primary) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-background) !important;
}

.accordion-button.collapsed {
  background-color: var(--bs-primary) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  /* Adjustments for all smaller screens, not repeated to avoid redundancy */
  .cta-section {
    padding: 1.5rem 1rem;
  }

  .cta-section .btn-primary {
    padding: 10px 25px;
    font-size: 1em;
    border-radius: 25px;
  }

  .cta-heading {
    font-size: 1.5rem;
    font-family: 'Roboto Condensed', sans-serif;
  }

  .icon-container {
    padding: 10px;
  }

  footer {
    padding: 1rem 0;
  }

  .navbar .btn-primary {
    padding: 0.375rem 0.75rem;
  }

  body {
    font-size: 0.9rem;
  }

  .navbar-nav .nav-link {
    padding: 0.25rem 1rem;
    margin-right: 15px;
  }

  .navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
  }
}

/* Further responsive adjustments for very small screens */
@media (max-width: 576px) {
  .cta-section .btn-primary {
    padding: 8px 20px;
    font-size: 0.8em;
  }

  .cta-heading {
    font-size: 1.25rem;
  }

  .navbar .btn-primary {
    font-size: 0.8rem;
  }
}

/* Make sure buttons are fully visible and easily clickable on all devices */
.btn-primary {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ensure navbar items are responsive and don't overflow on small screens */
.navbar-nav .nav-link:hover {
  color: var(--bs-secondary);
}

.navbar .btn-outline-light, .navbar .btn-outline-light:hover {
  border-width: 2px;
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}

.disclaimer {
  font-size: 0.9em; /* Smaller font size */
  color: #f8f9fa; /* Light color for readability */
  margin-top: 20px; /* Space above the disclaimer */
  margin-bottom: 20px; /* Space below the disclaimer */
  line-height: 1.4; /* Line height for better readability */
  text-align: center; /* Center-aligned text */
}

.highlight-feature {
  color: var(--bs-primary); /* Or any color that matches your theme and stands out */
  font-weight: bold;
  font-size: 1.1em;
}

.feature-row {
  overflow: hidden;
  transition: background-color 0.5s ease;
}



video.img-fluid {
  width: 100%;
  height: auto;
}

.text-side {
  padding: 40px; /* Adjust padding as needed */
  color: white; /* Adjust text color based on background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adjust the color and size as needed */
}

.feature-title {
  font-size: 1.8rem; /* Larger size for titles */
  margin-bottom: 20px; /* Spacing after the title */
  color: white; /* Inherits color from parent */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Example shadow */
  font-weight: 700; /* Bold for feature titles */


}

.feature-description {
  font-family: 'Roboto Serif', serif;
  font-size: 1.2em; /* Readable text size */
  margin-bottom: 30px; /* Spacing before the button */
  line-height: 1.6; /* For better readability */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Example shadow */
  color: white;
}

.feature-btn {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent button */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
  color: white; /* Text color */
  padding: 10px 20px; /* Button padding */
  border-radius: 5px; /* Rounded corners */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.feature-btn:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Slightly darker on hover */
  border-color: white; /* Solid border on hover */
  color: var(--bs-primary); /* Text color change on hover */
}

/* Initial state for animatable elements */
.feature-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* State when element is visible */
.feature-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .text-side {
      padding: 20px; /* Less padding on smaller screens */
  }
}
@media screen and (max-width: 768px) {
  .navbar-nav .nav-item .nav-link {
      font-size: 16px; /* Adjust font size */
      padding: 10px 15px; /* Adjust padding */
      /* Add more styling as needed */
  }
}
