@charset "UTF-8";
body {
  font-family: cairo;
  background-color: #f6f4f3;
  overflow-x: hidden;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.text-primary {
  color: #1e5f2e !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-item {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link:before,
.navbar-nav .dropdown-item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background-color: #1e5f2e;
  transition: inherit;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
  color: #1e5f2e;
}
.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before,
.navbar-nav .dropdown-item:hover:before,
.navbar-nav .dropdown-item.active:before {
  width: 100%;
}
.navbar-nav .navbar-toggler:focus {
  box-shadow: none !important;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* خلفية شفافة */
  background-color: rgba(0, 0, 0, 0.81);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}
.search-overlay.active {
  display: flex;
}
.search-overlay .search-overlay-content {
  width: 100%;
  max-width: 700px;
  padding: 1rem;
  position: relative;
}
.search-overlay .btn-close-black {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: rgb(246, 241, 241);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.btn-primary {
  background-color: #1e5f2e;
  border: none;
}

.btn-primary:hover {
  background-color: #1e5f2e;
  box-shadow: 0 0 10px #1e5f2e;
}

.btn-secondary {
  background-color: #1e5f2e;
  border: none;
}
.btn-secondary:hover {
  background-color: transparent;
  border: solid 2px #1e5f2e;
  color: #333;
}

.article-slider {
  direction: rtl;
  position: relative;
  margin: 2rem 0;
}
.article-slider .carousel {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}
.article-slider .carousel:hover .carousel-control-prev,
.article-slider .carousel:hover .carousel-control-next {
  opacity: 1;
  visibility: visible;
}
.article-slider .carousel-inner {
  border-radius: 1rem;
}
.article-slider .carousel-inner .carousel-item {
  position: relative;
  transition: transform 0.6s ease-in-out;
}
.article-slider .carousel-inner .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}
.article-slider .carousel-inner .carousel-item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
}
.article-slider .carousel-inner .carousel-item:hover img {
  filter: brightness(1.05);
}
.article-slider .carousel-caption {
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  text-align: right;
}
.article-slider .carousel-caption h2 {
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.75rem;
}
.article-slider .carousel-caption p {
  line-height: 1.6;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.article-slider .carousel-caption .btn {
  font-weight: 600;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}
.active .article-slider .carousel-caption .btn {
  transform: translateY(0);
  opacity: 1;
}
.article-slider .carousel-indicators {
  bottom: 1rem;
  margin: 0;
  gap: 0.5rem;
}
.article-slider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.article-slider .carousel-indicators [data-bs-target].active {
  background-color: white;
  opacity: 1;
  transform: scale(1.2);
}
.article-slider .carousel-control-prev,
.article-slider .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.article-slider .carousel-control-prev-icon,
.article-slider .carousel-control-next-icon {
  filter: invert(1);
  width: 1.5rem;
  height: 1.5rem;
}
.article-slider .carousel-control-prev:hover,
.article-slider .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.article-slider .carousel-control-prev {
  right: 1.5rem;
}
.article-slider .carousel-control-next {
  left: 1.5rem;
}
@media (max-width: 768px) {
  .article-slider .carousel {
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .article-slider .carousel-caption {
    padding: 1rem;
  }
  .article-slider .carousel-caption h2 {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem;
  }
  .article-slider .carousel-caption p {
    display: none;
  }
  .article-slider .carousel-caption .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  .article-slider .carousel-indicators {
    bottom: 0.5rem;
  }
  .article-slider .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
  .article-slider .carousel-control-prev,
  .article-slider .carousel-control-next {
    display: none;
  }
}
@media (min-width: 1200px) {
  .article-slider .carousel-caption {
    padding: 2rem;
  }
  .article-slider .carousel-caption h2 {
    font-size: 2rem;
  }
  .article-slider .carousel-caption p {
    font-size: 1.1rem;
  }
}

.about-page {
  overflow-x: hidden;
}

.about-widget-container {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.05),
    #fff,
    rgba(32, 201, 151, 0.05)
  );
  padding: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
}
.about-widget-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat; /* Makes the image repeat */
  opacity: 0.1;
  z-index: 0;
}
.about-widget-container .about-widget-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-widget-container .about-widget-header .image-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ddd;
  margin-bottom: 1rem;
}
.about-widget-container .about-widget-header .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-widget-container
  .about-widget-header
  .image-container
  .placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ddd;
  color: #555;
}
.about-widget-container .about-widget-header .widget-text-content {
  max-width: 600px;
}
.about-widget-container
  .about-widget-header
  .widget-text-content
  .widget-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0d6efd;
}
.about-widget-container
  .about-widget-header
  .widget-text-content
  .widget-content {
  font-size: 1rem;
  color: #6c757d;
}

