/* Base styling */
body {
  margin: 0;
  font-family: 'Poppins', 'sans-serif';
  background-color: #F3F5F3;
  color: #2C2C2C;
}

/* Header base */
.main-header {
  background-color: #1E5631;
  color: white;
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

/* Navigation menu center */
.nav-menu {
  display: flex;
  font-size: 18px;
  gap: 20px;
  justify-content: center;
  flex-grow: 1;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #A4DE02;
  font-weight: bold;
}

/* Icons on right */
.header-icon {
  display: flex;
  gap: 15px;
  font-size: 18px;
}

.header-icon a {
  color: white;
}

/* login Popup Box */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-hidden {
  display: none;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  min-width: 300px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 20px;
  color: #000;
}

.tab-buttons button {
  padding: 8px 12px;
  margin: 5px;
  border: none;
  background: #ddd;
  cursor: pointer;
}

.tab-buttons button.active {
  background: #007bff;
  color: white;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

input {
  width: 90%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit button {
  background: #007bff;
  color: white;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
}

.google {
  background: red;
  color: white;
  padding: 5px 10px;
}

.facebook {
  background: #3b5998;
  color: white;
  padding: 5px 10px;
}

#usernameDisplay {
  margin-left: 10px;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -6;
}

@keyframes floatCloud1 {
  0% {
    left: -30%;
  }

  100% {
    left: 130%;
  }
}

@keyframes floatCloud2 {
  0% {
    right: -35%;
  }

  100% {
    right: 120%;
  }
}

/* Content */
.hero-content {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 20px;
  color: #ffffff;
  margin: 20px 0;
}

.scroll-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  background: #1E5631;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.scroll-btn:hover {
  transform: translateY(3px);
}

/**/

.tours-hero {
  height: 80vh;
  background-image: url('image/tour\ cover.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hotels-hero {
  height: 80vh;
  background-image: url('image/hotels.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.places-hero {
  height: 80vh;
  background-image: url('image/place cover.jpeg');
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.transports-hero {
  height: 80vh;
  background-image: url('image/transports\ cover1.jpeg');
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.contact-hero {
  height: 80vh;
  background-image: url('image/contact.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;

}

/* Dark overlay */
.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

/* Content */
.hero-content h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  color: #ffffff;
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  color: #ffffff;
  font-size: 1.50rem;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: #F4A259;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #1E5631;
}

/* Finish hero secton */
/* second section */

.why-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.why-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1E5631;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 equal columns */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row on smaller screens */
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    /* 1 per row on mobile */
  }
}


.feature {
  background-color: #F3F5F3;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.feature img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.feature h3 {
  font-size: 1.2rem;
  color: #2C2C2C;
  margin-bottom: 10px;
}

.feature p {
  color: #555;
  font-size: 0.95rem;
}

/* third section */
.row-1,
row-2 {
  margin: 40px 20px 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.row-2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  padding-top: 20px;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  padding: 20px;
  gap: 20px;
  scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
  height: 10px;
}

.scroll-container::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 20px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #A4DE02;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background: #88c400;
}


.place-card {
  flex: 0 0 auto;
  width: 250px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
}

.place-card:hover {
  transform: scale(1.03);
}

.place-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.place-info {
  padding: 15px;
  position: relative;
}

.place-state {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

.place-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1E5631;
}

.visit-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #F4A259;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.visit-btn:hover {
  background-color: #1E5631;
}

/* forth section */
.travel-expert {
  display: flex;
  height: 400px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.expert-left,
.expert-right {
  width: 50%;
  height: 100%;
  box-sizing: border-box;
}

.expert-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.expert-left img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.expert-info {
  margin-top: 10px;
}

.owner-label {
  font-size: 13px;
  color: #777;
}

.owner-name {
  font-size: 25px;
  font-weight: 600;
  color: #1E5631;
}

.expert-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.expert-right h2 {
  font-size: 34px;
  margin-bottom: 8px;
  color: #1E5631;
  padding-bottom: 10px;
}

.expert-right p {
  font-size: 18px;
  color: #333;
  line-height: 1.4;
  padding-right: 20px;
}

/* fifth section */

.hotel-transport {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 30px;
  margin-top: 25px;
  border-radius: 20px;
  flex-wrap: wrap;
}

.ht-card {
  flex: 1;
  background: #f8f8f8;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ht-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.ht-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.ht-content {
  padding: 20px;
}

.ht-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1E5631;
}

.ht-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.ht-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #F4A259;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.ht-button:hover {
  background-color: #1E5631;
}

.confirm-btn:hover {
  background-color: #115e59;
}


/* newsletter */
.newsletter-box {
  background: url('image/newsletter gpt.png') no-repeat center center/cover;
  padding: 80px 30px;
  border-radius: 20px 20px 0 0;
  margin: auto;
  margin-top: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
}

.newsletter-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.5);
  /* optional overlay for better readability */
  padding: 40px 20px;
  border-radius: 20px;
}

.newsletter-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 16px;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  flex-direction: row;
}

.newsletter-form input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  width: 60%;
  max-width: 600px;
  font-size: 14px;
  color: #000;
  outline: none;
}

.newsletter-form button {
  padding: 12px 24px;
  background-color: #A4DE02;
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #88c400;
}

/* footer section */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #1E5631;
  color: #fff;
  padding: 50px 40px;
  gap: 20px;
  box-sizing: border-box;
}


