:root {
  --color-primary: #28a745;
  --color-primary-hover: #218838;
  --color-secondary: rgb(237, 251, 226);
  --color-tertiary: rgba(55, 60, 51, 0.9);
  --color-gray-green: #2f3b40;
  --color-bright-green: #54b435;
  --color-bright-green-hover: #379237;
  --color-white: #fff;
  --color-footer-bg: rgb(13, 18, 31);
  --color-light-gray: #f5f5f5;
  --color-mid-gray: #666;
  --color-black: #333;
}

body {
}

.wrapper {
  overflow: hidden;
}

/* Style for the notification banner */
.status-banner {
  position: fixed;
  top: 20px;
  right: -100%;
  width: 100%;
  max-width: 400px;
  background-color: #28a745; /* Green by default (success) */
  color: white;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  z-index: 9999;
  font-size: 16px;
  transition: right 5 ease;
}

.status-banner.error {
  background-color: #dc3545; /* Red for errors */
}

/* Show the banner with a slide-in effect */
.status-banner.show {
  right: 20px;
}

/* Remove default select styles and make it look like plain text */
.language-select {
  appearance: none; /* Removes dropdown appearance */
  -webkit-appearance: none; /* Safari support */
  -moz-appearance: none; /* Firefox support */
  background: transparent; /* Removes background */
  border: none; /* Removes border */
  color: inherit; /* Inherits text color from navbar */
  font: inherit; /* Inherits font styles */
  cursor: pointer; /* Pointer cursor for interactivity */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
}

.lang_dropdown:focus {
  border: none;
  outline: none; /* Removes focus outline */
}

.link-button {
  background: none;
  border: none;
  color: var(--color-tertiary); /* Same color as a typical link */
  text-decoration: underline; /* Makes it look like a link */
  cursor: pointer; /* Changes the cursor to a pointer */
  padding: 0; /* Removes padding to make it similar to a link */
  font-size: inherit; /* Matches the surrounding text size */
}

.service-modal ul {
  list-style: none;
  padding-left: 0;
}

.service-modal ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}

.service-modal ul li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #54b435;
  font-size: 1rem;
}

.lang_dropdown {
  appearance: none; /* Removes dropdown appearance */
  -webkit-appearance: none; /* Safari support */
  -moz-appearance: none;
  border-width: 0.4px;
  border-color: rgba(0, 0, 0, 0.1);
  background: transparent;
}

.icon-green {
  color: #28a745;
}

.social-icon-footer {
  color: rgb(237, 251, 226);
}

.text-hinder-dark-green {
  color: rgba(55, 60, 51, 0.9);
}

.contact-right a {
  color: #2f3b40;
  text-decoration: none;
}

.bg-hinder-dark-green {
  background: rgba(55, 60, 51, 0.9);
}

.btn-hinder {
  background-color: #54b435;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Custom styling */
.navbar {
  background: transparent !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
}

.navbar-dark .navbar-nav .btn-green {
  background-color: #28a745;
  color: white;
}

.navbar-dark .navbar-nav .btn-green:hover {
  background-color: #218838;
}

.navbar-dark .navbar-nav .nav-link {
  color: #edfbe2;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: white;
}

.scrolled {
  background: rgba(
    55,
    60,
    51,
    0.9
  ) !important; /* Adjust to your desired color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero .content {
  max-width: 600px;
}

.btn-green {
  background-color: #28a745;
  color: white;
}

.btn-green:hover {
  background-color: #218838;
}

.bg-green-secondary {
  background: rgb(237, 251, 226);
}

.section-newsdetail {
  text-align: left;
  padding: 50px 200px;
  background-color: white;
}

.section-about {
  text-align: center;
  padding: 50px 20px;
  background-color: white;
}

.services-section {
  text-align: center;
  padding: 50px 20px;
  background-color: rgb(237, 251, 226);
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Grid Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Service Section Styling */
.service-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem; /* Responsive gap */
  padding: 2rem;
}

/* Card Styles */
.service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Gradient-filled icons */
.icon {
  font-size: 50px;
  color: transparent; /* Start transparent for gradient */
  background: linear-gradient(
    45deg,
    #34d399,
    #10b981,
    #047857
  ); /* Gradient for the icon */
  -webkit-background-clip: text; /* Clip background to text */
  background-clip: text;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.2); /* Icon grows slightly on hover */
  background: linear-gradient(
    45deg,
    #10b981,
    #047857,
    #065f46
  ); /* Darker gradient on hover */
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.service-card button {
  margin-top: auto; /* Ensures buttons align at the bottom */
}

.bg-blue {
  background: rgb(47, 59, 64);
  color: white;
}

/* ABOUT SECTION */
/* General Section Styling */
.about-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  font-family: "Roboto", sans-serif;
  color: #333;
}

.about-section-detail {
  background-color: #f5f5f5;
  padding: 20px 20px;
  font-family: "Roboto", sans-serif;
  color: #333;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Profile Image Styling */
.about-image img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Details Styling */
.about-details {
  flex: 1;
  text-align: left;
  min-width: 300px;
}

.about-name {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2f3b40;
  margin-bottom: 5px;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: black;
  margin-bottom: 15px;
}

.about-summary {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.divider {
  width: 50px;
  height: 4px;
  background-color: #54b435;
  margin: 20px 0;
}

/* Content Sections */
.about-content h3 {
  font-size: 1.5rem;
  color: #2f3b40;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
}

.about-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}

.about-content ul li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #54b435;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

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

  .about-image img {
    width: 200px;
  }
}

/* CONTACT ME  */

/* General Styling */
.contact-section {
  background: linear-gradient(to bottom, #f5fff5, #edfbe2);
  padding: 60px 20px;
  font-family: "Roboto", sans-serif;
}

.contact-section.white {
  background: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-left h2,
.contact-right h2 {
  font-size: 1.8rem;
  color: #2f3b40;
  margin-bottom: 20px;
}

/* Form Styling */
.contact-form {
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form button {
  background-color: #54b435;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #379237;
}

/* Map Styling */
.contact-map {
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

/* Contact Info Styling */
.contact-right .contact-heading {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2f3b40;
  font-weight: 500;
}

.contact-right p {
  margin: 10px 0;
  font-size: 1rem;
  color: #555;
}

.contact-tollfree {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #2f3b40;
}

.contact-right h3 {
  color: #54b435;
  font-size: 1.8rem;
}

/* Call-to-Action Section */
.contact-cta {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-cta h2 {
  font-size: 1.8rem;
  color: #2f3b40;
  margin-bottom: 15px;
}

.contact-cta p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #54b435;
  color: #fff;
  padding: 10px 25px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #379237;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    text-align: center;
  }
}

/* Footer Styles */
.footer {
  background-color: var(--color-footer-bg);
  color: #fff;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  text-align: left;
}

.footer-logo {
  text-align: left;
}

.footer-logo-img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials .social-icon {
  font-size: 1.2rem;
  color: #54b435;
  margin-right: 10px;
  text-decoration: none;
}

.footer-socials .social-icon:hover {
  color: #379237;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #54b435;
  text-decoration: none;
}

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

.modal-header {
  border-bottom: 2px solid #f1f1f1;
}

.modal-content {
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

.modal-footer {
  border-top: 2px solid #f1f1f1;
}

.modal-footer .btn-success {
  font-weight: 600;
  background-color: #54b435;
  border-color: #54b435;
  transition: background-color 0.3s ease;
}

.modal-footer .btn-success:hover {
  background-color: #379237;
  border-color: #379237;
}

.text-hinder {
  color: #54b435;
}