.section-cards-container .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-cards-container .card.hover-translate-up:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.section-cards-container .card i {
  color: #1e5f2e;
}
.section-cards-container .card .btn-link {
  color: #1e5f2e;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.section-cards-container .card .btn-link:hover {
  color: #12381b;
  text-decoration: underline;
}

.latest-articles-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.latest-articles-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 3500px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.latest-articles-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.latest-articles-section .card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.latest-articles-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(155, 37, 37, 0.1);
}
.latest-articles-section .card:hover .transition-transform {
  transform: scale(1.05);
}
.latest-articles-section .card .card-body {
  padding: 1.5rem;
}
.latest-articles-section .card .card-body .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.latest-articles-section .card .card-body .card-text {
  font-size: 0.875rem;
  color: #adb5bd;
}
.latest-articles-section .card .card-body a {
  text-decoration: none;
  color: #1e5f2e;
  font-weight: 500;
  transition: all 0.3s ease;
}
.latest-articles-section .card .card-body a:hover {
  color: #12381b;
  text-decoration: underline;
}
.latest-articles-section .card .card-body .btn-link {
  font-size: 0.9rem;
  color: #1e5f2e;
  text-decoration: none;
}
.latest-articles-section .card .card-body .btn-link i {
  margin-left: 0.4rem;
}
.latest-articles-section .card .card-body .btn-link:hover {
  text-decoration: underline;
}
.latest-articles-section .view-all-btn {
  margin-top: 3rem;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 999px;
}

.join-discussions-section {
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
}
.join-discussions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 3500px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.join-discussions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 3500px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.join-discussions-section h2 {
  color: #1e5f2e;
}
.join-discussions-section .btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.join-discussions-section .btn:hover {
  opacity: 0.9;
  background-color: #1e5f2e;
}

.featuredcontent {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.featuredcontent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 1000px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.featuredcontent [data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
}
.featuredcontent [data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
.featuredcontent [data-aos="fade-up"] {
  transform: translateY(20px);
}
.featuredcontent [data-aos="fade-down"] {
  transform: translateY(-20px);
}
.featuredcontent [data-aos="fade-left"] {
  transform: translateX(-20px);
}
.featuredcontent [data-aos="fade-right"] {
  transform: translateX(20px);
}
.featuredcontent [data-aos="zoom-in"] {
  transform: scale(0.9);
}
.featuredcontent [data-aos="zoom-out"] {
  transform: scale(1.1);
}

.about-widgets > p {
  display: none;
}
.about-widgets .infocards .widget-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}
.about-widgets .infocards .widget-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 3500px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.about-widgets .infocards .card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  margin: 10px;
}
.about-widgets .infocards .cardheader {
  background-color: white;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.about-widgets .infocards .cardbody {
  padding: 20px;
  color: #333;
}
.about-widgets .infocards .card:hover {
  transform: translateY(-10px);
}
.about-widgets .infocards .card .icon {
  font-size: 40px;
  color: #1e5f2e;
  margin-bottom: 10px;
}
.about-widgets .our-story-section {
  background-color: #f6f4f3;
  padding: 4rem 0;
}
.about-widgets .our-story-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}
.about-widgets .our-story-section .story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
}
.about-widgets .our-story-section img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
.about-widgets .team-widgets .team-section {
  min-height: 100vh;
  background: #f8f9fa;
}
.about-widgets .team-widgets .team-section .card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.about-widgets .team-widgets .team-section .card:hover {
  transform: translateY(-5px);
}
.about-widgets .team-widgets .team-section .card img {
  height: 250px;
  object-fit: cover;
}
.about-widgets .team-widgets .team-section .card .card-body {
  padding: 1.5rem;
}
.about-widgets .download-card-widgets {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-widgets .download-card-widgets .download-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50%;
  position: relative;
  width: 90%;
  padding: 2rem;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}
