header {
  background-color: #fff;
}

header {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(235, 235, 235, 0.6901960784);
}

.header {
  background-color: #ffffff;
}

.nav {
  text-transform: uppercase;
}
.nav a {
  color: #353434;
}
.nav a:hover {
  color: #0cb315;
}

.social .nav-item:not(:last-child) {
  position: relative;
}
.social .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 60%;
  background-color: #d9d9d9;
}
.social .nav-item a {
  padding-right: 10px;
  padding-left: 10px;
}

.hambuger-sidebar-mobile {
  border-radius: 50%;
  text-align: center;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hambuger-sidebar-mobile i {
  font-size: 2rem;
}

.e-sidebar {
  visibility: hidden;
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  z-index: 1050;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.e-sidebar .content-sidebar {
  overflow-y: auto;
  margin-top: 1rem;
}
.e-sidebar .content-sidebar ul {
  margin: 0;
  padding: 0;
}
.e-sidebar .content-sidebar ul li {
  list-style: none;
  border-bottom: 1px solid #aaaaaa;
}
.e-sidebar .content-sidebar ul li a {
  color: #383838;
  text-decoration: none;
  display: block;
  padding: 8px 1.2rem;
  text-transform: uppercase;
}
.e-sidebar .content-sidebar ul li a i {
  margin-right: 1rem;
}
.e-sidebar .sidebar-inner {
  flex: 0 0 auto;
  width: 280px;
  transform: translateX(-280px);
  background-color: #fff;
  transition: all 0.6s;
}
.e-sidebar .sidebar-inner.to-left {
  transform: translateX(280px);
}
.e-sidebar.open-sidebar {
  visibility: visible;
}
.e-sidebar.open-sidebar .sidebar-inner {
  transform: translateX(0);
}
.e-sidebar .sidebar-overlay {
  flex: 1 0 auto;
}

.bullet-arrow {
  position: relative;
  padding: 7px 0 7px 25px;
  margin: 0;
  border-bottom: 1px solid rgba(177, 177, 177, 0.8431372549);
}
.bullet-arrow a {
  color: #fff;
}
.bullet-arrow::before {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  left: 0;
}

@media (max-width: 575.98px) {
  .logo {
    flex: 1 1 auto;
  }
}
@media (min-width: 575.98px) {
  .logo {
    width: 120px;
  }
  .nav {
    font-size: 13px;
  }
}
.pagination {
  margin-top: 1rem;
}

footer {
  background-color: rgb(37, 62, 72);
  color: white;
}
footer section {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  text-align: left;
}
footer .footer-section {
  max-width: 300px;
}
footer h3 {
  margin-top: 0;
  padding-bottom: 5px;
  border-bottom: 2px solid white;
}
footer p,
footer ul {
  margin: 10px 0;
}
footer .footer-links,
footer .footer-social {
  list-style-type: none;
  padding: 0;
}
footer .footer-links li,
footer .footer-social li {
  margin-bottom: 5px;
}
footer .footer-links a,
footer .footer-social a {
  color: white;
  text-decoration: none;
}
footer .footer-links a:hover,
footer .footer-social a:hover {
  text-decoration: underline;
}
footer .footer-copyright {
  background-color: #222;
  text-align: center;
  padding: 10px 0;
}
footer .footer-copyright p {
  margin: 0;
}

.contact-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-icons a {
  display: block;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.contact-icons img {
  display: block;
}
.contact-icons #scrollToTopBtn {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
}
.contact-icons #scrollToTopBtn i {
  font-size: 2em;
  color: rgb(55, 58, 183);
}

@media (max-width: 575.98px) {
  footer section {
    flex-direction: column;
  }
}
.banner-container {
  position: relative;
  width: 100%;
  height: 680px;
  /* Adjust height as needed */
  overflow: hidden;
}
.banner-container .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.banner-container .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  /* Optional: adds a semi-transparent background */
  border-radius: 8px;
}
.banner-container .banner-content .banner-title {
  font-size: 2em;
  /* Adjust size as needed */
  margin: 0;
}
.banner-container .banner-content .banner-description {
  font-size: 1.2em;
  /* Adjust size as needed */
  margin: 10px 0 0;
}

/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.category {
  position: relative;
  width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  padding: 10px;
  box-sizing: border-box; /* Ensures padding is included in the height calculation */
}

.category-title {
  margin: 0;
  font-size: 1.2em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  box-sizing: border-box;
  background-color: rgba(187, 214, 225, 0.31);
}

.text-content {
  flex: 1;
  max-width: 50%;
}

.section-title {
  font-size: 2em;
  margin: 0 0 10px;
}

.section-description {
  font-size: 1.2em;
  line-height: 1.6;
}

.image-frame {
  position: relative;
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.image-frame a {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 30px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
}
.image-frame .content-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  /* Ensures padding is included in the height calculation */
}
.image-frame .content-info .content-title {
  margin: 0;
  font-size: 1.2em;
}

.section-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .content-section {
    flex-direction: column;
  }
  .content-section.reverse {
    flex-direction: column-reverse;
  }
  .content-section .image-frame,
  .content-section .text-content {
    max-width: 100%;
  }
}