body {
    direction: rtl !important;
    text-align: right !important;
    font-family: "Readex Pro", sans-serif;
  }

  .font-bold {
    font-weight: 700 !important;
  }

.register-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.register-btn i {
    color: #c6a269;
    margin-left: 6px;
    font-size: 16px;
}

.register-btn:hover {
    background-color: rgba(214, 189, 143, 0.3);
    color: white;
}

.hero-area {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    padding: 0;
}

.timer-bg-area {
    border-radius: 8px 8px 0 0;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    width: 100%;
    padding: 40px 100px;
    z-index: 2;
    margin-bottom: 0; 
    background-color: #8787872e;
}

@media (max-width: 767px) {
    .timer-bg-area {
      width: 100%;
      position: relative;
      padding: 40px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .timer-bg-area {
      width: auto;
      position: relative;
      padding: 40px;
    }
  }
  @media (max-width: 767px) {
    .timer-bg-area .timer-btn-area {
      position: relative;
      bottom: 0;
      width: 100%;
      display: inline-block;
      margin-top: 30px;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .timer-bg-area .timer-btn-area {
      position: relative;
      bottom: 0;
      width: 100%;
      margin-top: 30px;
    }
  }
  .timer-bg-area .timer-btn-area .timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  @media (max-width: 767px) {
    .timer-bg-area .timer-btn-area .timer {
      display: block;
      text-align: center;
      margin: 0 auto;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .timer-bg-area .timer-btn-area .timer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  }
  .timer-bg-area .timer-btn-area .timer .time-box.box2::after {
    display: none;
  }
  .timer-bg-area .timer-btn-area .timer .time-box {
    display: inline-block;
    position: relative;
    z-index: 1;
    border-radius: var(--rounded-lg, 8px);
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 36px;
  }
  @media (max-width: 767px) {
    .timer-bg-area .timer-btn-area .timer .time-box {
      margin-bottom: 20px;
    }
  }
  .timer-bg-area .timer-btn-area .timer .time-box .time-value span {
    color: var(--ztc-text-text-1);
    text-align: center;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s16);
    font-style: normal;
    font-weight: var(--ztc-weight-medium);
    line-height: 16px;
    text-transform: uppercase;
    display: block;
    padding-top: 12px;
  }
  .timer-bg-area .timer-btn-area .timer .time-value {
    color: var(--ztc-text-text-1);
    text-align: center;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s32);
    font-style: normal;
    font-weight: var(--ztc-weight-bold);
    line-height: 32px;
    text-transform: uppercase;
    display: inline-block;
  }

/* Mobile responsive styling for timer area */
@media (max-width: 767px) {
  .timer-bg-area {
    padding: 20px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .timer-bg-area .row {
    flex-direction: row;
    align-items: center;
  }
  
  .timer-bg-area .col-lg-5,
  .timer-bg-area .col-lg-7 {
    width: 50%;
    padding: 0 10px;
  }
  
  .timer-bg-area .heading12 h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .timer-bg-area .location-text {
    font-size: 12px;
  }
  
  .timer-bg-area .timer-btn-area {
    position: static;
    margin-top: 0;
  }
  
  .timer-bg-area .timer-btn-area .timer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .timer-bg-area .timer-btn-area .timer .time-box {
    padding: 8px 15px;
    margin: 2px;
    min-width: auto;
  }
  
  .timer-bg-area .timer-btn-area .timer .time-value {
    font-size: 14px;
    text-align: center;
  }
  
  .timer-bg-area .timer-btn-area .timer .time-value span {
    font-size: 10px;
    padding-top: 5px;
  }
}

/* Adjustments for very small screens */
@media (max-width: 480px) {
  .timer-bg-area .row {
    flex-direction: column;
  }
  
  .timer-bg-area .col-lg-5,
  .timer-bg-area .col-lg-7 {
    width: 100%;
    text-align: center;
  }
  
  .timer-bg-area .timer-btn-area {
    margin-top: 15px;
  }
  
  .timer-bg-area .timer-btn-area .timer {
    justify-content: center;
  }
}

/* Location text styling */
.location-text {
    color: white !important;
}

.location-icon {
    color: #c6a269;
    margin-left: 5px;
}

/* Add space before dropdown arrow */
.dropdown-icon {
    margin-right: 5px;
}

/* About Section Styling */
.about {
    padding: 60px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-title .centered-logo {
    max-width: 120px;
    margin-bottom: 25px;
}

.badge-container {
    margin-bottom: 20px;
}

.goals-badge {
    display: inline-block;
    background-color: rgba(214, 189, 143, 0.2);
    color: #0a4b37;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    border-radius: 4px;
    border: 1px solid rgba(214, 189, 143, 0.5);
}

.about-title h3 {
    color: #0a4b37;
    font-size: 28px;
    font-weight: 700;
    margin-top: 10px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .about-title h3 {
        font-size: 22px;
        max-width: 95%;
    }
}

/* About section responsive fixes */
@media (max-width: 991px) and (min-width: 768px) {
  .about-img {
    margin-bottom: 30px;
  }
  
  .about-img img {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .accordian-area {
    padding: 0 15px;
  }
  
  .about-title h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .about-img {
    margin-bottom: 25px;
  }
  
  .about-img img {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .about-title h3 {
    font-size: 24px;
  }
}

/*============= FAQ CSS AREA ===============*/

  .faq-widget-area ul {
    justify-content: center;
    background: #F4F4F4;
    border-radius: 16px;
    padding: 18px;
    width: 994px;
    margin: 0 auto;
  }
  @media (max-width: 767px) {
    .faq-widget-area ul {
      width: 100%;
    }
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-widget-area ul {
      width: 100%;
    }
  }
  .faq-widget-area ul li button {
    color: var(--ztc-text-text-2);
    text-align: center;
    font-family: var(--ztc-family-font1);
    font-size: var(--ztc-font-size-font-s18);
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 100% */
    display: inline-block;
    background: var(--ztc-text-text-1);
    padding: 16px 20px;
    border-radius: 4px;
    margin: 0 0 0 16px;
  }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-widget-area ul li button {
      margin-bottom: 10px;
    }
  }
  @media (max-width: 767px) {
    .faq-widget-area ul li button {
      margin-bottom: 10px;
    }
  }
  .faq-widget-area ul li button.active {
    background: var(--ztc-text-text-4);
    transition: all 0.4s;
    color: var(--ztc-text-text-2);
  }
   .accordian-area .accordion-item {
    border: none;
    background: #0a4b37;
    border-radius: 8px;
    padding: 0;
  }
   .accordian-area .accordion-item button {
    color: #fff;
    font-size: var(--ztc-font-size-font-s18);
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 100% */
    letter-spacing: -0.36px;
    border: none;
    box-shadow: none;
    background: #F4F4F4;
    padding: 20px 18px;
    position: relative; /* Ensure proper positioning context */
  }
   .accordian-area .accordion-item button.accordion-button:not(.collapsed) {
    background: none;
    transition: all 0.4s;
  }
   .accordian-area .accordion-item button.accordion-button:not(.collapsed)::before {
    background: #fff !important;
  }
   .accordian-area .accordion-item button.accordion-button:not(.collapsed)::after {
    filter: brightness(0); /* Make the arrow dark when expanded */
    transform: translateY(-50%) rotate(180deg); /* Rotate arrow when expanded */
  }
   .accordian-area .accordion-item button::before {
    height: 28px;
    width: 28px;
    background: #0a4b37;
    transition: all 0.4s;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 14px; /* Changed from left to right for RTL */
    top: 50%;
    transform: translateY(-50%);
  }
   .accordian-area .accordion-item button::after {
    z-index: 1;
    position: absolute;
    left: 21px; /* Position the arrow inside the circle */
    top: 50%;
    transform: translateY(-50%);
    margin: 0; /* Remove any default margins */
    width: 14px; /* Control the size of the arrow */
    height: 14px; /* Control the size of the arrow */
    background-size: 14px; /* Ensure proper sizing */
  }
   .accordian-area .accordion-item .accordion-body {
    padding: 0;
  }
   .accordian-area .accordion-item .accordion-body p {
    color:#fff;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    padding: 0 18px 18px 18px;
  }
  
  /*============= FAQ CSS AREA ===============*/

/* Accordion icon styling */
.accordion-icon {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.accordion-button {
  display: flex;
  align-items: center;
  padding-right: 50px !important; /* Add space for the toggle icon */
}

/* Adjust the before/after pseudo-elements to account for the new icon */
.accordian-area .accordion-item button::before {
  height: 28px;
  width: 28px;
  background:#0a4b37;
  transition: all 0.4s;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #ccc;
}

.accordion-button.collapsed {
    color: #000000;
}

.accordion-button.collapsed .accordion-icon {
    filter: brightness(10); /* Changed from brightness(0) to make it white when collapsed */
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
}

.accordion-button:not(.collapsed) .accordion-icon {
    filter: none; /* Remove brightness filter */
    color: #c6a269; /* Make the icon blue when expanded */
}

/* Accordion styling for collapsed and expanded states */
.accordian-area .accordion-item button.accordion-button.collapsed {
    color: #303030 !important;
    background: #FFFFFF !important; /* Changed to white when collapsed */
}

.accordian-area .accordion-item button.accordion-button.collapsed::before {
    background: #FFFFFF; /* Circle is white when collapsed */
}

.accordian-area .accordion-item button.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background: #0a4b37 !important; /* Blue background when expanded */
}

.accordian-area .accordion-item button.accordion-button:not(.collapsed)::before {
    background: #c6a269; /* Circle is blue when not collapsed */
}

/* Update icon colors */
.accordian-area .accordion-item button.accordion-button.collapsed .accordion-icon {
    filter: brightness(0); /* Make icon dark when collapsed */
    color: #303030;
}

.accordian-area .accordion-item button.accordion-button.not:not(.collapsed).accordion-icon {
    filter: brightness(10); /* Make icon white when expanded */
    color: #FFFFFF;
}

/* Blog Image Styling */
.blog-image {
    height: 330px !important;
    object-fit: cover;
    width: 100%;
}

.main-blog {
  position: relative;
  z-index: 1;
}
.main-blog .blog4-boxarea {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.main-blog .blog4-boxarea:hover .img1 img {
  transform: scale(1.1) rotate(4deg);
  transition: all 0.4s;
}
.main-blog .blog4-boxarea .img1 {
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border-radius: 8px;
}
.main-blog .blog4-boxarea .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: all 0.4s;
}


.main-blog .blog4-boxarea .content-area {
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.09);
  background: var(--ztc-bg-bg-1);
  padding: 24px 20px;
  border-radius: 8px 0 8px 8px;
  position: relative;
  z-index: 1;
  margin: -100px 0 0 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-blog .blog4-boxarea .content-area {
    margin: -100px 0 0 40px;
  }
}
@media (max-width: 767px) {
  .main-blog .blog4-boxarea .content-area {
    margin: -100px 0 0 40px;
  }
}
.main-blog .blog4-boxarea .content-area .arrow {
  position: absolute;
  top: -20px;
  left: -20px;
}
.main-blog .blog4-boxarea .content-area .arrow a {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  transition: all 0.4s;
  background: #c6a269;
  color: #0a4b37;
  font-size: var(--ztc-font-size-font-s20);
  border-radius: 50%;
  transform: rotate(45deg);
}
.main-blog .blog4-boxarea .content-area .arrow a:hover {
  background: #c7aa75;
  color: var(--ztc-text-text-1);
  transition: all 0.4s;
}
.main-blog .blog4-boxarea .content-area ul li {
  display: inline-block;
}
.main-blog .blog4-boxarea .content-area ul li a {
  color: var(--ztc-text-text-12);
  font-size: 14px;
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px; /* 100% */
  display: inline-block;
  transition: all 0.4s;
}
.main-blog .blog4-boxarea .content-area ul li a span {
  color: #E5E9F0;
  display: inline-block;
  margin: 0 8px;
}
.main-blog .blog4-boxarea .content-area ul li a img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  margin: -5px 0 0 6px;
}
.main-blog .blog4-boxarea .content-area a {
  color: var(--ztc-text-text-11);
  font-size: 16px;
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 24px; /* 125% */
  display: inline-block;
  transition: all 0.4s;
}
.main-blog .blog4-boxarea .content-area a:hover {
  color: var(--ztc-text-text-13);
  transition: all 0.4s;
}
.main-blog .blog4-boxarea .content-area .readmore {
  color: var(--ztc-text-text-11);
  font-size: var(--ztc-font-size-font-s20);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 20px;
  display: inline-block;
  transition: all 0.4s;
  text-transform: uppercase;
}
.main-blog .blog4-boxarea .content-area .readmore:hover {
  color: var(--ztc-text-text-13);
  transition: all 0.4s;
}
.main-blog .blog4-boxarea .content-area .readmore i {
  margin-right: 4px;
  transform: rotate(45deg);
  transition: all 0.4s;
}

.bloginner-section-area .blog4-boxarea {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.bloginner-section-area .blog4-boxarea:hover .img1 img {
  transform: scale(1.1) rotate(4deg);
  transition: all 0.4s;
}
.bloginner-section-area .blog4-boxarea .img1 {
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border-radius: 8px;
}
.bloginner-section-area .blog4-boxarea .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  transition: all 0.4s;
}
.bloginner-section-area .blog4-boxarea .content-area {
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.09);
  background: var(--ztc-bg-bg-1);
  padding: 24px 20px;
  border-radius: 8px 0 8px 8px;
  position: relative;
  z-index: 1;
  margin: -100px 0 0 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bloginner-section-area .blog4-boxarea .content-area {
    margin: -100px 0 0 40px;
  }
}
@media (max-width: 767px) {
  .bloginner-section-area .blog4-boxarea .content-area {
    margin: -100px 0 0 40px;
  }
}
.bloginner-section-area .blog4-boxarea .content-area .arrow {
  position: absolute;
  top: -20px;
  left: -20px;
}
.bloginner-section-area .blog4-boxarea .content-area .arrow a {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  transition: all 0.4s;
  background: var(--ztc-bg-bg-3);
  color: var(--ztc-text-text-2);
  font-size: var(--ztc-font-size-font-s20);
  border-radius: 50%;
  transform: rotate(45deg);
}
.bloginner-section-area .blog4-boxarea .content-area .arrow a:hover {
  background: var(--ztc-bg-bg-2);
  color: var(--ztc-text-text-1);
  transition: all 0.4s;
}
.bloginner-section-area .blog4-boxarea .content-area ul li {
  display: inline-block;
}
.bloginner-section-area .blog4-boxarea .content-area ul li a {
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px; /* 100% */
  display: inline-block;
  transition: all 0.4s;
}
.bloginner-section-area .blog4-boxarea .content-area ul li a span {
  color: #E5E9F0;
  display: inline-block;
  margin: 0 8px;
}
.bloginner-section-area .blog4-boxarea .content-area ul li a img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  margin: -5px 0 0 6px;
}
.bloginner-section-area .blog4-boxarea .content-area a {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 30px; /* 125% */
  display: inline-block;
  transition: all 0.4s;
}
.bloginner-section-area .blog4-boxarea .content-area a:hover {
  color: var(--ztc-text-text-4);
  transition: all 0.4s;
}
.bloginner-section-area .blog4-boxarea .content-area .readmore {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s20);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 20px;
  display: inline-block;
  transition: all 0.4s;
  text-transform: uppercase;
}
.bloginner-section-area .blog4-boxarea .content-area .readmore:hover {
  color: var(--ztc-text-text-4);
  transition: all 0.4s;
}
.bloginner-section-area .blog4-boxarea .content-area .readmore i {
  margin-right: 4px;
  transform: rotate(45deg);
  transition: all 0.4s;
}