.about-widgets .download-card-widgets .download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  opacity: 0.1;
  z-index: -1;
}
.about-widgets .download-card-widgets .download-card .download-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}
.about-widgets .download-card-widgets .download-card .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 50px;
}

.club-page .club-card {
  transition: transform 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}
.club-page .club-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.club-page .club-card .cover-img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.club-page .club-card .card-body {
  padding: 1rem;
}
.club-page .club-card .card-body .card-title {
  font-weight: bold;
  font-size: 1.25rem;
}
.club-page .club-card .card-body .card-text {
  color: #666;
  font-size: 0.95rem;
}
.club-page .club-card .card-body ul {
  font-size: 0.85rem;
  color: #444;
}

.heroclubsection {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  position: relative;
}
.heroclubsection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 1500px;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.heroclubsection h2 {
  font-weight: 700;
  color: #1e5f2e;
}
.heroclubsection .clubherosection p.lead {
  font-size: 1.25rem;
  line-height: 1.8;
}
.heroclubsection .clubherosection img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.single-club-hero .card {
  transition: box-shadow 0.3s;
}
.single-club-hero .card:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.single-club-hero i {
  color: #1e5f2e;
}

.section {
  padding: 70px 0;
  scroll-margin-top: 60px;
}
.section.first-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .section.first-section {
    padding-top: 130px;
  }
}
@media (max-width: 767.98px) {
  .section {
    padding: 40px 0;
  }
}

