@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
}

.navbar {
  width: 100%;
}
.navbar-brand img {
  width: 120px;
}
.navbar-nav .nav-link {
  color: #293546;
  margin: 0 15px;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
  color: #ff5722;
}

.search-bar {
  flex-grow: 1; /* Allow the search bar to take up available space */
  max-width: 600px; /* Set a maximum width */
  margin: 0 20px; /* Add some margin for spacing */
}
#btn-details {
  background-color: #ff5722;
  color: white;
}
#btn-details:hover {
  background-color: #e89c1e;
}
.input-group {
  display: flex; /* Use flexbox to align items */
}
.form-group {
  margin-top: 10px;
  margin-bottom: 10px;
}
.form-control {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.btn-submit {
  background-color: #041e42;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: #03316c;
}
.delete-account-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}
.delete-account-card h2 {
  color: #dc3545; /* Bootstrap danger color */
}
.delete-account-card p {
  color: #6c757d; /* Bootstrap muted color */
}
.product-list {
  margin-top: 40px;
}
.product-list table {
  width: 100%;
}
.product-list th,
.product-list td {
  padding: 10px;
  text-align: left;
}
.product-list th {
  background-color: #f8f9fa;
}
.product-list tr:nth-child(even) {
  background-color: #f2f2f2;
}
#btn-my-orders {
  background-color: #ff5722;
  color: white;
}
#btn-add-product {
  background-color: #03316c;
  color: #f8f9fa;
}
.delete-acc {
  font-size: 20px;
}
.delete-text {
  font-size: 13px;
}
.profile-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.search-bar input {
  flex: 1; /* Allow input to take available space */
  padding: 8px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 20px 0 0 20px; /* Rounded corners on the left */
  font-size: 14px;
  border: 1px solid #ff5722;
}

.search-bar button {
  color: black; /* Text color */
  border: none;
  padding: 8px 12px; /* Ensure padding for the button */
  cursor: pointer; /* Pointer cursor on hover */
}
.search-container {
  display: grid; /* Use grid layout */
  grid-template-columns: 1fr auto; /* Allow the search bar to take available space, button auto */
  align-items: center; /* Center items vertically */
}

.search-bar {
  padding: 10px; /* Add some padding */

  border-radius: 4px; /* Rounded corners */
  width: 100%; /* Full width */
}

/* Optional: Add hover effects */
.search-button:hover {
  background-color: #f1430e; /* Darker blue on hover */
}
@media (max-width: 1425px) {
  .navbar {
    flex-direction: column; /* Stack items vertically if needed */
    padding: 10px; /* Adjust padding */
  }

  .navbar-nav {
    margin-top: 10px; /* Add spacing between nav items */
  }

  .search-bar {
    width: 100%; /* Ensure search bar takes full width */
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .search-bar {
    margin: 10px 0; /* Reduce margin on smaller screens */
  }
  .search-bar input {
    padding: 6px 10px; /* Adjust padding for smaller screens */
  }
  .search-bar button {
    padding: 6px 10px; /* Adjust button padding */
  }
}
.header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #e6e6e6;
}
.header h1 {
  font-size: 36px;
  color: #333;
  font-weight: 700;
  text-align: center;
}
.main-content {
  padding: 20px 0;
  text-align: center;
}
.main-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.text-content {
  margin-top: 20px;
}
.text-content p {
  font-size: 18px;
  color: #333;
}
.card-group {
  display: flex;
  flex-wrap: wrap;
}
.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.info-item {
  text-align: center;
  max-width: 200px;
}

.info-item img {
  max-width: 100%;
  height: auto;
}

.info-item p {
  margin-top: 10px;
  font-size: 16px;
}

@media (max-width: 576px) {
  .info-section {
    flex-direction: column;
    align-items: center;
  }

  .info-item {
    max-width: 100%;
  }

  .info-item img {
    width: 80px; /* Adjust image size for small screens */
  }

  .info-item p {
    font-size: 14px; /* Slightly reduce text size */
  }
}
.card {
  flex: 1;
  margin: 10px;
  display: flex;
  flex-direction: column;
}

