/* Base Styles */
.navbar-collapse a {
  visibility: visible !important;
}

.bg-orange {
  background:linear-gradient(45deg, #0F5132, #FF9500); /* Replace with your desired orange color */
  color: #FFFFFF; /* Optional: Set text color to white for contrast */
  background-size: 200% 200%; /* Make the gradient more dynamic */
  animation: metallic 3s infinite alternate; /* Subtle animation for a metallic shine */

}

.bg-green {
  background: linear-gradient(135deg, #2e2e2e, #4a4a4a, #2e2e2e); /* Gradient for metallic effect */
  background-size: 200% 200%; /* Make the gradient more dynamic */
  animation: metallic 3s infinite alternate; /* Subtle animation for a metallic shine */

  /* Optional: Add a subtle texture using a semi-transparent pattern */
  background-blend-mode: overlay;
  position: relative;
  color: white;
  padding: 20px;
  border-radius: 8px; /* Smooth corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); 
}
@keyframes metallic {
  0% {
      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}
/*Back To Top*/
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  /* Use flex to center the icon both horizontally + vertically */
  display: flex;
  align-items: center;
  justify-content: center;
  
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: none; /* Hidden by default */
  background: linear-gradient(45deg, #0F5132, #FF9500);
  color: white;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0;
}

#backToTop.show {
  display: block;
  opacity: .8;
  transform: scale(1);
}

#backToTop.hide {
  opacity: 0;
  transform: scale(0.8);
}

/* Navbar links */
.nav-item {
  color: #FFFFFF; /* White links for black background */
}
.navbar-toggler {
  background: linear-gradient(45deg, #0F5132, #FF9500);
  color: white;
  background-size: 200% 200%; /* Make the gradient more dynamic */
  animation: metallic 3s infinite alternate; /* Subtle animation for a metallic shine */

}

body {
  font-family: 'Positivus', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF; /* White background */
  color: #000000; /* Black text */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  /*padding: 20px 40px;*/
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
}

header img {
  width: 100px;
  height: auto;
}

header button {
  background-color: #0F5132;
  color:linear-gradient(45deg, #0F5132, #FF9500);
  border: 2px solid #0F5132;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
}

header button:hover {
  background-color: #FFFFFF;
  color: #0F5132;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.hero a {
  background-color: #ff9500; /* Green button */
  color: #FFFFFF;
  border: 2px solid #0F5132;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}

.hero a:hover {
  background-color: #FFFFFF;
  color: #0F5132;
  border-color: #ff9500;
}
.testimonial-container {
  background: #f5f5f5; /* Light grey background to match the rest of your page */
  border-radius: 8px; /* Rounded corners for a modern look */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  padding: 20px; /* Add spacing inside the container */
  margin: 20px auto; /* Center the container with margin */
  max-width: 800px; /* Limit the width for better readability */
}

.testimonial {
  font-size: 1.2rem; /* Readable font size */
  line-height: 1.8; /* Increased line height for better spacing */
  color: #333333; /* Dark grey text for modern appearance */
  font-weight: 400; /* Normal font weight */
  text-align: justify; /* Align text for clean edges */
}

/* Services Section */
.services {
    max-width: 1200px; /* Adjust based on your design preferences */
    margin-left: auto;
    margin-right: auto;
    background: #f5f5f5;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.services-block {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; /* Space between service cards */
    justify-content: center;
    width: 100%;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0F5132;
  margin-bottom: 20px;
}

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

.service-item {
  background: #f5f5f5;
  border: 2px solid #E0E0E0;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.service-item:hover {
  border: 2px solid #0F5132; /* green border on hover */
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
}



/* About Us Section */
.about-us {
  margin-left: auto;
  margin-right: auto;
  background: #f5f5f5;
  border: 2px solid #E0E0E0;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.about-us h2 {
  background:linear-gradient(45deg, #0F5132, #FF9500); /* Replace with your desired orange color */
  background-size: 200% 200%; /* Make the gradient more dynamic */
  animation: metallic 3s infinite alternate; /* Subtle animation for a metallic shine */ /* Two-tone green and grey gradient */
  border-radius: 7px; /* Smooth rounded corners */
  padding: 5px 10px; /* Add spacing around the content */
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between inner elements */
  align-items: flex-start; /* Align items to the left */
  justify-content: flex-start; /* Align content to the top */
  flex-shrink: 0;
  position: relative;
  color: #FFFFFF;

  /* Add smooth hover transitions */
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-us h2::after {
  background: linear-gradient(90deg, #333333, #0f5132); /* Reverse gradient on hover */
  transform: scale(1.05); /* Slightly enlarge for a hover effect */
}




.about-us p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 20px;
}

.about-us a {
  background-color: #ff9500; /* Orange button */
  color: #FFFFFF;
  border: 2px solid #0F5132;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}

.about-us a:hover {
  background-color: #FFFFFF;
  color: #ff9500;
  border-color: #0F5132;
}

/* Footer */


/* Button Global Styles */
button {
  transition: all 0.3s ease;
}

/*services*/
.label {
  background:linear-gradient(45deg, #0F5132, #FF9500); /* Replace with your desired orange color */
  color: #FFFFFF; /* Optional: Set text color to white for contrast */
  background-size: 200% 200%; /* Make the gradient more dynamic */
  animation: metallic 3s infinite alternate; /* Subtle animation for a metallic shine */ /* Two-tone grey and orange gradient */
  border-radius: 7px;
  padding: 5px 10px; /* Adjusted padding for better spacing */
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;

  /* Add transition for hover effect */
  transition: background 0.3s ease, transform 0.3s ease;
}

.label:hover {
  background:linear-gradient(45deg, #0F5132, #FF9500); /* Replace with your desired orange color */
  color: #FFFFFF; /* Optional: Set text color to white for contrast */
  background-size: 200% 200%; /* Make the gradient more dynamic */
  animation: metallic 3s infinite alternate; /* Subtle animation for a metallic shine */ /* Reverse gradient on hover */
  transform: scale(1.05); /* Slightly enlarge for interactivity */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .label {
    gap: 8px; /* Reduce gap for smaller screens */
    padding: 5px 8px;
  }
}

@media (max-width: 480px) {
  .label {
    gap: 6px; /* Further reduce gap for mobile devices */
    padding: 3px 6px;
  }
}

@media (max-width: 576px) {
  .navbar-brand span {
      display: none; /* Hide brand text on very small screens */
  }
}
.label2 {
  color: #f3f3f3;
  text-align: left;
  font-family: var(--h3-font-family, "SpaceGrotesk-Medium", sans-serif);
  font-size: var(--h3-font-size, 30px);
  font-weight: var(--h3-font-weight, 500);
  line-height: inherit;
  position: relative;
}
/*Services Section*/

/* Figma Styles of your File */
:root {
  /* Colors */
  --green: #0f5132;
  --grey: #f3f3f3;
  --dark: #191a23;
  --black: #000000;

  /* Fonts */
  --p-font-family: SpaceGrotesk-Regular, sans-serif;
  --p-font-size: 18px;
  --p-line-height: normal;
  --p-font-weight: 400;
  --p-font-style: normal;
  --h4-font-family: SpaceGrotesk-Medium, sans-serif;
  --h4-font-size: 20px;
  --h4-line-height: normal;
  --h4-font-weight: 500;
  --h4-font-style: normal;
  --h1-font-family: SpaceGrotesk-Medium, sans-serif;
  --h1-font-size: 60px;
  --h1-line-height: normal;
  --h1-font-weight: 500;
  --h1-font-style: normal;
  --h2-font-family: SpaceGrotesk-Medium, sans-serif;
  --h2-font-size: 40px;
  --h2-line-height: normal;
  --h2-font-weight: 500;
  --h2-font-style: normal;
  --h3-font-family: SpaceGrotesk-Medium, sans-serif;
  --h3-font-size: 30px;
  --h3-line-height: normal;
  --h3-font-weight: 500;
  --h3-font-style: normal;
  --h1-mob-font-family: SpaceGrotesk-Medium, sans-serif;
  --h1-mob-font-size: 43px;
  --h1-mob-line-height: normal;
  --h1-mob-font-weight: 500;
  --h1-mob-font-style: normal;
  --h2-mob-font-family: SpaceGrotesk-Medium, sans-serif;
  --h2-mob-font-size: 36px;
  --h2-mob-line-height: normal;
  --h2-mob-font-weight: 500;
  --h2-mob-font-style: normal;
  --h3-mob-font-family: SpaceGrotesk-Medium, sans-serif;
  --h3-mob-font-size: 26px;
  --h3-mob-line-height: normal;
  --h3-mob-font-weight: 500;
  --h3-mob-font-style: normal;
  --h4-mob-font-family: SpaceGrotesk-Medium, sans-serif;
  --h4-mob-font-size: 18px;
  --h4-mob-line-height: normal;
  --h4-mob-font-weight: 500;
  --h4-mob-font-style: normal;
  --p-mob-font-family: SpaceGrotesk-Regular, sans-serif;
  --p-mob-font-size: 16px;
  --p-mob-line-height: 24px;
  --p-mob-font-weight: 400;
  --p-mob-font-style: normal;

  /* Effects */
}
/* Page wrappers — moved here from per-page <style> blocks. Revisit in the redesign. */
html, body {
  height: 100%;
  margin: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background-color: #f5f5f5;
}

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

/* Privacy page */
.scrollable-content {
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
  background-color: #fff;
}