.bloggrid .searchform__v2 .category a {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(73, 75, 91, 0.1);
  color: rgba(73, 75, 91, 0.7);
}
.bloggrid .searchform__v2 .category a:hover {
  box-shadow: 0 2px 5px 0px rgba(73, 75, 91, 0.2);
  border: 1px solid rgba(73, 75, 91, 0.25);
  color: rgb(73, 75, 91);
}
.bloggrid .blogv1 .blog-entry .thumbnail {
  flex: 0 0 100%;
}
.bloggrid .blogv1 .blog-entry .thumbnail a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.bloggrid .blogv1 .blog-entry .thumbnail img {
  transition: 0.3s all ease;
  width: 100%;
  height: 250px;
  transform: scale(1);
}
@media (max-width: 767.98px) {
  .bloggrid .blogv1 .blog-entry .thumbnail img {
    width: 100%;
  }
}
.bloggrid .blogv1 .blog-entry h3 a {
  color: #16181b;
  text-decoration: none;
}
.bloggrid .blogv1 .blog-entry .post-author {
  color: #16181b;
  text-decoration: none;
  font-size: 14px;
}
.bloggrid .blogv1 .blog-entry .post-author img {
  width: 50px;
  height: 50px;
}
.bloggrid .blogv1 .blog-entry .post-author strong {
  margin-bottom: 6px;
}
.bloggrid .blogv1 .blog-entry .post-author .date {
  color: rgba(73, 75, 91, 0.8);
}
.bloggrid .blogv1 .blog-entry:hover .thumbnail > a > img {
  transform: scale(1.05);
}
.bloggrid .blogv1 .category a {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(73, 75, 91, 0.1);
  color: rgba(73, 75, 91, 0.7);
}
.bloggrid .blogv1 .category a:hover {
  box-shadow: 0 2px 5px 0px rgba(73, 75, 91, 0.2);
  border: 1px solid rgba(73, 75, 91, 0.25);
  color: rgb(73, 75, 91);
}
.bloggrid .blogv1 .highlight-post {
  position: relative;
  z-index: 2;
}
.bloggrid .blogv1 .highlight-post::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
}
.bloggrid .blogv1 .highlight-post .post-content {
  z-index: 99;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.bloggrid .blogv1 .highlight-post .post-content h3 {
  color: #fff;
}
.bloggrid .blogv1 .highlight-post .post-content .post-author strong,
.bloggrid .blogv1 .highlight-post .post-content .post-author span {
  color: #fff;
}

.pagination_1 ul {
  list-style: none;
}
.pagination_1 ul li {
  list-style: none;
}
.pagination_1 .page-item {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.pagination_1 .page-item a {
  border-radius: 50% !important;
}
.pagination_1 .page-item a:hover {
  background-color: #1e5f2e;
  color: #fff;
}
.pagination_1 .page-item.active a {
  background-color: #1e5f2e;
  color: #fff;
}

.singlepost .hero__v5 {
  background-size: cover;
  background-position: center center;
  height: 85vh;
  min-height: 550px;
  position: relative;
  /* تصميم التعليقات المفردة */
  /* بيانات الكاتب والتعليق */
  /* نموذج إضافة تعليق */
}
.singlepost .hero__v5 > .container {
  position: relative;
}
.singlepost .hero__v5:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.singlepost .hero__v5 .section-title strong {
  color: #ffffff;
}
.singlepost .hero__v5 .section-title h1 {
  margin-bottom: 30px;
  color: #ffffff;
}
.singlepost .hero__v5 .section-title h1 a {
  color: #ffffff;
  text-decoration: none;
}
.singlepost .hero__v5 .post-author {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}
.singlepost .hero__v5 .post-author img {
  width: 50px;
  height: 50px;
}
.singlepost .hero__v5 .post-author strong {
  margin-bottom: 6px;
}
.singlepost .hero__v5 .post-author .date {
  color: rgba(255, 255, 255, 0.8);
}
.singlepost .hero__v5 .comments {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.singlepost .hero__v5 .comments h3 {
  text-align: center;
  color: #333;
  margin-bottom: 1.5rem;
}
.singlepost .hero__v5 .commentlist li {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.singlepost .hero__v5 .commentlist li:last-child {
  border-bottom: none;
}
.singlepost .hero__v5 .comment-author img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  float: left;
}
.singlepost .hero__v5 .comment-content {
  overflow: hidden;
  color: #444;
  font-size: 1rem;
}
.singlepost .hero__v5 .comment-meta {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.singlepost .hero__v5 #commentform {
  margin-top: 2rem;
}
.singlepost .hero__v5 #commentform input,
.singlepost .hero__v5 #commentform textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.singlepost .hero__v5 #commentform input[type="submit"] {
  background-color: #0d6efd;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.singlepost .hero__v5 #commentform input[type="submit"]:hover {
  background-color: #0b5ed7;
}
.singlepost .content__v1 .share ul {
  list-style: none;
  padding: 0;
}
.singlepost .content__v1 .share ul li {
  margin-bottom: 0.5rem;
}
.singlepost .content__v1 .share ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #333;
}
.singlepost .content__v1 .share ul li a i {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.singlepost .content__v1 .share ul li a.linkedin i {
  color: #0a66c2;
}
.singlepost .content__v1 .share ul li a.facebook i {
  color: #1877f2;
}
.singlepost .content__v1 .share ul li a.twitter i {
  color: #1da1f2;
}
.singlepost .content__v1 .share ul li a.pinterest i {
  color: #e60023;
}
.singlepost .content__v1 .share ul li a.email i {
  color: #d44638;
}
.singlepost .content__v1 .share ul li a:hover {
  color: #666666;
}
.singlepost .content__v1 .share ul li a:hover i {
  color: currentColor;
}
.singlepost .content__v1 .article {
  line-height: 2.2;
}
.singlepost .content__v1 .article figure img {
  margin-bottom: 10px;
}
.singlepost .content__v1 .article figure figcaption {
  text-align: center;
  font-size: 12px;
  color: rgba(73, 75, 91, 0.7);
}
.singlepost .content__v1 .article ul li strong {
  color: #494b5b;
}
.singlepost .related-posts {
  padding-top: 2rem;
}
.singlepost .related-posts h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.singlepost .related-posts .card {
  transition: 0.3s ease-in-out;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.singlepost .related-posts .card:hover {
  transform: translateY(-5px);
}
.singlepost .related-posts .card .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.singlepost .related-posts .card .card-title a {
  color: #16181b;
  text-decoration: none;
  font-weight: 600;
}
.singlepost .related-posts .card .card-title a:hover {
  opacity: 0.8;
}
.singlepost .authorprofile__v1 .authorprofile__v1--inner {
  padding: 30px;
  background-color: rgba(73, 75, 91, 0.05);
}
.singlepost
  [data-bs-theme="dark"]
  .authorprofile__v1
  .authorprofile__v1--inner {
  background-color: rgba(73, 75, 91, 0.08);
}
.singlepost .authorprofile__v1 .author-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
}
.singlepost .authorprofile__v1 .author-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.singlepost .authorprofile__v1 .author-bio a {
  color: #1e5f2e;
  text-decoration: none;
}

.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.custom-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.custom-lightbox .lb-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.custom-lightbox .lb-container .lb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}
.custom-lightbox .lb-container .lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.content-styled img {
  display: block;
  margin: 2rem auto;
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.dialogue-archive i {
  color: #1e5f2e;
}
.dialogue-archive .custom-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dialogue-archive .custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.dialogue-archive .custom-card .card-img-top {
  height: 220px;
  object-fit: cover;
}
.dialogue-archive .custom-card .card-body {
  padding: 1.5rem;
}
.dialogue-archive .custom-card .card-body .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.75rem;
}
.dialogue-archive .custom-card .card-body .card-text {
  font-size: 0.95rem;
  color: #555;
}
.dialogue-archive .custom-card .card-body .card-text i {
  vertical-align: middle;
}
.dialogue-archive .custom-card .card-body .btn {
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s;
}
.dialogue-archive .custom-card .card-body .btn:hover {
  transform: scale(1.05);
}

.dialogue-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}
.dialogue-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 1000px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.dialogue-hero h1 {
  font-size: 3rem;
}
.dialogue-hero p {
  font-size: 1.25rem;
}