.card-img-top {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  flex-grow: 1;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Aligns the text content to the bottom */
}

/* Ensure all images have the same height */
.card img {
  height: 300px; /* Adjust this height as needed */
  object-fit: cover;
}
.latest-added,
.newsletter,
.instagram,
.how-it-works {
  background-color: white;
  padding: 20px 0;
  text-align: center;
}
.latest-added h2,
.newsletter h2,
.instagram h2,
.how-it-works h2 {
  font-size: 28px;
  color: #ff5722;
  font-weight: 700;
}
.latest-added .card-group,
.how-it-works .step {
  margin-top: 20px;
}
.newsletter input[type="email"] {
  width: 70%;
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  font-size: 16px;
}
.newsletter button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #ff5722;
  color: #fff;
  font-size: 16px;
}

.how-it-works .step {
  margin: 20px 0;
}
.how-it-works .step-icon {
  font-size: 40px;
  color: #ff5722;
}
.how-it-works .step-content {
  margin-top: 10px;
}
.how-it-works .step-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.how-it-works .step-description {
  font-size: 16px;
  color: #666;
}
/* Footer Styles */

footer {
  background-color: #f6f5f5;
  border-top: 1px solid #f1430e;
  color: black;
  padding: 0 0;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
footer h3 {
  font-size: 18px;
  font-weight: 700;
}
.fab footer h3,
footer h5 {
  color: #f1430e; /* Headings */
  font-weight: bold;
  font-size: 1.25rem; /* Slightly larger for better visibility */
  margin-bottom: 1rem;
}
footer a {
  font-size: 13px;
}
footer p,
footer a {
  color: #111827;
  line-height: 1.6;
  font-size: 15px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ff5722; /* Tailwind's text-blue-400 */
  text-decoration: underline;
}

/* Grid Layout */
footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

footer .flex {
  display: flex;
  align-items: center;
}

footer .space-x-4 > *:not(:last-child) {
  margin-right: 1rem;
}

/* Social Media Icons */
footer .fab {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

footer .fab:hover {
  transform: scale(1.1);
}

/* Buttons */
footer button {
  background-color: #3b82f6; /* Tailwind's bg-blue-500 */
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

footer button:hover {
  background-color: #2563eb; /* Tailwind's bg-blue-600 */
  transform: translateY(-2px);
}

/* Input Fields */
footer input {
  background-color: #374151; /* Tailwind's bg-gray-700 */
  color: #ffffff;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  width: 100%;
}

footer input::placeholder {
  color: #9ca3af; /* Tailwind's text-gray-500 */
}

/* Borders and Dividers */
footer .border-t {
  border-top: 1px solid #374151; /* Tailwind's border-gray-700 */
}

footer .bg-gray-900 {
  background-color: #111827; /* Tailwind's bg-gray-900 */
  padding: 2rem 1rem;
}

/* List Styles */
footer ul {
  list-style: none; /* Remove dots from lists */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

footer li {
  margin-bottom: 0.5rem; /* Add space between list items */
}

/* Responsive Design */
@media (min-width: 768px) {
  footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  footer .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: #3b579d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon i {
  font-size: 25px;
  color: white;
}

.social-icon.instagram {
  background-color: #c13584;
}
.social-icon.youtube {
  background-color: #ff0000;
}
.social-icon.linkedin {
  background-color: #0077b5;
}
/* filter */
.dropdown-menu a {
  display: flex;
  justify-content: center; /* Centers items horizontally */
  align-items: center;
}

/* Adjust the flag icon size and spacing */
.dropdown-menu img {
  width: 24px;
  height: auto;
  margin-right: 8px;
}

/* Optional: Style for hover effect on flags */
.dropdown-menu a:hover {
  background-color: #03396c;
}
.btn-filter {
  width: 100%; /* Make it full width by default */
  max-width: 250px; /* Restrict max width */
  height: 35px;
  background-color: #ff5722;
  color: white;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-filter:hover {
  background-color: #e89c1e;
  color: #03396c;
}
#btn-details {
  background-color: #ff5722;
  color: white;
}
#btn-details:hover {
  background-color: #e89c1e;
}
.dropdown-item {
  display: flex;
  align-items: center;
}
.dropdown-item img {
  margin-right: 8px;
}
select option:hover {
  background-color: red;
  color: white; /* Optional: change text color for contrast */
}
.filter-section label {
  display: block;
  margin: 10px 0;
}
.badges-container {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.badge {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 5px;
}

.fast-delivery {
  background: linear-gradient(45deg, #34d1bf, #11998e);
}

.free-cargo {
  background: linear-gradient(45deg, #ff6b6b, #d63b3b);
}

.badge i {
  margin-right: 5px;
}
.pagination .page-item.active .page-link {
  background-color: #ff5722; /* Background color for active page */
  color: #fff; /* White text for active page */
  border-color: #ff5722;
}
.text-danger {
  color: red; /* Change color of old price */
}

.text-success {
  color: green; /* Change color of discounted price */
  font-weight: bold; /* Ensure the discounted price is bold */
}
.dropdown-menu a:hover {
  background-color: #03396c;
}

.flag-dropdown .dropdown-menu {
  min-width: unset !important; /* Unset any minimum width */
  max-width: 70px !important; /* Set a maximum width */
  width: 70px !important; /* Force the width to your desired value */
  width: 70px !important; /* Force the width to 50px */
  background-color: #041e42 !important;
  border: none;
  padding: 0 !important; /* Force padding to be zero */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.flag-dropdown .dropdown-item {
  padding: 5px 0 !important; /* Force smaller padding */
  text-align: center !important; /* Force center alignment */
}

.flag-dropdown .dropdown-item img {
  width: 20px !important; /* Ensure flag size is enforced */
  height: 15px !important;
}

.flag-dropdown .dropdown-item:hover {
  background-color: #03396c !important;
}

.shop-container {
  padding: 20px;
}
.filter {
  border-right: 1px solid #e6e6e6;
  padding: 20px;
}
.filter h3 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
}
.filter label {
  display: block;
  margin: 10px 0 5px;
  font-size: 16px;
  color: #333;
}
.filter input[type="checkbox"],
.filter input[type="radio"] {
  display: none; /* Hide default checkboxes and radio buttons */
}
.filter input[type="checkbox"] + label,
.filter input[type="radio"] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
}
.filter input[type="checkbox"] + label::before,
.filter input[type="radio"] + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  background-color: #fff;
  border-radius: 4px;
}
.filter input[type="checkbox"]:checked + label::before,
.filter input[type="radio"]:checked + label::before {
  background-color: red; /* Red background when checked */
  border-color: red;
}
.filter input[type="checkbox"]:checked + label::after,
.filter input[type="radio"]:checked + label::after {
  content: "\2713"; /* Checkmark symbol */
  position: absolute;
  left: 4px;
  top: 2px;
  font-size: 16px;
  color: #fff;
}
.filter input[type="radio"]:checked + label::after {
  content: "\2022"; /* Dot for radio button */
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 5px;
  top: 2px;
}
.filter .price-range {
  margin: 10px 0;
}
.filter .price-range label {
  display: block;
  margin-bottom: 5px;
}

select option:hover {
  background-color: #ff5722 !important;
  color: #fff !important; /* Ensure text color is readable */
}

/* Ensure consistent background color for selected option */
select option:checked {
  background-color: #ff5722 !important;
  color: #fff !important; /* Ensure text color is readable */
}
.dropdown-menu {
  margin-top: 10px; /* Moves dropdown below icon */
}

.dropdown-menu-right {
  bottom: -10px; /* Ensures dropdown stays aligned properly */
}

/* Apply the styles when the dropdown is focused */
select:focus option:hover {
  background-color: #ff5722 !important;
  color: #fff !important; /* Ensure text color is readable */
}
.select2-container .select2-selection--single {
  height: 34px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 21px;
  color: #333;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 32px;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #ff5722;
  color: #fff;
}

/* Left sidebar */
.filter-sidebar {
  background-color: #ff5722;
  padding: 20px;
  color: white;
  flex: 1;
}

/* Right side product area */
.product-display {
  background-color: #e6e6e6;
  padding: 20px;
  flex: 3;
}

/* Slider styling */
.price-range-bar {
  width: 100%;
  appearance: none;
  height: 8px;
  background: linear-gradient(to right, #ff5722, #e6e6e6);
  outline: none;
  border-radius: 5px;
  cursor: pointer;
}

.price-range-bar::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ff5722;
  border-radius: 50%;
  cursor: pointer;
}

.price-range-bar::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ff5722;
  border-radius: 50%;
  cursor: pointer;
}

.products {
  padding: 20px;
}
.product-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.product-card img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: auto;
}
.product-card .card-body {
  padding: 15px;
}
.product-card .card-title {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
.product-card .card-text {
  font-size: 16px;
  color: #666;
}
.product-card .card-price {
  font-size: 20px;
  color: #ff5722;
  font-weight: 700;
}
/* about page */

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.about-header {
  text-align: center;
  padding: 50px 20px;
}

.about-header h1 {
  margin: 0;
  font-size: 2.5em;
}

.about-header p {
  font-size: 1.2em;
  color: #777;
}

.about-content {
  padding: 50px 20px;
}

.about-section {
  margin-bottom: 40px;
}

.about-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
}

.team-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.2em;
}

.team-member p {
  font-size: 1em;
  color: #777;
}
/* faq */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.faq-header {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.faq-header h1 {
  margin: 0;
  font-size: 2.5em;
}

.faq-header p {
  font-size: 1.2em;
  color: #777;
}

.faq-content {
  background-color: #fff;
  padding: 50px 20px;
  border-bottom: 1px solid #ddd;
}

.faq-item {
  margin-bottom: 40px;
}

.faq-item h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
}
/* pagibation */
.pagination {
  justify-content: center;
}

.pagination .page-item.active .page-link {
  background-color: #ff5722;
  border-color: #ff5722;
}
.pagination .page-link {
  color: #ff5722;
}
.pagination .page-link:hover {
  background-color: #ff5722;
  border-color: #ff5722;
  color: #fff;
}
.dropdown-menu img {
  width: 24px; /* Adjust size as needed */
  height: auto;
  margin-right: 8px;
}
.dropdown-item {
  display: flex;
  align-items: center;
}
.dropdown-item img {
  margin-right: 8px;
}
/* index */

.grid-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.banner {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url("../images/1.png"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.banner-text {
  position: relative;
  color: white;
  text-align: center;
  z-index: 2;
  padding: 20px;
}

.banner h1 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
}

.banner p {
  font-size: 18px;
  font-weight: 400;
}

.banner a {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  background-color: #041e42;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
}

.banner a:hover {
  background-color: #022a59;
}

.grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

.grid-container > div {
  position: relative;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
}

.grid-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  display: block;
}

.grid-container h3 {
  /* background-color: #022a59; */
  font-size: 24px;
  color: #022a59;
  position: absolute;
  bottom: 60px;
  left: 20px;
  margin: 0;
  z-index: 1;
}

.color-bar {
  display: flex;
  height: 2px;
}
.color-segment {
  flex: 1;
}

.color-segment.orange {
  background-color: orange;
}

.color-segment.blue {
  background-color: #00bfff;
}

.color-segment.purple {
  background-color: #800080;
}

.color-segment.green {
  background-color: #32cd32;
}

.color-segment.pink {
  background-color: #ff69b4;
}
.btn {
  background-color: #ff5722;
  border: 1px solid #ff5722;
}
.btn-grid a {
  color: #ff5722;
}
.grid-container button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  width: 220px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background-color: #041e42;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.grid-container button:hover {
  background-color: #022a59;
}