.footer-left {
  width: 40%;
  text-align: center;
  padding: 60px 20px;
}

.footer-left h2 a {
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  font-weight: 700;
}

.footer-left p {
  margin-top: 14px;
  font-size: 16px;
  color: #fff;
}

.footer-right {
  display: flex;
  flex: 0 0 58%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  min-width: 280px;
}

.footer-column {
  flex: 0 0 48%;
  min-width: 140px;
}

.footer-column h4 {
  padding-bottom: 20px;
  font-weight: bold;
  color: #A4DE02;
  /* bright green */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #A4DE02;
}

/* Places Page -------------------------------------------------------------------*/
/* Search & Filter Row --------------------------------------------------------*/

.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 60px 40px 60px;
  gap: 20px;
  flex-wrap: wrap;
}

.search-box {
  flex: 0 0 80%;
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.search-box button {
  padding: 10px 20px;
  background-color: #F4A259;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.search-box button:hover {
  background-color: #1E5631;
  /* Darker green on hover */
  transition: background-color 0.3s ease;
}

.filter-box {
  flex: 0 0 18%;
}

.filter-box select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
}

/* Blog List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Single Blog Card */
.blog-card {
  display: flex;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
  margin: 0px 60px 20px 60px;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-img {
  flex: 0 0 25%;
  width: 250px;
  height: 180px;
  overflow: hidden;
  border-radius: 15px;
  padding: 5px 5px 5px 5px;
  margin-bottom: 5px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  border-radius: 10px;
}

.blog-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #1E5631;

}

.blog-desc {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.blog-meta {
  font-size: 14px;
  color: #777;
  display: flex;
  justify-content: space-between;
}

/* post page -------------------------*/

.prose {
  line-height: 1.7;
  font-size: 1rem;
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  color: #1e40af;
  /* Tailwind blue-900 */
}

.blog-card img {
  height: 180px;
  object-fit: cover;
}


/* Hotel Page ---------------------------------------------------------------------*/
.hotel-filter-section {
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
  padding: 20px;
  max-width: 1100px;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-left,
.filter-right {
  width: 48%;
}

.hotel-type-options label {
  display: inline-block;
  margin-right: 20px;
  font-size: 15px;
}

.hotel-type-options input {
  margin-right: 5px;
  width: 15px;
}

.filter-right select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.hotels-list {
  max-width: 1100px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hotel-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
}

.hotel-img {
  width: 40%;
}

.hotel-img img {
  width: 500Px;
  height: 300Px;
  object-fit: cover;
}

.hotel-info {
  padding: 20px;
  width: 60%;
}

.hotel-info h3 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #1E5631;
}

.hotel-info p {
  margin: 5px 0;
  color: #181616;
  font-size: 15px;
}

.book-btn {
  margin-top: 10px;
  padding: 10px 16px;
  background-color: #1E5631;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background-color: #14532d;
}

.hidden {
  display: none;
}


.booking-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.booking-popup h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #007bff;
  padding-bottom: 10px;
}

input {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  align-items: center;
}

label {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 0;
  display: block;
  text-align: left;
}

.popup-content {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.popup-content input,
.popup-content textarea,
.popup-content select {
  width: 100%;
  margin: 12px 0;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.popup-content button {
  background: #1E5631;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-content button:hover {
  background: #157347;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* transports page -------------------------------------------------------------*/

.transport-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #f1f5f9;
}

.search-box {
  max-width: 600px;
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.search-box button {
  padding: 10px 18px;
  background-color: #1E5631;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.search-box button:hover {
  background-color: #14532d;
}

.transport-header input,
.transport-header select {
  padding: 10px 14px;
  margin-left: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.transport-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 30px 40px;
}

.transport-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.transport-card:hover {
  transform: translateY(-4px);
}

.transport-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.transport-info {
  padding: 20px;
}

.transport-info h3 {
  margin: 0;
  font-size: 20px;
  color: #1f2937;
}

.transport-info .type {
  font-weight: 600;
  color: #0f766e;
  margin: 6px 0;
}

.transport-info .desc {
  color: #475569;
  margin: 6px 0;
}

.transport-info .price {
  font-weight: bold;
  color: #dc2626;
}

.transport-info .seats {
  font-size: 14px;
  margin: 6px 0 14px;
  color: #6b7280;
}

.transport-info button {
  background: #1E5631;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.transport-info button:hover {
  background: #14532d;
}

/*Contact us page-----------------------------------------*/

.contact-section {
  display: flex;
  gap: 40px;
  padding: 40px 10%;
  background-color: #f9fafb;
  flex-wrap: wrap;
}

.contact-left,
.contact-right {
  flex: 1 1 45%;
}

.author-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.contact-left h3 {
  font-size: 22px;
  margin: 10px 0 5px;
  color: #0369a1;
}

.contact-left p {
  margin: 5px 0;
  font-size: 15px;
}

.contact-right h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0ea5e9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  background-color: #0ea5e9;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #0369a1;
}

.map-section {
  padding: 40px 10%;
  background-color: #f1f5f9;
  text-align: center;
}

.map-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #0ea5e9;
}

/* Tour page -------------------------------------------*/

.tour-section {
  padding: 60px 8%;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #0369a1;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tour-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tour-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.tour-info p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 15px;
  line-height: 1.5;
}

.see-all-btn {
  background-color: #1E5631;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: start;
}

.see-all-btn:hover {
  background-color: #14532d;
}