.dialogue-content {
  font-size: 1.125rem;
  line-height: 1.8;
}
.dialogue-content p {
  margin-bottom: 1rem;
}
.dialogue-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1rem 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.singledialogue i {
  color: #1e5f2e;
}
.singledialogue .btn-outline-secondary {
  border: 1px solid #1e5f2e;
  color: #1e5f2e;
  transition: all 0.3s ease;
}
.singledialogue .btn-outline-secondary:hover {
  background-color: #1e5f2e;
  color: #fff;
}
.singledialogue .btn-outline-secondary:hover i {
  color: #fff;
}

.hero-section {
  text-align: center;
  background-color: #f6f4f3;
  position: relative;
  width: 100%;
  min-height: 30vh;
  justify-content: center;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 1500px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.archive-event .card-title {
  font-weight: bold;
}
.archive-event .card-text {
  min-height: 60px;
}
.archive-event .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.archive-event a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.archive-event a:hover {
  color: #1e5f2e;
  border: solid 1px #1e5f2e;
  background-color: transparent;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.archive-event a:active {
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.singleevent .content {
  line-height: 2;
}

.release .card:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.release .item-thumb img {
  width: 100%;
  border: 1px solid #dddddd;
}
.release .item-product .item-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
}
.release .item-product .item-thumb a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 1.1px 1.5px,
    rgba(0, 0, 0, 0.1) 0px 2.8px 3.9px, rgba(0, 0, 0, 0.08) 0px 5.8px 7.9px,
    rgba(0, 0, 0, 0.06) 0px 12px 16.4px, rgba(0, 0, 0, 0.04) 0px 33px 45px;
}
.release .item-product .item-thumb a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  pointer-events: none;
  filter: contrast(310%) brightness(100%);
  box-shadow: rgba(15, 15, 15, 0.1) 0px 0px 0px 1px inset;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.118) 0.65%,
    rgba(255, 255, 255, 0.2) 1.53%,
    rgba(255, 255, 255, 0.1) 2.38%,
    rgba(0, 0, 0, 0.05) 3.26%,
    rgba(255, 255, 255, 0.14) 5.68%,
    rgba(244, 244, 244, 0) 6.96%
  );
}
.release .item-media .item-thumb {
  flex: none;
  width: 300px;
  margin-right: 30px;
}
.release .item-media-sm .item-thumb {
  width: 70px;
  margin-right: 15px;
}