.item1,
.item2,
.item3,
.item4,
.item5 {
  height: 400px; /* Adjust the height of the items */
}

@media screen and (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-container button {
  width: 250px;
  height: 40px;
  margin-left: -20px;
  border: 1px solid black;
  border-radius: 8px;
  background-color: bisque;
}

.grid-container button:hover {
  background-color: darkgrey;
  transition: all 0.2s ease-in-out;
}

.how-it-works {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.how-it-works h2 {
  text-transform: uppercase;
  font-size: 26px;
  margin-bottom: 20px;
}

.how-it-works p {
  font-size: 15px;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.step {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 200px;
  margin: 10px;
  transition: transform 0.3s;
}

.step:hover {
  transform: scale(1.05);
}

.step-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
}

.latest-added {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.latest-added h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.latest-added p {
  font-size: 18px;
  margin-bottom: 30px;
}

.latest-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.latest-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  flex: 1 1 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.latest-item img {
  max-width: 100%;
  border-radius: 4px;
}

.latest-item h3 {
  font-size: 20px;
  margin: 10px 0;
}

.latest-item p {
  font-size: 14px;
  color: #666;
}

.newsletter {
  background-color: #f5f5f5;
  color: #041e42;
  padding: 60px 20px;
  text-align: center;
}

.newsletter h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 16px;
  margin-bottom: 30px;
}

.newsletter input[type="email"] {
  padding: 10px;
  width: 250px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #ff5722;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter button:hover {
  background-color: #f1430e;
}

.dropdown-menu img {
  width: 24px; /* Adjust size as needed */
  height: auto;
  margin-right: 8px;
}
.dropdown-item {
  display: flex;
  align-items: center;
}
.dropdown-item img {
  margin-right: 8px;
}
.navbar {
  width: 100%;
}
.top-nav {
  display: flex;
  justify-content: flex-end;
  padding: 8px 20px;
  font-size: 14px;
  background: #f8f8f8;
}
.top-nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #555;
}
.top-nav a:hover {
  color: #000;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo {
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
  color: #ff5722;
}
.search-bar {
  border: 1px solid #ff5722;
  flex-grow: 1;
  margin: 0 20px;
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 5px;
  padding: 5px;
}
.search-bar input {
  border: none;
  outline: none;
  flex-grow: 1;
  background: transparent;
  padding: 5px;
}
.search-bar i {
  color: orange;
  cursor: pointer;
}
.main-menu {
  display: flex;
  align-items: center;
}
.main-menu a {
  text-decoration: none;
  color: #333;
  margin-right: 15px;
  font-size: 14px;
}
.main-menu a:hover {
  color: #000;
}
.nav-class {
  border-bottom: 2px solid #ff5722;
}
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #f1430e;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Gradient border */
  border: none;
}

