/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Hero Section */
.hero-section {
  background-color: #1c3330;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.hero-section .btn {
  background-color: #7e4a33;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
}

.hero-section .btn:hover {
  background-color: #6a3d2a;
}

/* Framework Section */
/* Unique Framework Section */
.unique-framework-section {
  padding: 80px 0;
  background-color: #f7e9d6;
}

.unique-framework-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1c3330;
  margin-bottom: 20px;
}

.unique-framework-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.unique-framework-section ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.unique-framework-section ul li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.validation-badge {
  text-align: center;
  margin-top: 30px;
}

.validation-badge img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.validation-badge p {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}




/* Responsive Styles */
@media (max-width: 768px) {
  .unique-framework-section h2 {
    font-size: 2rem;
  }

  .unique-framework-section p {
    font-size: 1rem;
  }

  .unique-framework-section ul li {
    font-size: 0.9rem;
  }

  .validation-badge img {
    width: 60px;
  }
}

/* Clients Section */
/* Clients Section */
.clients-section {
  background-color: #f7e9d6;
  padding: 50px 20px;
  text-align: center;
}

.clients-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1c3330;
}

.clients-section .logo {
  width: 150px;
  height: 150px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clients-section .logo img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 50%;
}

.clients-section .logo:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1c3330;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Custom Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(28, 51, 48, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .clients-section .logo {
    width: 120px;
    height: 120px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

/* Partners Section */
.partners-section {
  padding: 50px 20px;
  background-color: #f7e9d6;
  text-align: center;
}

.partners-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.partners-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.partners-carousel {
  display: flex;
  animation: scrollLeft 20s linear infinite;
}

.partner-item {
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 16px;
  margin: 0 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .clients-section .logo {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }

  .partner-item {
    width: 120px;
    height: 80px;
  }
}

.form-control {
  margin: 10px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background-color: #f7e9d6; /* Soft background color */
}

.contact-form-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1c3330; /* Dark green for headings */
  margin-bottom: 20px;
  text-align: center;
}

.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-container .form-control {
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  font-size: 1rem;
  color: #333;
}

.form-container .form-control:focus {
  border-color: #7e4a33; /* Dark brown for focus */
  box-shadow: 0 0 5px rgba(126, 74, 51, 0.5);
}

.form-container textarea {
  resize: vertical;
}

.btn-custom {
  background-color: #7e4a33; /* Dark brown for buttons */
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;

  align-items: center;
  justify-content: center;
}

.btn-custom:hover {
  background-color: #6a3d2a; /* Slightly darker brown on hover */
}

/* Map Styling */
.contact-form-section iframe {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-form-section h2 {
    font-size: 2rem;
  }

  .form-container {
    margin-bottom: 30px;
  }

  .contact-form-section iframe {
    height: 300px;
  }
}

/* Custom CSS for the section */
.unique-framework {
  padding: 60px 0; /* Add padding to the section */
  background-color: #f9f9f9; /* Light background color */
  text-align: center; /* Center-align text */
}

.unique-framework h2 {
  font-size: 2.5rem; /* Large font size for the main title */
  color: #1c3330; /* Dark text color */
  margin-bottom: 20px; /* Space below the title */
}

.unique-framework .description {
  font-size: 1.2rem; /* Font size for the description */
  color:#1c3330; /* Medium gray text color */
  max-width: 800px; /* Limit the width of the description */
  margin: 0 auto 40px; /* Center the description and add space below */
}

.unique-framework h3 {
  font-size: 2rem; /* Font size for the subsection title */
  color: #1c3330; /* Dark text color */
  margin-bottom: 20px; /* Space below the subsection title */
}
/* Search Container */
.search-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 40px; /* Initial width for the search icon */
  transition: all 0.3s ease;
}

/* Search Icon */
.search-icon {
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff; /* White color for the icon */
  transition: color 0.3s ease;
}

.search-icon:hover {
  color: #7e4a33; /* Dark brown on hover */
}

/* Search Bar */
.search-container .form-control {
  width: 0;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 14px;
  margin-left: 10px;
  transition: width 0.3s ease;
  display: none; /* Initially hidden */
}

/* Expanded Search Bar */
.search-container.expanded {
  max-width: 100%; /* Full width when expanded */
}

.search-container.expanded .form-control {
  width: 200px; /* Adjust width as needed */
  display: block; /* Show the search bar */
}


/* Search Container */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* Suggestions List */
#suggestions {
  position: absolute;
  top: 100%; /* Position below the search bar */
  left: 0;
  right: 0;
  background-color: #fff; /* White background */
  border: 1px solid #ddd; /* Light border */
  border-radius: 4px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  z-index: 1000; /* Ensure it appears above other elements */
  display: none; /* Initially hidden */
  margin-top: 5px; /* Space between search bar and suggestions */
  padding: 0; /* Remove default padding */
  list-style: none; /* Remove bullet points */
}

#suggestions li {
  padding: 10px;
  cursor: pointer;
  color: #000; /* Black text */
  border-bottom: 1px solid #eee; /* Separator between items */
}

#suggestions li:hover {
  background-color: #f8f9fa; /* Light gray on hover */
}

#suggestions li:last-child {
  border-bottom: none; /* Remove border for the last item */
}

#suggestions li {
  text-align: left !important; /* Force left alignment */
}

#suggestions {
  list-style-type: none; /* Remove bullet points */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
  max-height: 300px; /* Limit height to show only 5 items */
  overflow-y: auto; /* Add scrollbar for extra items */
  border: 1px solid #ccc; /* Optional: Add border for better visibility */
  width: 300px; /* Optional: Set a fixed width */
}

#suggestions li {
  padding: 8px; /* Add padding to list items */
  border-bottom: 1px solid #eee; /* Optional: Add separator between items */
}

#suggestions li:last-child {
  border-bottom: none; /* Remove border for the last item */
}

/* Change cursor for dropdown toggle links */
.navmenu .dropdown-toggle {
  cursor: pointer; /* Change to pointer */
}

/* Change cursor for dropdown items */
.navmenu .dropdown-item {
  cursor: pointer; /* Change to pointer */
}


/* Hide the div by default on all screens */
.mobile-only {
  display: none;
}

/* Show the div only on mobile screens (typically less than 768px) */
@media only screen and (max-width: 1195px) {
  .mobile-only {
    display: block; /* or inline, inline-block, flex, etc., depending on your needs */
  }
}


/* Hide the div by default on all screens */
.desktop-only {
  display: none;
}

/* Show the div only on desktop screens (typically 768px and above) */
@media only screen and (min-width: 1196px) {
  .desktop-only {
    display: block; /* or inline, inline-block, flex, etc., depending on your needs */
  }
}

.nav-hero-a:active {
  background-color: transparent !important;
}

/* For mobile browsers */
.nav-hero-a {
  -webkit-tap-highlight-color: transparent;
}