.author .authorprofile__v1 {
  background-color: #f9f9f9;
}
.author .authorprofile__v1--inner {
  border: 1px solid #e0e0e0;
}
.author .authorprofile__v1--inner .author-img {
  flex-shrink: 0;
}
.author .authorprofile__v1--inner .author-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 3px solid #007bff;
}
.author .authorprofile__v1--inner .author-bio {
  flex: 1;
}
.author .authorprofile__v1--inner .author-bio h3 {
  color: #222;
}
.author .authorprofile__v1--inner .author-bio p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
.author .authorprofile__v1--inner .author-bio .social {
  margin-top: 1rem;
}
.author .authorprofile__v1--inner .author-bio .social a {
  width: 36px;
  height: 36px;
  background-color: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.author .authorprofile__v1--inner .author-bio .social a:hover {
  background-color: #0056b3;
}
.author .authorprofile__v1--inner .author-bio .social a i {
  font-size: 1.2rem;
}
.author .blog__v1 .blog-entry .thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 370px;
  flex: 0 0 370px;
}
.author .blog__v1 .blog-entry .thumbnail a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.author .blog__v1 .blog-entry .thumbnail img {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  width: 370px;
  height: 250px;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.author .blog__v1 .blog-entry h3 a {
  color: var(--bs-heading-color);
  text-decoration: none;
}
.author .blog__v1 .blog-entry .post-author {
  color: var(--bs-heading-color);
  text-decoration: none;
  font-size: 14px;
}
.author .blog__v1 .blog-entry .post-author img {
  width: 50px;
  height: 50px;
}
.author .blog__v1 .blog-entry .post-author strong {
  margin-bottom: 6px;
}
.author .blog__v1 .blog-entry .post-author .date {
  color: rgba(var(--inverse-color-rgb), 0.8);
}
.author .blog__v1 .blog-entry:hover .thumbnail img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media (max-width: 767.98px) {
  .author .blog__v1 .blog-entry .thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .author .blog__v1 .blog-entry .thumbnail img {
    width: 100%;
  }
}

.releasewidgets {
  padding: 2rem 1rem;
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.releasewidgets::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/bootstrap-scss-theme/assets/img/decor.png");
  background-repeat: repeat;
  background-size: 3500px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.releasewidgets .release-widget {
  position: relative;
  z-index: 1;
}
.releasewidgets .release-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: #1d3557;
  font-weight: bold;
}
.releasewidgets .release-subtitle {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #6c757d;
  font-size: 1.125rem;
}
.releasewidgets .release-card-link {
  display: block;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.releasewidgets .release-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.releasewidgets .release-card-link .release-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background-color: #eee;
}
.releasewidgets .release-card-link .release-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.releasewidgets .release-card-link .release-post-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #1d3557;
}
.releasewidgets .release-card-link .release-excerpt {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  line-height: 1.4;
}

.dialogue-widget .dialogue-card-link {
  text-decoration: none;
  color: inherit;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}