.scroll-to-top:hover {
  background-color: #d1380c;
}
/* Responsive styles */
@media (max-width: 768px) {
  .scroll-to-top {
    z-index: 2;
    padding: 8px; /* Reduce padding on smaller screens */
    font-size: 14px; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    z-index: 2;
    padding: 6px; /* Further reduce padding for very small screens */
    font-size: 12px; /* Adjust font size for very small screens */
  }
}
/* loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2s ease;
}

.loader.active {
  opacity: 1;
  pointer-events: all;
}

.loader::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid #dddddd;
  border-top-color: #009578;
  border-radius: 50%;
  animation: loading 1s linear infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.flag-dropdown .dropdown-menu {
  width: 150px; /* Adjust the width as per your preference */
}
@media (max-width: 768px) {
  .flag-dropdown .dropdown-menu {
    width: 120px; /* Adjust for smaller screens */
  }
}
.badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  background-color: #041e42; /* Custom color */
  color: #fff;
  font-weight: bold;
}

.badge i {
  margin-right: 6px;
}
/* Make the button width responsive */
@media (max-width: 576px) {
  /* Small screens */
  .btn-filter {
    width: 100%; /* Full width on smaller screens */
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  /* Tablets */
  .btn-filter {
    width: 80%; /* Slightly smaller width on tablets */
  }
}

@media (min-width: 769px) {
  /* Larger screens */
  .btn-filter {
    width: 250px; /* Fixed width for desktops */
  }
}