.main-event {
  position: relative;
  z-index: 2;
}
.main-event .tabs-button ul {
  justify-content: center;
}
.main-event .tabs-button ul li button {
  border-radius: 8px;
  background: #F5F5F5;
  padding: 8px;
  width: 180px;
  display: flex;
  align-items: center;
  text-align: center;
  height: 56px;
  margin: 0 0 0 16px;
}
@media (max-width: 767px) {
  .main-event .tabs-button ul li button {
    margin: 0 0 10px 0;
  }
}
.main-event .tabs-button ul li button.active {
  border-radius: 8px;
  background: #0a4b37;
  transition: all 0.4s;
}
.main-event .tabs-button ul li button.active span.calender {
  background: #c6a269;
  transition: all 0.4s;
}
.main-event .tabs-button ul li button.active span.calender img {
  filter: none;
}
.main-event .tabs-button ul li button.active .pl-8 .day {
  color: var(--ztc-text-text-1);
  transition: all 0.4s;
}
.main-event .tabs-button ul li button.active .pl-8 .date {
  color: var(--ztc-text-text-1);
  transition: all 0.4s;
}
.main-event .tabs-button ul li button span.calender {
  border-radius: 4px;
  background: #0a4b37;
  height: 43px;
  width: 55px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  transition: all 0.4s;
}
.main-event .tabs-button ul li button span.calender img {
  transition: all 0.4s;
  height: 24px;
  width: 24px;
  filter: brightness(0) invert(1);
}
.main-event .tabs-button ul li button .pl-8 {
  padding-right: 8px;
  display: inline-block;
  text-align: start;
}
.main-event .tabs-button ul li button .pl-8 .day {
  color: var(--ztc-text-text-8);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s16);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 16px; /* 100% */
  display: inline-block;
  transition: all 0.4s;
  text-align: start;
}
.main-event .tabs-button ul li button .pl-8 .date {
  color: var(--ztc-text-text-8);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s14);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 14px; /* 100% */
  display: inline-block;
  transition: all 0.4s;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea {
  position: relative;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea::after {
  position: absolute;
  content: "";
  height: 93%;
  width: 1px;
  right: 45.7%;
  top: 0;
  transition: all 0.4s;
  background: #E6E7E8;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea::after {
    display: none;
  }
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea h1 {
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 24px;
  display: inline-block;
  transition: all 0.4s;
  height: 56px;
  width: 56px;
  text-align: center;
  line-height: 56px;
  background: #0a4b37;
  border-radius: 50%;
  position: absolute;
  right: 43%;
  top: 88px;
  z-index: 1;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea h1.active {
  background: #c6a269;
  color: #0a4b37;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea h1 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea h1 {
    display: none;
  }
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .img1 {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .img1 {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .img1 {
    margin-bottom: 30px;
  }
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .img1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area ul li {
  display: inline-block;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area ul li a {
  color: var(--ztc-text-text-8);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s16);
  font-style: normal;
  line-height: 16px; /* 100% */
  display: inline-block;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area ul li a {
    display: block;
    margin-bottom: 10px;
  }
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area ul li a img {
  filter: brightness(0);
  margin: 0 0 0 4px;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area ul li a span {
  margin: 0 8px;
  display: inline-block;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .head {
  color: var(--ztc-text-text-8);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 24px;
  display: inline-block;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .head {
    line-height: 32px;
  }
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area {
    display: inline-block;
  }
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area {
  display: flex;
  align-items: center;
  padding: 0 0 0 12px;
  border-left: 1px solid #E6E7E8;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area .img1 {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area .img1 {
    margin-bottom: 0;
  }
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area .img1 img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area .text {
  padding-right: 12px;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area .text a {
  color: var(--ztc-text-text-8);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  line-height: 18px;
  display: inline-block;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area .text a {
    line-height: 18px;
  }
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area .text p {
  color: var(--ztc-text-text-9);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s16);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  display: inline-block;
  transition: all 0.4s;
}
.main-event .tab-content .tab-pane .event-widget-area .event2-boxarea.box3::after {
  display: none;
}
@media (max-width: 767px) {
  .main-event .tab-content .tab-pane .event-widget-area .event2-boxarea .content-area .author-area .autho-name-area {
    padding: 0 !important;
    margin-bottom: 16px;
    border: none;
  }
}


.eventy {
  position: relative;
  z-index: 1;
  background: #FBF9F4;
}
.eventy .nav.nav-pills {
  justify-content: center;
}
.eventy .nav.nav-pills .nav-item button {
  border-radius: 8px;
  border: 1px solid rgba(26, 23, 25, 0.05);
  background: #FFF;
  padding: 0;
  margin: 0 0 0 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eventy .nav.nav-pills .nav-item button {
    margin: 30px 0 0 30px;
  }
}
@media (max-width: 767px) {
  .eventy .nav.nav-pills .nav-item button {
    margin: 30px 0 0 0;
    width: 100%;
  }
}
.eventy .nav.nav-pills .nav-item button.active {
  background: #0a4b37;
  transition: all 0.4s;
}
.eventy .nav.nav-pills .nav-item button.active .day {
  background: #c6a269;
  color: #0a4b37;
  transition: all 0.4s;
}
.eventy .nav.nav-pills .nav-item button .vl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
.eventy .nav.nav-pills .nav-item button .day {
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  display: block;
  text-align: center;
  border-radius: 8px 8px 0px 0px;
  background: rgba(26, 23, 25, 0.05);
  padding: 8px 0;
}
.eventy .nav.nav-pills .nav-item button .cal {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s44);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 44px;
  display: inline-block;
  transition: all 0.4s;
  text-align: center;
  margin: 0 0 0 28px;
}
.eventy .nav.nav-pills .nav-item button span.date {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s22);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 26px; /* 118.182% */
  display: inline-block;
}
.eventy .tab-content .tab-pane .tabs-widget-boxarea {
  background: var(--ztc-bg-bg-1);
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .eventy .tab-content .tab-pane .tabs-widget-boxarea {
    padding: 16px;
  }
}
.eventy .tab-content .tab-pane .tabs-widget-boxarea .img1 img {
  height: 270px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.eventy .tab-content .tab-pane .tabs-widget-boxarea .content-area {
  padding: 0 30px 0 0;
}
@media (max-width: 767px) {
  .eventy .tab-content .tab-pane .tabs-widget-boxarea .content-area {
    padding: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .eventy .tab-content .tab-pane .tabs-widget-boxarea .content-area {
    padding: 0;
    margin-top: 30px;
  }
}
.eventy .tab-content .tab-pane .tabs-widget-boxarea .content-area ul li {
  display: inline-block;
}
.eventy .tab-content .tab-pane .tabs-widget-boxarea .content-area ul li a {
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s16);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 16px; /* 100% */
}
.eventy .tab-content .tab-pane .tabs-widget-boxarea .content-area ul li a span {
  margin: 0 8px;
}
.eventy .tab-content .tab-pane .tabs-widget-boxarea .content-area a.head {
  color: #0a4b37;
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 24px;
  display: inline-block;
  transition: all 0.4s;
}
.eventy .tab-content .tab-pane .tabs-widget-boxarea .content-area p {
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font2);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 28px;
}

/* Make text color white when pill is active */
.eventy .nav.nav-pills .nav-item button.active span.date,
.eventy .nav.nav-pills .nav-item button.active .cal,
.eventy .nav.nav-pills .nav-item button.active .vl-flex {
  color: #ffffff !important;
  transition: all 0.4s;
}

.eventy .nav.nav-pills .nav-item button span.date,
.eventy .nav.nav-pills .nav-item button .cal,
.eventy .nav.nav-pills .nav-item button .vl-flex {
  color: var(--ztc-text-text-2);
  transition: all 0.4s;
}

/* Also ensure the day section has correct contrast */
.eventy .nav.nav-pills .nav-item button.active .day {
  background: #c6a269;
  color: #0a4b37;
  font-weight: 600;
  transition: all 0.4s;
}

/* Fix for text inside the pills */
.eventy .nav.nav-pills .nav-item button .day {
  color: var(--ztc-text-text-3);
  background: rgba(26, 23, 25, 0.05);
  transition: all 0.4s;
}

/* Fix for tabs in other section */
.main-event .tabs-button ul li button.active .pl-8 .day,
.main-event .tabs-button ul li button.active .pl-8 .date {
  color: #ffffff !important;
  transition: all 0.4s;
}

/* General rule for any tabs with active state */
.nav-pills .nav-link.active {
  color: #ffffff !important;
}

.nav-pills .nav-link.active * {
  color: #ffffff !important;
}

.mobile-header.mobile-haeder1 {
  background: #1a171975;
  position: fixed;
}
.mobile-header.mobile-haeder1 .mobile-logo {
  width: 175px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-header.mobile-haeder1 .dots-menu {
  color: var(--ztc-bg-bg-1);
}

.mobile-sidebar.mobile-sidebar1 {
  background: #fff;
}
.mobile-sidebar.mobile-sidebar1 .menu-close {
  color: var(--ztc-bg-bg-2);
}
.mobile-sidebar.mobile-sidebar1 .mobile-nav.mobile-nav1 ul span.submenu-button:before {
  background: var(--ztc-text-text-2);
}
.mobile-sidebar.mobile-sidebar1 .mobile-nav.mobile-nav1 ul span.submenu-button::after {
  background: var(--ztc-text-text-2);
}
.mobile-sidebar.mobile-sidebar1 .mobile-nav.mobile-nav1 ul li a {
  color: var(--ztc-bg-bg-2);
  font-family: var(--ztc-family-font1) !important;
}
.mobile-sidebar.mobile-sidebar1 .allmobilesection .vl-btn1 {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.mobile-sidebar.mobile-sidebar1 .single-footer h3 {
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  line-height: var(--ztc-font-size-font-s20);
  font-weight: var(--ztc-weight-bold);
  color: var(--ztc-bg-bg-2);
  margin-top: 20px;
}
.mobile-sidebar.mobile-sidebar1 .footer1-contact-info .contact-info-single {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.mobile-sidebar.mobile-sidebar1 .footer1-contact-info .contact-info-single .contact-info-icon span {
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background: #0a4b37;
  border: 1px solid #c6a269;
  color: var(--ztc-bg-bg-1);
  transition: all 0.4s;
  display: inline-block;
  font-size: 14px;
}
.mobile-sidebar.mobile-sidebar1 .footer1-contact-info .contact-info-single .contact-info-text a {
  font-family: var(--ztc-family-font2);
  font-size: var(--ztc-font-size-font-s16);
  line-height: var(--ztc-font-size-font-s20);
  font-weight: var(--ztc-weight-regular);
  color: var(--ztc-bg-bg-2);
  transition: all 0.4s;
  display: inline-block;
  margin-right: 10px;
}
.mobile-sidebar.mobile-sidebar1 .footer1-contact-info .social-links-mobile-menu ul {
  margin-top: 16px;
}
.mobile-sidebar.mobile-sidebar1 .footer1-contact-info .social-links-mobile-menu ul li {
  display: inline-block;
}
.mobile-sidebar.mobile-sidebar1 .footer1-contact-info .social-links-mobile-menu ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 23px;
  display: inline-block;
  background: var(--ztc-bg-bg-3);
  color: var(--ztc-bg-bg-2);
  transition: all 0.4s;
  border-radius: 50%;
  margin: 0 0 0 6px;
}
.mobile-sidebar.mobile-sidebar1 .footer1-contact-info .social-links-mobile-menu ul li a:hover {
  transform: translateY(-5px);
  background: #c6a269;
  color: #0a4b37;
  transition: all 0.4s;
}


.homepage1-body, html {
  overflow-x: hidden !important;
}

.commingsoon {
  height: 280px !important;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(5px);
  border-radius: 4px;
}

.homepage1-body {
  overflow-x: hidden;
}
.homepage1-body .header-area.homepage1 {
  position: absolute;
  width: 100%;
  z-index: 9999;
  padding: 16px 0;
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 .header-elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu {
  position: relative;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li {
  display: inline-block;
  position: relative;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb {
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb:hover .img1::after {
  transform: scale(1);
  transition: all 0.4s;
  visibility: visible;
  opacity: 0.7;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
  top: 42%;
  visibility: visible;
  opacity: 1;
  transition: all 0.6s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .img1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .img1::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  transition: all 0.4s;
  background: var(--ztc-text-text-2);
  opacity: 0;
  border-radius: 4px;
  transform: scale(0.8);
  z-index: 1;
  visibility: hidden;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .img1 img {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  transition: all 0.4s;
  border: 1px solid #E5E7EB;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn {
  position: absolute;
  top: 30%;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  transition: all 0.6s;
  margin: 0 auto;
  right: 25%;
  left: 25%;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn .header-btn1 {
  color: var(--ztc-text-text-1);
  transition: all 0.4s;
  padding: 6px 15px;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-content a {
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  line-height: var(--ztc-font-size-font-s24);
  font-weight: var(--ztc-weight-semibold);
  color: var(--ztc-text-text-2);
  transition: all 0.4s;
  margin-top: 20px;
  text-align: center;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li:hover .tp-submenu {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 9;
  top: 50px;
  position: absolute;
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li:hover ul.dropdown-padding {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 9;
  top: 50px;
  position: absolute;
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li a {
  font-size: var(--ztc-font-size-font-s18);
  font-weight: var(--ztc-weight-medium);
  color: var(--ztc-text-text-2);
  display: inline-block;
  transition: all 0.4s;
  padding: 0 20px;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li:hover > a {
  transition: all 0.4s;
  color: #c6a269 !important;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: var(--ztc-text-text-1);
  top: 100px;
  z-index: 1;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 15px;
  right: -160px;
  width: 1100px;
  max-height: 600px;
  overflow: hidden;
  overflow-y: scroll;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: var(--ztc-text-text-1);
  top: 100px;
  width: 225px;
  z-index: 1;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 15px;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li.main-small-menu {
  position: relative;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li.main-small-menu:hover > a {
  transition: all 0.4s;
  padding-right: 25px;
  color: var(--ztc-text-text-4);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li.main-small-menu:hover > a::after {
  background: var(--ztc-text-text-4);
  transition: all 0.4s;
  visibility: visible;
  opacity: 1;
  color: var(--ztc-text-text-4);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li {
  display: block;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li a {
  font-weight: var(--ztc-weight-medium);
  transition: all 0.4s;
  padding: 8px;
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  color: var(--ztc-text-text-2);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li a::after {
  position: absolute;
  content: "";
  height: 25px;
  width: 3px;
  transition: all 0.4s;
  z-index: -1;
  right: -10px;
  top: 20%;
  border-radius: 4px;
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  background: var(--ztc-text-text-4);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li a:hover {
  padding-right: 25px;
  color: var(--ztc-text-text-4);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li a:hover::after {
  border-radius: 4px;
  visibility: visible;
  transition: all 0.4s;
  opacity: 1;
  right: 0;
}

.header-area.homepage1.sticky {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 111;
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  background: #0a4b37;
  transition: all 0.4s;
}

/*============= HEADER CSS AREA ENDS ===============*/
/*============= HEADER CSS AREA ENDS ===============*/
.homepage1-body, html {
  overflow-x: hidden !important;
}

.homepage1-body {
  overflow-x: hidden;
}
.homepage1-body .header-area.homepage1 {
  position: absolute;
  width: 100%;
  z-index: 9;
  padding: 16px 0;
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 nav#navbar-example2 {
  display: block !important;
  padding: 0 !important;
}
.homepage1-body .header-area.homepage1 .header-elements .site-logo img {
  width: 180px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li a.nav-link.active {
  color: var(--ztc-text-text-2);
  font-weight: var(--ztc-weight-medium) !important;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu .tp-submenu {
  right: -370px;
}
.homepage1-body .header-area.homepage1 .header-elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu {
  position: relative;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li {
  display: inline-block;
  position: relative;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .all-images-menu {
  display: flex;
  align-items: center;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb {
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  margin: 0 0 0 20px;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb:hover .img1::after {
  transform: scale(1);
  transition: all 0.4s;
  visibility: visible;
  opacity: 0.4;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb:hover .homemenu-btn {
  top: 34%;
  visibility: visible;
  opacity: 1;
  transition: all 0.6s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .img1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .img1::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  transition: all 0.4s;
  background: var(--ztc-text-text-2);
  opacity: 0;
  border-radius: 4px;
  transform: scale(0.8);
  z-index: 1;
  visibility: hidden;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .img1 img {
  height: 100%;
  width: 100%;
  border-radius: 4px;
  transition: all 0.4s;
  border: 1px solid #E5E7EB;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn {
  position: absolute;
  top: 10%;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  transition: all 0.6s;
  margin: 0 auto;
  right: 16%;
  left: 16%;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn .vl-btn1 {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s20);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 20px;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  background: var(--ztc-bg-bg-3);
  padding: 16px 20px;
  display: inline-block;
  border-radius: 8px;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn .vl-btn1:hover {
  transition: all 0.4s;
  color: var(--ztc-text-text-1);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn .vl-btn1:hover::before {
  width: 100%;
  transition: all 0.4s;
  visibility: visible;
  opacity: 1;
  right: 0;
  top: 0;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn .vl-btn1:hover::after {
  background: var(--ztc-bg-bg-1);
  opacity: 0.1;
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn .vl-btn1::after {
  position: absolute;
  content: "";
  height: 36px;
  width: 36px;
  transition: all 0.4s;
  border-radius: 50%;
  background: var(--ztc-bg-bg-2);
  opacity: 0.1;
  right: 8px;
  top: 8px;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-btn .vl-btn1::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  transition: all 0.4s;
  background: var(--ztc-bg-bg-2);
  right: 50%;
  top: 0;
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu .homemenu-thumb .homemenu-text a {
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s16);
  line-height: 20px;
  text-align: center;
  display: block;
  transition: all 0.4s;
  color: var(--ztc-text-text-2);
  font-weight: var(--ztc-weight-bold);
  padding: 10px 0;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li:hover .tp-submenu {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 9;
  top: 201.3%;
  position: absolute;
  transition: all 0.4s;
  transform: scale(1);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li:hover ul.dropdown-padding {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 9;
  top: 201.3%;
  transform: scale(1);
  position: absolute;
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li a {
  font-size: var(--ztc-font-size-font-s16);
  font-weight: var(--ztc-weight-medium);
  color: var(--ztc-text-text-1);
  display: block;
  transition: all 0.4s;
  padding: 0 20px;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li a i.fa-solid.fa-angle-down {
  font-size: var(--ztc-font-size-font-s12) !important;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li:hover > a {
  transition: all 0.4s;
  color: var(--ztc-text-text-4) !important;
  font-weight: var(--ztc-weight-medium);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li .tp-submenu {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: var(--ztc-text-text-1);
  top: 201.3%;
  transform: scale(1, 0);
  z-index: 0;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 20px;
  right: -240px;
  width: 1300px;
  max-height: 630px;
  overflow: hidden;
  overflow-y: scroll;
  transform-origin: top;
  display: block;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding {
  visibility: hidden;
  opacity: 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  position: absolute;
  background: var(--ztc-text-text-1);
  top: 201.3%;
  transform: scale(1, 0);
  width: 225px;
  z-index: 0;
  transition: all 0.4s;
  border-radius: 5px;
  padding: 15px;
  display: block;
  transform-origin: top;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li.main-small-menu {
  position: relative;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li.main-small-menu:hover > a {
  transition: all 0.4s;
  padding-right: 15px;
  color: var(--ztc-text-text-4);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li.main-small-menu:hover > a::after {
  background: var(--ztc-text-text-4);
  transition: all 0.4s;
  visibility: visible;
  opacity: 1;
  color: var(--ztc-text-text-4);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li {
  display: block;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li a {
  font-weight: var(--ztc-weight-medium);
  transition: all 0.4s;
  font-size: var(--ztc-font-size-font-s16);
  padding: 8px;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  color: var(--ztc-text-text-2);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li a::after {
  position: absolute;
  content: "";
  height: 25px;
  width: 3px;
  transition: all 0.4s;
  z-index: -1;
  right: -10px;
  top: 20%;
  border-radius: 4px;
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  background: var(--ztc-text-text-4);
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li a:hover {
  padding-right: 15px;
  color: var(--ztc-text-text-2);
  font-weight: var(--ztc-weight-medium);
  transition: all 0.4s;
}
.homepage1-body .header-area.homepage1 .header-elements .main-menu ul li ul.dropdown-padding li a:hover::after {
  border-radius: 4px;
  visibility: visible;
  transition: all 0.4s;
  opacity: 1;
  right: 0;
}
.homepage1-body .header-area.homepage1 .header-elements .btn-area {
  display: flex;
  align-items: center;
}
.homepage1-body .header-area.homepage1 .header-elements .btn-area .search-icon {
  padding: 0 0 0 20px;
  border-left: 2px solid #c6a269;
}
.homepage1-body .header-area.homepage1 .header-elements .btn-area ul {
  margin: 0 20px 0 0;
}
.homepage1-body .header-area.homepage1 .header-elements .btn-area ul li {
  display: inline-block;
}
.homepage1-body .header-area.homepage1 .header-elements .btn-area ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.4s;
  color: var(--ztc-text-text-2);
  background: var(--ztc-bg-bg-1);
  font-size: var(--ztc-font-size-font-s18);
  margin: 0 0 0 6px;
}
.homepage1-body .header-area.homepage1 .header-elements .btn-area ul li a:hover {
  background: var(--ztc-bg-bg-3);
  transition: all 0.4s;
}

.header-area.homepage1.sticky {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 111;
  animation-name: fade-in-down;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  background: var(--ztc-text-text-2);
  transition: all 0.4s;
}



/*============= HEADER SEARCH CSS AREA STARTS ===============*/
.header-search-container form input {
  outline: none;
  border: none;
  background: none;
  font-family: var(--ztc-family-font1);
  font-weight: 500;
}

.header-search-form-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 9999;
  background-color: #fff;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1), visibility 0.8s step-end;
}

.header-search-form-wrapper.open {
  transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1), visibility 0.8s step-start;
  transform: translate3d(0, 0, 0);
}

.header-search-form-wrapper .search-form {
  margin: 0 auto;
  position: relative;
  text-align: center;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.header-search-form-wrapper .search-form input[type=search] {
  height: 65px;
  line-height: 65px;
  font-size: 28px;
  background-color: transparent;
  text-align: right;
  border: none;
  border-bottom: 1px solid #dddbdb;
  padding-right: 0;
  border-radius: 0;
  width: 100%;
  color: var(--ztc-text-text-2);
}

.header-search-form-wrapper .search-form input[type=search]::-moz-placeholder {
  color: #a4a4a4;
  opacity: 1;
}

.header-search-form-wrapper .search-form input[type=search]::placeholder {
  color: #a4a4a4;
  opacity: 1;
}

.header-search-form-wrapper .search-form input[type=search]:-ms-input-placeholder {
  color: #a4a4a4;
}

.header-search-form-wrapper .search-form input[type=search]::-ms-input-placeholder {
  color: #a4a4a4;
}

.header-search-form-wrapper .search-submit {
  position: absolute;
  height: 50px;
  width: 50px;
  bottom: 0;
  left: 0;
  background-color: transparent;
  color: #9F9F9F;
  font-size: 24px;
  border: none;
  color: #2B495A;
}

.header-search-form-wrapper .tx-search-close {
  background: rgba(204, 204, 204, 0.2705882353);
  width: 54px;
  height: 54px;
  border-width: 18px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  line-height: 54px;
  text-align: center;
  cursor: pointer;
  font-size: 30px;
}

.header-search-form-wrapper .tx-search-close::before, .header-search-form-wrapper .tx-search-close::after {
  background-color: var(--color-black);
}

.header-search-container {
  width: 100%;
  height: 100%;
  max-width: 1170px;
  border: 0;
  padding: 0;
  background: 100% 0;
  transform: translate3d(0, calc(100% - 100px), 0);
  transition: transform 0.85s cubic-bezier(0.175, 1, 0.275, 1);
  margin: auto;
  opacity: 0;
  visibility: hidden;
}

.header-search-form-wrapper.open .header-search-container {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}



.about3-section-area {
  position: relative;
  z-index: 1;
}
.about3-section-area .about3-images {
  position: relative;
  z-index: 1;
}
.about3-section-area .about3-images .about-img10 {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.about3-section-area .about3-images .img1 {
  background: #FFEBEC;
  border-radius: 50%;
  padding: 10px;
  overflow: hidden;
}
.about3-section-area .about3-images .img1:hover img {
  transform: scale(1.1) rotate(-4deg);
  transition: all 0.4s;
}
.about3-section-area .about3-images .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s;
}
.about3-section-area .about3-images .img2 {
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about3-section-area .about3-images .img2 {
    position: relative;
    margin-top: 20px;
  }
}
.about3-section-area .about3-images .img2:hover img {
  transform: scale(1.1) rotate(-4deg);
  transition: all 0.4s;
}
.about3-section-area .about3-images .img2 img {
  width: 240px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .about3-section-area .about3-images .img2 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about3-section-area .about3-images .img3 {
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about3-section-area .about3-images .img3 {
    position: relative;
    margin-top: 20px;
  }
}
.about3-section-area .about3-images .img3:hover img {
  transform: scale(1.1) rotate(-4deg);
  transition: all 0.4s;
}
.about3-section-area .about3-images .img3 img {
  width: 240px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .about3-section-area .about3-images .img3 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about3-section-area .about-header {
  padding: 0 0 0 80px;
}
@media (max-width: 767px) {
  .about3-section-area .about-header {
    padding: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about3-section-area .about-header {
    padding: 0;
    margin-top: 30px;
  }
}
.about3-section-area .about-header .counter-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about3-section-area .about-header .counter-area .counter-box {
  margin-top: 20px;
  border-right: 1px solid #E6E8E8;
  padding: 0 40px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .about3-section-area .about-header .counter-area .counter-box {
    padding: 0;
    border: none;
  }
}
.about3-section-area .about-header .counter-area .counter-box h3 {
  color: #0a4b37;
  text-align: center;
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s32);
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.img-circles-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about3-section-area .about3-images .img1 {
  background: #eef8fb;
  border-radius: 50%;
  padding: 12px;
  overflow: hidden;
  position: absolute;
  bottom: 5%;
  right: 0%;
  width: 520px;
  height: 520px;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about3-section-area .about3-images .img2 {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  position: absolute;
  right: 63%;
  top: 0%;
  width: 180px;
  height: 180px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about3-section-area .about3-images .img3 {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  position: absolute;
  top: 60%;
  right: 50%;
  width: 180px;
  height: 180px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about3-section-area .about3-images .img1:hover img,
.about3-section-area .about3-images .img2:hover img,
.about3-section-area .about3-images .img3:hover img {
  transform: scale(1.1) rotate(-4deg);
  transition: all 0.5s ease;
}

.counter-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-box {
  text-align: center;
  padding: 0 20px;
  position: relative;
}



.counter-box h3 {
  font-weight: 700;
  color: #0a4b37;
  font-size: 32px;
  margin-bottom: 10px;
}

.counter-box p {
  color: #333;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .img-circles-container {
    height: auto;
    flex-direction: column;
    padding: 20px 0;
  }
  
  .about3-section-area .about3-images .img1,
  .about3-section-area .about3-images .img2,
  .about3-section-area .about3-images .img3 {
    position: relative;
    margin: 10px auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 200px;
    height: 200px;
  }
  
  .counter-box {
    padding: 0 10px;
  }
  
  .counter-box:not(:last-child):after {
    display: none;
  }
}

.speakers-section-area {
  position: relative;
  padding: 80px 0;
}

.slider-nav-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.slider-button-prev, 
.slider-button-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a4b37;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #c6a269;
}

.slider-button-prev:hover, 
slider-button-next:hover {
  background-color: #c6a269;
  color: #0a4b37;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(9, 97, 124, 0.2);
}



.speaker-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.speaker-image {
  height: 280px;
  overflow: hidden;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.speaker-box:hover .speaker-image img {
  transform: scale(1.05);
}

.speaker-info {
  padding: 20px;
  text-align: center;
}

.speaker-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a4b37;
}

.speaker-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.speakers-slider-area .owl-nav {
  display: none;
}

.speakers-slider-area .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.speakers-slider-area .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.speakers-slider-area .owl-dots .owl-dot.active {
  background-color: #135943;
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .slider-nav-area {
    justify-content: center;
    margin: 20px 0 10px;
  }
}

.speakers-section-area {
  position: relative;
  padding: 80px 0;
}

.slider-nav-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

slider-button-prev, 
slider-button-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a4b37;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid #c6a269;
}

slider-button-prev:hover, 
slider-button-next:hover {
  background-color: #c6a269;
  color: #0a4b37;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(9, 97, 124, 0.2);
}

.speaker-box {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.speaker-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.speaker-image {
  height: auto;
  overflow: hidden;
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.speaker-box:hover .speaker-image img {
  transform: scale(1.05);
}



.speaker-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a4b37;
}

.speaker-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.speakers-slider-area {
  padding-bottom: 50px; 
}

.swiper-pagination {
  position: relative;
  bottom: 0 !important;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: #c6a269 !important;
}

@media (max-width: 767px) {
  .slider-nav-area {
    justify-content: center;
    margin: 20px 0 10px;
  }
}

.research-section-area {
  padding: 80px 0;
  background-color: #f9fbfd;
}

.research-header {
  margin-bottom: 40px;
}

.research-header .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.research-header .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.research-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.research-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.research-content {
  padding: 25px;
  flex-grow: 1;
}

.research-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a4b37;
  margin-bottom: 20px;
  line-height: 1.5;
}

.research-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.detail-item i {
  color: #c6a269;
  font-size: 16px;
}

.research-footer {
  padding: 15px 25px;
  background-color: #eef8fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.researcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.researcher-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}

.researcher-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.researcher-name {
  font-size: 14px;
  font-weight: 600;
  color: #0a4b37;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background-color: #0a4b37;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: #c6a269;
  color: #0a4b37;
}

@media (max-width: 767px) {
  .research-details {
    flex-direction: column;
    gap: 10px;
  }
  
  .research-footer {
    gap: 15px;
    align-items: flex-start;
  }
  
  .download-btn {
    align-self: flex-end;
  }
}

.testimonials-section {
  padding: 80px 0;
  background-color: #fff;
}

.video-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  min-height: 400px;
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #0a4b37;
  border: 2px solid #c6a269;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 10px rgba(214, 189, 143, 0.3);
}

.play-button:hover {
  background-color: #c6a269;
  color: #0a4b37;
  transform: scale(1.05);
  box-shadow: 0 0 0 15px rgba(9, 97, 124, 0.3);
}

.play-button i {
  margin-left: 5px;
}

.testimonials-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.testimonials-content .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: right;
}

.testimonials-slider {
  overflow: hidden;
  flex-grow: 1;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  text-align: right;
}

.testimonial-author {
  display: flex;
  align-items: center;
  flex-direction: row; 
  margin-top: 4px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0; 
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: right;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0a4b37;
  margin-bottom: 5px;
}

.author-location {
  font-size: 14px;
  color: #666;
  display: block;
}

.testimonial-nav {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: start; 
}

.participants-slider-pagination {
  position: relative;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.participants-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.participants-slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #135943;
  width: 15px;
  border-radius: 5px;
}

.participants-testimonials-slider .swiper-slide {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.participants-testimonials-slider .swiper-slide-active {
  opacity: 1;
}

/* تعديلات للشاشات الصغيرة */
@media (max-width: 991px) {
  .video-container {
    margin-bottom: 30px;
  }
  
  .testimonials-content {
    padding: 15px 0;
  }
}

@media (max-width: 767px) {
  .video-container {
    min-height: 300px;
  }
  
  .video-thumbnail {
    min-height: 300px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  
  .testimonials-content .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .author-info h4 {
    font-size: 16px;
  }
}

/* تعديلات جديدة لقسم آراء المشاركين */
.testimonials-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: 100%;
}

.testimonials-content .section-title {
  font-size: 30px;
  margin-bottom: 25px;
  text-align: right;
}

.testimonial-text-container {
  border-radius: 10px;
  background-color: #f9f9f9;
  padding: 20px;
  margin-bottom: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: right;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.testimonial-author-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0a4b37;
  margin: 0 0 5px 0;
}

.author-location {
  font-size: 14px;
  color: #666;
}

.testimonial-nav {
  display: flex;
  gap: 15px;
  justify-content: start;
  margin-top: 4px;
  width: 100%;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  background-color: #0a4b37;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: #c6a269;
  color: #0a4b37;
  transform: translateY(-3px);
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px 5px;
}

/* لضمان الاستجابة في الشاشات الصغيرة */
@media (max-width: 767px) {
  .testimonials-content {
    padding: 15px 10px;
  }
  
  .testimonial-text-container {
    padding: 15px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .author-info h4 {
    font-size: 16px;
  }
}

.books-articles-section {
  padding: 80px 0;
  background-color: #f9fbfd;
}

.book-display-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-display {
  background: linear-gradient(135deg, #0a4b37 0%, #04243a 100%);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.book-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.book-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.book-cover-container {
  margin: 0 auto;
  width: 70%;
  padding: 10px;
  position: relative;
}

.book-cover {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: perspective(800px) rotateY(5deg);
  transition: transform 0.5s ease;
  border-radius: 4px;
}

.book-cover:hover {
  transform: perspective(800px) rotateY(0deg);
}

.download-btn-container {
  margin-top: 20px;
}

.book-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  color: #0a4b37;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-download-btn:hover {
  background-color: #c7aa75;
  color: #0a4b37;
  transform: translateY(-3px);
}

.book-navigation {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 10px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn {
  margin-right: -20px;
}

.next-btn {
  margin-left: -20px;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* تنسيقات قائمة المقالات - الجانب الأيمن */
.articles-container {
  padding: 20px;
  height: 100%;
}

.section-header {
  margin-bottom: 30px;
  display: flex;
}

.articles-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a4b37;
  background-color: rgba(214, 189, 143, 0.3);
  padding: 8px 20px;
  border-radius: 8px;
  display: inline-block;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-item .article-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a4b37;
  margin-bottom: 15px;
  line-height: 1.5;
  padding: 25px 25px 10px 25px;
}

.article-item .article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background-color:#eef8fb;
}

.article-item .article-author {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
}

.article-item .article-author span {
  font-size: 14px;
  font-weight: 600;
  color: #0a4b37;
}

.article-item .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}

.article-item .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-item .article-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.article-item .article-date i {
  color: #c6a269;
}

@media (max-width: 991px) {
  .book-display {
    margin-bottom: 30px;
    min-height: 450px;
  }
  
  .article-item .article-meta {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  
  .article-item .article-author {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .book-display {
    padding: 30px 20px;
    min-height: 400px;
  }
  
  .book-cover-container {
    width: 60%;
  }
  
  .nav-btn {
    width: 35px;
    height: 35px;
  }
  
  .articles-container {
    padding: 15px 0;
  }
  
  .articles-title {
    font-size: 16px;
    padding: 6px 15px;
  }
  
  .article-item .article-title {
    font-size: 16px;
  }
}
/* نهاية تنسيقات قسم الكتب والمقالات */

.newsletter-horizontal-section {
  padding: 30px 0;
  background-color: #f5f8fa;
  margin: 40px 0;
}

.newsletter-horizontal-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-horizontal-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: rgba(9, 97, 124, 0.05);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.newsletter-header {
  flex: 0 0 200px;
  padding-left: 30px;
  position: relative;
  border-left: 1px solid #eee;
}

.newsletter-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0a4b37;
  margin-bottom: 5px;
}

.newsletter-header p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.newsletter-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-items {
  flex: 1;
  display: flex;
  align-items: flex-start;
  max-width: 60%;
  position: relative;
}

.news-item {
  display: flex;
  align-items: flex-start;
  padding: 0 15px;
  flex: 1;
}

.news-item-partial {
  position: relative;
}

.news-item-partial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, transparent, #fff);
}

.news-icon {
  flex-shrink: 0;
  color: #c6a269;
  font-size: 16px;
  margin-left: 10px;
  margin-top: 3px;
}

.news-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

.newsletter-cta {
  background-color: rgba(214, 189, 143, 0.2);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  flex: 0 0 360px;
  border: 1px solid rgba(214, 189, 143, 0.5);
}

.cta-text {
  font-size: 16px;
  font-weight: 700;
  color: #0a4b37;
  margin-left: 15px;
  white-space: nowrap;
}

.newsletter-form {
  display: flex;
  align-items: center;
  flex: 1;
}

.newsletter-form input {
  flex: 1;
  height: 42px;
  border-radius: 21px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 0 15px;
  font-size: 14px;
  text-align: right;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #135943;
}

.newsletter-form button {
  position: absolute;
  left: 62px;
  height: 32px;
  border-radius: 16px;
  border: none;
  background-color: #0a4b37;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 0 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #c6a269;
}

.newsletter-form button:hover {
  background-color: #c6a269;
  color: #0a4b37;
}

@media (max-width: 991px) {
  .newsletter-horizontal-container {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-header {
    flex: 0 0 auto;
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;
    width: 100%;
  }
  
  .newsletter-content {
    flex-direction: column;
    width: 100%;
  }
  
  .news-items {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .news-item {
    margin-bottom: 10px;
    width: 100%;
  }
  
  .newsletter-cta {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }
  
  .newsletter-form {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .newsletter-horizontal-container {
    padding: 20px;
  }
  
  .newsletter-cta {
    flex-direction: column;
  }
  
  .cta-text {
    margin-left: 0;
    margin-bottom: 10px;
  }
  
  .newsletter-form {
    width: 100%;
  }
}


.main-contact {
  position: relative;
  z-index: 1;
  background: var(--ztc-bg-bg-8);
}
.main-contact .contact4-boxarea {
  position: relative;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
}
.main-contact .contact4-boxarea h3 {
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s32);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 32px; /* 100% */
  text-transform: uppercase;
}
.main-contact .contact4-boxarea .input-area input {
  width: 100%;
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  margin-top: 16px;
}
.main-contact .contact4-boxarea .input-area input::-moz-placeholder {
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  opacity: 80%;
}
.main-contact .contact4-boxarea .input-area input::placeholder {
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  opacity: 80%;
}
.main-contact .contact4-boxarea .input-area textarea {
  width: 100%;
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  height: 140px;
  margin-top: 16px;
}
.main-contact .contact4-boxarea .input-area textarea::-moz-placeholder {
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  opacity: 80%;
}
.main-contact .contact4-boxarea .input-area textarea::placeholder {
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  opacity: 80%;
}
.main-contact .contact4-boxarea .input-area button {
  border: none;
  outline: none;
}
.main-contact .contact4-header {
  padding: 0 0 0 50px;
}
@media (max-width: 767px) {
  .main-contact .contact4-header {
    padding: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-contact .contact4-header {
    padding: 0;
    margin-top: 30px;
  }
}
.main-contact .contact4-header .contact-author-box {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.main-contact .contact4-header .contact-author-box .icons {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  transition: all 0.4s;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.main-contact .contact4-header .contact-author-box .icons img {
  filter: brightness(0) invert(1);
  height: 30px;
  width: 30px;
  display: inline-block;
}
.main-contact .contact4-header .contact-author-box .text {
  padding-left: 14px;
}
.main-contact .contact4-header .contact-author-box .text h4 {
  color: var(--ztc-text-text-1);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 18px;
  text-transform: uppercase;
}
.main-contact .contact4-header .contact-author-box .text a {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  display: inline-block;
  transition: all 0.4s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-contact .img1 {
    height: 330px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .main-contact .img1 {
    height: 330px;
    margin-bottom: 30px;
  }
}
.main-contact .img1 img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.main-contact .mapouter .gmap_canvas iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}



.main-footer {
  position: relative;
  z-index: 1;
  background: #FBF9F4;
  padding: 100px 0 32px;
}
.main-footer .footer-logo-area p {
  color: #544E51;
  font-family: var(--ztc-family-font2);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 26px;
  opacity: 0.8;
}
.main-footer .footer-logo-area ul li {
  display: inline-block;
}
.main-footer .footer-logo-area ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.4s;
  color: var(--ztc-text-text-2);
  border-radius: 165px;
  background: rgba(26, 23, 25, 0.05);
  font-size: var(--ztc-font-size-font-s18);
  margin: 0 6px 0 0;
}
.main-footer .footer-logo-area ul li a:hover {
  background: var(--ztc-bg-bg-3);
  transition: all 0.4s;
}
.main-footer .link-content {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .main-footer .link-content {
    padding: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-footer .link-content {
    padding: 0;
  }
}
.main-footer .link-content h3 {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 24px;
}
.main-footer .link-content ul li a {
  color: #544E51;
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s16);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 16px; /* 100% */
  display: inline-block;
  transition: all 0.4s;
  padding-top: 24px;
}
.main-footer .link-content ul li a:hover {
  color: var(--ztc-text-text-4);
  transition: all 0.4s;
  padding-left: 5px;
}
.main-footer .link-content2 {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .main-footer .link-content2 {
    padding: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-footer .link-content2 {
    padding: 0;
    margin-top: 30px;
  }
}
.main-footer .link-content2 h3 {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 24px;
}
.main-footer .link-content2 ul li a {
  color: #544E51;
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s16);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 16px;
  display: inline-block;
  transition: all 0.4s;
  padding-top: 24px;
}
.main-footer .link-content2 ul li a img {
  margin: 0 8px 0 0;
}
.main-footer .link-content2 ul li a:hover {
  color: var(--ztc-text-text-4);
  transition: all 0.4s;
}
.main-footer .footer-social-box {
  padding: 0 0 0 50px;
}
@media (max-width: 767px) {
  .main-footer .footer-social-box {
    padding: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-footer .footer-social-box {
    padding: 0;
    margin-top: 30px;
  }
}
.main-footer .footer-social-box h3 {
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  font-size: var(--ztc-font-size-font-s24);
  font-style: normal;
  font-weight: var(--ztc-weight-bold);
  line-height: 24px;
}
.main-footer .footer-social-box .img1 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 12px;
  height: 70px;
}
.main-footer .footer-social-box .img1:hover::after {
  visibility: visible;
  opacity: 0.5;
  transition: all 0.4s;
}
.main-footer .footer-social-box .img1:hover .icons {
  top: 50%;
  transition: all 0.6s;
  visibility: visible;
  opacity: 1;
}
.main-footer .footer-social-box .img1::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: var(--ztc-bg-bg-2);
  transition: all 0.4s;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
}
.main-footer .footer-social-box .img1 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.main-footer .footer-social-box .img1 .icons {
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -16px;
  margin-left: -12px;
  transition: all 0.6s;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 767px) {
  .main-footer .footer-social-box .img1 .icons {
    margin-left: -10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-footer .footer-social-box .img1 .icons {
    margin-left: -10px;
  }
}
.main-footer .footer-social-box .img1 .icons a {
  font-size: var(--ztc-font-size-font-s24);
  color: var(--ztc-text-text-1);
}
.main-footer .copyright p {
  color: var(--ztc-text-text-3);
  text-align: center;
  font-family: var(--ztc-family-font2);
  font-size: var(--ztc-font-size-font-s18);
  font-style: normal;
  font-weight: var(--ztc-weight-medium);
  line-height: 18px;
  opacity: 0.8;
  padding-top: 24px;
  border-top: 1px solid #D9D7D3;
}

/* Blog Details Page CSS */
.blog-hero-section {
    padding: 80px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: right;
}



.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(5, 47, 69, 0.8);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-categories {
    margin-bottom: 20px;
}

.blog-category {
    display: inline-block;
    background-color: #c6a269;
    color: #0a4b37;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.blog-category:hover {
    background-color: #c7aa75;
    color: #0a4b37;
    transform: translateY(-3px);
}

.blog-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 10px;
    border: 2px solid #c6a269;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
}

.blog-date, .blog-reading-time {
    display: flex;
    align-items: center;
}

.blog-date i, .blog-reading-time i {
    color: #c6a269;
    margin-left: 8px;
    font-size: 16px;
}

/* Blog Content Section */
.blog-content-section {
    padding: 60px 0;
}

.blog-main-content {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.featured-image {
    width: 100%;
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
    height: 360px;
    border-radius: 10px;
    object-fit: cover;
}

.blog-text-content {
    padding: 0 20px;
}

.blog-text-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
    margin-bottom: 25px;
}

.blog-text-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.blog-text-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0a4b37;
    margin: 40px 0 20px;
    position: relative;
    padding-right: 15px;
}

.blog-text-content h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    height: 80%;
    width: 4px;
    background-color: #c6a269;
    border-radius: 2px;
}

.blockquote {
    background-color: rgba(214, 189, 143, 0.1);
    border-right: 4px solid #c6a269;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.blockquote p {
    font-size: 18px;
    color: #0a4b37;
    margin-bottom: 10px;
}

.blockquote-footer {
    color: #666;
}

/* Custom Lists */
.custom-list {
    padding-right: 20px;
    margin-bottom: 25px;
}

.custom-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.custom-list li::before {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 5px;
    color: #c6a269;
}

.check-list li::before {
    content: '\f00c';
}

/* Blog image container */
.blog-image-container {
    margin: 30px 0;
}

.image-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Event Timeline */
.event-timeline {
    margin: 30px 0;
    position: relative;
}

.event-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 2px;
    background-color: #eee;
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
    padding-right: 50px;
}

.timeline-marker {
    position: absolute;
    right: 13px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #c6a269;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #c6a269;
    top: 5px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a4b37;
    margin-bottom: 10px;
}

.conclusion {
    background-color: #f9fbfd;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

/* Blog Tags */
.blog-tags {
    margin: 30px 0;
}

.blog-tags h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0a4b37;
    margin-bottom: 15px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(214, 189, 143, 0.15);
    border: 1px solid rgba(214, 189, 143, 0.3);
    border-radius: 30px;
    color: #0a4b37;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #c6a269;
    color: #0a4b37;
}

/* Social Share */
.social-share {
    margin: 30px 0;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.social-share h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0a4b37;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-button i {
    margin-left: 8px;
}

.share-button:hover {
    transform: translateY(-3px);
    color: #fff;
}

.facebook {
    background-color: #1877f2;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.whatsapp {
    background-color: #25d366;
}

/* Author Bio */
.author-bio {
    display: flex;
    background-color: #f9fbfd;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: #0a4b37;
    margin-bottom: 5px;
}

.author-position {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.author-description {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4b37;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background-color: #c6a269;
    color: #0a4b37;
    transform: translateY(-3px);
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
}

.comments-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a4b37;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.comment {
    display: flex;
    margin-bottom: 25px;
}

.comment-reply {
    margin-right: 50px;
    margin-top: -15px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    background-color: #f9fbfd;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    color: #0a4b37;
    margin: 0;
}

.comment-date {
    color: #666;
    font-size: 14px;
}

.comment-text {
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.reply-link {
    color: #c6a269;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.reply-link:hover {
    color: #0a4b37;
}

/* Comment Form */
.comment-form {
    margin-top: 50px;
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    color: #0a4b37;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    text-align: right;
}

.form-control:focus {
    border-color: #c6a269;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    resize: none;
}

.submit-comment-btn {
    background-color: #0a4b37;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #c6a269;
}

.submit-comment-btn:hover {
    background-color: #c6a269;
    color: #0a4b37;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a4b37;
    margin-bottom: 20px;
    position: relative;
    padding-right: 15px;
}

.widget-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 3px;
    height: 80%;
    width: 4px;
    background-color: #c6a269;
    border-radius: 2px;
}

/* Search Widget */
.search-widget .search-form {
    position: relative;
}

.search-widget input {
    width: 100%;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    text-align: right;
}

.search-widget input:focus {
    border-color: #c6a269;
    outline: none;
}

.search-widget button {
    position: absolute;
    left: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    border: none;
    background-color: #0a4b37;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-widget button:hover {
    background-color: #c6a269;
    color: #0a4b37;
}

/* Recent Posts Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
}

.post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 15px;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.post-info {
    flex: 1;
}

.post-info h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.post-info h4 a {
    color: #333;
    transition: all 0.3s ease;
}

.post-info h4 a:hover {
    color: #c6a269;
}

.post-date {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.post-date i {
    color: #c6a269;
    margin-left: 5px;
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.categories-list li {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    color: #333;
    transition: all 0.3s ease;
}

.categories-list li a:hover {
    color: #c6a269;
    padding-right: 5px;
}

.categories-list li a span {
    color: #666;
    font-size: 12px;
    background-color: #f5f5f5;
    padding: 2px 8px;
    border-radius: 15px;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud .tag {
    font-size: 13px;
    padding: 5px 12px;
}

/* Newsletter Widget */
.newsletter-widget p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    text-align: right;
}

.newsletter-form input:focus {
    border-color: #c6a269;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    left: 5px;
    top: 5px;
    height: 40px;
    padding: 0 15px;
    border: none;
    background-color: #0a4b37;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: #c6a269;
    color: #0a4b37;
}

/* Social Widget */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link i {
    margin-left: 10px;
    font-size: 16px;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-link.facebook {
    background-color: #1877f2;
}

.social-link.twitter {
    background-color: #1da1f2;
}

.social-link.instagram {
    background-color: #e1306c;
}

.social-link.youtube {
    background-color: #ff0000;
}

.social-link.tiktok {
    background-color: #000000;
}

.social-link.telegram {
    background-color: #0088cc;
}

/* Related Articles Section */
.related-articles-section {
    padding: 80px 0;
    background-color: #f9fbfd;
    position: relative;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a4b37;
    margin-bottom: 15px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 70px;
    height: 3px;
    background-color: #c6a269;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

.related-article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.related-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-article-card:hover .article-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #c6a269;
    color: #0a4b37;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 1;
}

.article-content {
    padding: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: #777;
}

.meta-date, .meta-author {
    display: flex;
    align-items: center;
}

.meta-date i, .meta-author i {
    color: #c6a269;
    margin-left: 6px;
}

.article-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 75px;
}

.article-title a {
    color: #0a4b37;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #c6a269;
}

.read-more {
    color: #0a4b37;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.read-more:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #c6a269;
    transition: width 0.3s ease;
}

.read-more:hover {
    color: #c6a269;
}

.read-more:hover:after {
    width: 100%;
}

.read-more i {
    margin-right: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(-5px);
}

@media (max-width: 991px) {
    .related-article-card {
        margin-bottom: 30px;
    }
    
    .article-title {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .related-articles-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .article-meta {
        flex-direction: row;
        gap: 5px;
        align-items: flex-start;
    }
}

/* Related Articles Section Styling */
.related-articles-section {
    padding: 80px 0;
    background-color: #f9fbfd;
    position: relative;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a4b37;
    margin-bottom: 15px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 70px;
    height: 3px;
    background-color: #c6a269;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
}

.related-article-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.related-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-article-card:hover .article-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #c6a269;
    color: #0a4b37;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 1;
}

.article-content {
    padding: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: #777;
}

.meta-date, .meta-author {
    display: flex;
    align-items: center;
}

.meta-date i, .meta-author i {
    color: #c6a269;
    margin-left: 6px;
}

.article-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 75px;
}

.article-title a {
    color: #0a4b37;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #c6a269;
}

.read-more {
    color: #0a4b37;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.read-more:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #c6a269;
    transition: width 0.3s ease;
}

.read-more:hover {
    color: #c6a269;
}

.read-more:hover:after {
    width: 100%;
}

.read-more i {
    margin-right: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(-5px);
}

@media (max-width: 991px) {
    .related-article-card {
        margin-bottom: 30px;
    }
    
    .article-title {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .related-articles-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .article-meta {
        flex-direction: row;
        gap: 5px;
        align-items: flex-start;
    }
}

/* Media Queries for Responsive Design */
@media (max-width: 991px) {
    .blog-title {
        font-size: 32px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto 20px;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .blog-sidebar {
        margin-top: 50px;
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-hero-section {
        padding: 120px 0 60px;
    }
    
    .blog-title {
        font-size: 24px;
    }
    
    .blog-text-content h2 {
        font-size: 20px;
    }
    
    .blockquote p {
        font-size: 16px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .comment-reply {
        margin-right: 30px;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
    }
}


/* RESEARCH PAGE */

.topic-filter {
  background-color: #f5f8fa;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.topic-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.topic-item:hover, .topic-item.active {
  border-color: #135943;
  box-shadow: 0 5px 15px rgba(9,97,124,0.15);
}

.topic-item h5 {
  font-weight: 600;
  margin: 0;
  color: #222;
}

.research-header-section {
  background-color: #f5f8fa;
  padding: 40px 0 30px;
  margin-bottom: 30px;
}

.search-header-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.search-input-group {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
  overflow: hidden;
}

.search-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 15px;
  font-size: 16px;
  outline: none;
}

.search-input-group .search-btn-research {
  background-color: #c19f61;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
          position: relative;
          left: 5px;
          top: 0;
          height: 40px;
          width: 85px;
          border-radius: 4px;
}

.search-input-group .search-btn:hover {
  background-color: #07506a;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.filter-badge {
  background-color: #f0f0f0;
  border-radius: 50px;
  padding: 6px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-badge:hover, .filter-badge.active {
  color: #0a4b37;
          font-size: 16px;
          font-weight: 500;
          padding: 4px 20px;
          border: 1px solid rgba(214, 189, 143, 0.5);
          background-color: rgba(214, 189, 143, 0.2);
}

.advanced-search-toggle {
  color: #135943;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.advanced-search-toggle:hover {
  text-decoration: underline;
}

.section-title-container {
  margin-bottom: 30px;
  border: none;
  padding-bottom: 0;
  position: relative;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #135943;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 40px;
  height: 3px;
  background-color: #c6a269;
  border-radius: 10px;
}

.advanced-search-panel {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
  border: 1px solid #e5e5e5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.advanced-search-panel.active {
  max-height: 600px; 
  opacity: 1;
  transform: translateY(0);
  padding: 20px;
          margin-bottom: 20px;
}

.advanced-search-row {
  margin-bottom: 15px;
}

.advanced-search-panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.advanced-search-panel select,
.advanced-search-panel input {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
}

.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.advanced-search-panel .form-check {
  display: flex;
  align-items: center;
  margin: 0;
  flex: 0 0 auto;
}

.advanced-search-panel .form-check-input {
  width: auto;
  margin-left: 8px;
}

.advanced-search-panel .form-check-label {
  display: inline;
  margin-bottom: 0;
}

.search-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.search-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
}

.search-buttons .btn-primary {
  background-color: #135943;
  border-color: #135943;
}

.search-buttons .btn-outline-secondary {
  border-color: #ddd;
  color: #555;
}

.research-stats {
  background: linear-gradient(145deg, rgba(9,97,124,0.08) 0%, rgba(9,97,124,0.15) 100%);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(9,97,124,0.06);
  border: 1px solid rgba(9,97,124,0.12);
  transition: all 0.3s ease;
}

.research-stats:hover {
  box-shadow: 0 6px 20px rgba(9,97,124,0.1);
  transform: translateY(-2px);
}

.stat-item {
  display: flex;
  align-items: center;
  text-align: right;
  position: relative;
  padding: 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: default;
}

.stat-item:hover {
  background-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.stat-item .stat-icon {
  font-size: 18px;
  color: #135943;
  margin-left: 10px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: rgba(9,97,124,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background-color: #135943;
  color: white;
  transform: rotateY(180deg);
}

.stat-item .stat-content {
  display: flex;
  flex-direction: column;
}

.stat-item .count {
  font-size: 28px;
  font-weight: 700;
  color: #135943;
  margin-bottom: 2px;
  line-height: 1.1;
}

.stat-item .label {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

 /* Main blog redesign - modern, calm, comfortable */
.main-blog {
  background-color: #fafbfc;
  padding: 50px 0;
  position: relative;
}

/* Topic filter redesign */
.topic-filter {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: none;
  transition: all 0.4s ease;
}

.topic-filter h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.topic-item {
  background-color: #fafbfc;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}

.topic-item:hover, .topic-item.active {
  background-color: rgba(9,97,124,0.05);
  transform: translateX(-5px);
  box-shadow: 0 5px 15px rgba(9,97,124,0.08);
}

.topic-item h5 {
  font-weight: 500;
  margin: 0;
  color: #444;
  font-size: 15px;
  transition: all 0.3s ease;
}

.topic-item.active h5 {
  color: #135943;
  font-weight: 600;
}

.topic-item .count {
  background: #c19f61;
  color: white;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Books section redesign */
.books-section {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: none;
}

.books-section h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
}

.book-cover-2 {
  max-width: 65%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
}

.book-cover-2:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Research cards redesign */
.research-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  overflow: hidden;
  border: none;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.research-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.research-card .research-header {
  background: linear-gradient(120deg, #135943, #07506a);
  color: white;
  padding: 20px;
  position: relative;
}

.research-card h5 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.research-card .research-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.research-meta {
  display: flex;
  gap: 15px;
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.research-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.abstract-text {
  color: #555;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
}

.research-card .research-actions {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.download-btn {
  background: linear-gradient(90deg, #135943, #0a7796);
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(9,97,124,0.2);
  font-size: 14px;
  font-weight: 500;
}

.download-btn:hover {
  background: linear-gradient(90deg, #07506a, #135943);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(9,97,124,0.3);
}

.share-icons {
  display: flex;
  gap: 12px;
}

.share-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  color: #666;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.share-icons a:hover {
  background-color: #c6a269;
  color: white;
  transform: translateY(-3px);
}

/* Pagination redesign */
.pagination-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 8px;
}

.pagination .page-item .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  color: #555;
  border: none;
  background-color: #f5f7fa;
  transition: all 0.3s ease;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background-color: #135943;
  color: white;
  box-shadow: 0 5px 15px rgba(9,97,124,0.2);
}

/* Filter and sort controls */
.search-filter-container {
  background-color: #fff;
  border-radius: 16px;
  padding: 15px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  margin-bottom: 25px;
}

.custom-select {
  border-radius: 30px;
  padding: 8px 15px;
  border: 1px solid #eaeaea;
  background-color: #f8f9fa;
  color: #444;
  font-size: 14px;
}

.btn-group .btn {
  border-radius: 8px;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border: 1px solid #eaeaea;
  color: #666;
}

.btn-group .btn.active {
  background-color: #135943;
  color: white;
  border-color: #135943;
}

.page-banner {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 97, 124, 0.8);
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner-content h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 700;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item, .breadcrumb-item a {
  color: #fff;
  font-size: 16px;
}

.breadcrumb-item.active {
  color: #f0f0f0;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

 /* تحسين تصميم بطاقات الأخبار */
.blog4-boxarea {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.blog4-boxarea:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(9, 97, 124, 0.15);
  border-color: rgba(9, 97, 124, 0.08);
}

.blog4-boxarea::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #135943;
  transition: all 0.4s ease;
}

.blog4-boxarea:hover::after {
  width: 100%;
}

.blog4-boxarea .img1 {
  position: relative;
  overflow: hidden;
}

.blog4-boxarea .img1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.blog4-boxarea:hover .img1::before {
  opacity: 1;
}

.blog4-boxarea .img1 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog4-boxarea:hover .img1 img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #135943, #064559);
  color: #fff;
  padding: 8px 15px;
  text-align: center;
  border-radius: 12px 0 0 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.news-date .day {
  font-size: 26px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

.news-date .month, .news-date .year {
  font-size: 14px;
  display: block;
  font-weight: 500;
  opacity: 0.9;
}

.blog4-boxarea .content-area {
  padding: 25px;
  position: relative;
}

.news-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.news-meta li {
  margin-left: 15px;
  font-size: 14px;
  color: #777;
  position: relative;
}

.news-meta li:last-child {
  margin-right: 0;
}

.news-meta li i {
  margin-left: 6px;
  color: #135943;
}

.news-meta li a {
  color: #777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-meta li a:hover {
  color: #135943;
}

.news-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.news-title a:hover {
  color: #135943;
}

.news-excerpt {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.7;
  height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.readmore {
  color: #135943;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 5px;
}

.readmore::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: #135943;
  transition: all 0.3s ease;
}

.readmore:hover {
  color: #064559;
}

.readmore:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.readmore i {
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.readmore:hover i {
  transform: translateX(-5px);
}

/* تحسين الخبر الرئيسي المميز */
.featured-news .blog4-boxarea {
  border-width: 2px;
  border-color: rgba(9, 97, 124, 0.05);
}

.featured-news .blog4-boxarea .img1 img {
  height: 400px;
}

.featured-news .news-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-news .news-excerpt {
  height: auto;
  -webkit-line-clamp: 4;
  margin-bottom: 20px;
  font-size: 16px;
}

.featured-news .news-date {
  padding: 10px 20px;
  border-radius: 15px 0 0 0;
}

.featured-news .news-date .day {
  font-size: 32px;
}

.featured-news .news-meta li {
  font-size: 15px;
}

.featured-news .readmore {
  font-size: 16px;
  padding: 8px 0;
}

/* تحسين تجربة المستخدم عند تمرير الماوس */
.blog4-boxarea:hover .news-title a {
  color: #135943;
}

/* ستايل جانبي للأخبار */
.news-sidebar {
  margin-right: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: right !important;
  padding: 0 8px;
}

.gallery-hero-section {
  background-color: #135943;
  padding: 80px 0;
  position: relative;
  text-align: center;
  color: #fff;
}

.gallery-hero-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/img/pattern.png');
  opacity: 0.1;
  z-index: 0;
}

.gallery-hero-content {
  position: relative;
  z-index: 1;
}

.section-divider {
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 30px 0;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-tab {
  padding: 10px 25px;
  margin: 5px 10px;
  border-radius: 30px;
  background-color: rgba(255,255,255,0.1);
  color: #135943;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.gallery-tab.active {
  background-color: #fff;
  color: #135943;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 97, 124, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  color: white;
  padding: 20px;
  text-align: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.gallery-overlay-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

.gallery-view-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #135943;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-view-icon {
  opacity: 1;
  transform: translateY(0);
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.video-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  height: 250px;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-button:hover {
  background-color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon {
  color: #135943;
  font-size: 24px;
  margin-left: 5px; /* Adjustment for play icon */
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.video-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.video-meta {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.video-meta i {
  margin-left: 8px;
  margin-right: 3px;
}

.video-caption {
  margin-top: 5px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.modal-content {
  background-color: transparent;
  border: none;
}

.modal-body {
  padding: 0;
}

.modal-dialog {
  max-width: 80%;
  margin: 30px auto;
}

.modal-header {
  border: none;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
}

.modal-header .btn-close {
  color: white;
  background-color: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  opacity: 1;
}

.modal-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
}

.modal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.lightbox-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.lightbox-caption {
  color: white;
  margin-top: 15px;
  text-align: center;
  padding: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .video-gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .modal-dialog {
      max-width: 95%;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .video-gallery-grid {
      grid-template-columns: 1fr;
  }
  
  .gallery-tab {
      padding: 8px 15px;
      margin: 3px 5px;
      font-size: 14px;
  }

  
}


@media (min-width: 320px) and (max-width: 1023px) {
  
  .custem-reverse {
    flex-direction: column-reverse;
  }
  
}

.article-section {
  padding: 80px 0;
  background-color: #f5f8fa;
}

.article-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-right: 4px solid #135943;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.article-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.article-title a {
  color: #135943;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #064257;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  margin-left: 20px;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.meta-item i {
  margin-left: 8px;
  color: #135943;
}

.article-excerpt {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 80px;
  position: relative;
}

.article-excerpt::after {
  content: "...";
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 40px;
  background: linear-gradient(to left, white, white 50%, transparent);
}

.article-categories {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.article-category {
  background-color: #e9f4f7;
  color: #135943;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-left: 10px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.article-category:hover {
  background-color: #135943;
  color: #fff;
}

.article-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 15px;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.author-title {
  color: #666;
  font-size: 13px;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  color: #135943;
  font-weight: 500;
  transition: all 0.3s ease;
}

.article-read-more i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.article-read-more:hover {
  color: #064257;
}

.article-read-more:hover i {
  transform: translateX(-5px);
}

.breadcrumb-section {
  padding: 50px 0;
  background: linear-gradient(rgba(9, 97, 124, 0.9), rgba(9, 97, 124, 0.9)), url(assets/img/main-bg.png);
  background-size: cover;
  color: white;
}

.breadcrumb-container h1 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: bold;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: white;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.6);
}

.current-page {
  color: white;
  font-weight: 500;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #135943;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.page-link:hover, .page-item.active .page-link {
  background-color: #135943;
  color: #fff;
  border-color: #135943;
}

.page-link.prev, .page-link.next {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

.page-link.disabled {
  color: #aaa;
  pointer-events: none;
}

.article-filters {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  color: #333;
  margin-left: 15px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
}

.filter-option {
  padding: 8px 18px;
  margin-left: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  background-color: #fff;
  color: #666;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #ddd;
}

.filter-option:hover, .filter-option.active {
  background-color: #135943;
  color: #fff;
  border-color: #135943;
  }
  
  @media (max-width: 992px) {
    .article-title {
      font-size: 20px;
    }
  }