.dialogue-widget .dialogue-card-link:hover {
  transform: translateY(-6px);
}
.dialogue-widget .dialogue-thumb {
  position: relative;
  overflow: hidden;
}
.dialogue-widget .dialogue-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.dialogue-widget .dialogue-thumb .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}
.dialogue-widget .dialogue-thumb .overlay i {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}
.dialogue-widget .dialogue-thumb:hover img {
  transform: scale(1.1);
}
.dialogue-widget .dialogue-thumb:hover .overlay {
  opacity: 1;
}
.dialogue-widget .dialogue-card-body {
  background-color: #f8f9fa;
  padding: 1rem;
  text-align: right;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.dialogue-widget .dialogue-post-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dialogue-widget .dialogue-meta {
  font-size: 0.95rem;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dialogue-widget .dialogue-meta div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.dialogue-widget .dialogue-meta div i {
  margin-left: 0.5rem;
  color: #1e5f2e;
  font-size: 1rem;
}

.event-widget {
  padding: 2rem;
}
.event-widget .event-title {
  color: #1d3557;
}
.event-widget .event-subtitle {
  color: #6c757d;
}
.event-widget .event-card {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.event-widget .event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.event-widget .event-card .event-thumb {
  position: relative;
}
.event-widget .event-card .event-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
  display: block;
}
.event-widget .event-card .event-thumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 53, 87, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.event-widget .event-card .event-thumb .overlay i {
  font-size: 1.5rem;
}
.event-widget .event-card .event-thumb .overlay span {
  font-size: 0.9rem;
}
.event-widget .event-card .event-thumb:hover .overlay {
  opacity: 1;
}
.event-widget .event-card .event-content-box {
  background: linear-gradient(145deg, #ffffff, #f1f1f1);
  padding: 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event-widget .event-card .event-content-box .event-post-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 0.6rem;
}
.event-widget .event-card .event-content-box .event-meta {
  color: #495057;
  font-size: 0.95rem;
}
.event-widget .event-card .event-content-box .event-meta div {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}
.event-widget .event-card .event-content-box .event-meta div i {
  color: #1e5f2e;
  margin-left: 0.5rem;
  font-size: 1.1rem;
}

.comments-area {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.comments-area .comments-title {
  font-size: 1.5rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  color: #222;
}
.comments-area .comment-list li {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
.comments-area .comment-body {
  align-items: flex-start;
}
.comments-area .comment-body .comment-avatar img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}
.comments-area .comment-body .comment-author {
  color: #007bff;
}
.comments-area .comment-body .comment-date {
  font-size: 0.85rem;
  color: #999;
}
.comments-area .comment-body .comment-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.comments-area .reply a {
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}
.comments-area .reply a:hover {
  text-decoration: underline;
}
.comments-area .comment-form input,
.comments-area .comment-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.comments-area .comment-form input:focus,
.comments-area .comment-form textarea:focus {
  border-color: #007bff;
  outline: none;
}
.comments-area .comment-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.comments-area .comment-form button[type="submit"] {
  background-color: #007bff;
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.comments-area .comment-form button[type="submit"]:hover {
  background-color: #0056b3;
}

.contact__v2 .subtitle {
  background-color: rgba(204, 232, 201, 0.2);
  color: #215c5c;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
[data-bs-theme="dark"] .contact__v2 .subtitle {
  background-color: rgba(73, 75, 91, 0.1);
  color: #494b5b;
}
.contact__v2 .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(73, 75, 91, 0.2);
  border-radius: 50%;
}

.section.first-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .section.first-section {
    padding-top: 130px;
  }
}

.site-footer {
  background: #28392e;
  padding: 40px 0 20px;
  direction: rtl;
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.site-footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer .footer-row:first-child {
  padding-bottom: 30px;
  position: relative;
}
.site-footer .footer-row:first-child .footer-logo {
  order: 1;
}
.site-footer .footer-row:first-child .footer-menu {
  order: 2;
}
.site-footer .footer-row:first-child .footer-social-icons {
  order: 3;
}
.site-footer .footer-logo img {
  max-width: 48px;
  height: auto;
}
.site-footer .footer-menu {
  flex: 1;
  text-align: center;
}
.site-footer .footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.site-footer .footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px;
  transition: color 0.3s ease;
}
.site-footer .footer-menu ul li a:hover {
  color: #0d4519;
}
.site-footer .footer-menu ul li a:active {
  color: #0d4519;
  transform: scale(0.95);
}
.site-footer .footer-social-icons .social-icons {
  display: flex;
  gap: 15px;
}
.site-footer .footer-social-icons .social-icons a {
  color: #ccc;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.site-footer .footer-social-icons .social-icons a:hover {
  color: #0d4519;
  transform: translateY(-3px) scale(1.05);
}
.site-footer .footer-social-icons .social-icons a:active {
  transform: translateY(0) scale(0.95);
  color: #0d4519;
}
.site-footer .footer-divider {
  border-top: 1px solid #444;
  margin: 20px 0;
}
.site-footer .footer-copyright {
  text-align: center;
  width: 100%;
  color: #aaa;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .site-footer .footer-row:first-child {
    flex-direction: column;
    gap: 25px;
  }
  .site-footer .footer-row:first-child .footer-logo {
    order: 1;
  }
  .site-footer .footer-row:first-child .footer-menu {
    order: 2;
  }
  .site-footer .footer-row:first-child .footer-social-icons {
    order: 3;
  }
  .site-footer .footer-menu ul {
    flex-wrap: wrap;
    gap: 15px;
  }
} /*# sourceMappingURL=style.css.map */
