.text-highlight {
  color: #095763;
  position: relative;
  display: inline-block;
}

.slider_about_text {
  position: absolute;
  top: 88%;
  right: 0;
  left: 45%;
  z-index: 1;
}

.slider_about .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.slider_about.slider_a-green-vision:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 40%);
  z-index: 1;
}

.slider_about .container {
  position: relative;
}

.slider_about_text h4 {
  color: #e5b73b;
  margin-bottom: 10px;
  /* display: flex; */
  font-size: 22px;
  margin-left: 60px;
  position: relative;
  text-align: left;
}

.slider_about_text h4:before {
  content: '';
  position: absolute;
  width: 40px;
  height: 7px;
  background: #e5b73b;
  left: -60px;
  top: 10px;
  bottom: 0;
}

.slider_about_text p {
  color: #fff;
  width: 50%;
  line-height: 1.5;
  font-size: 36px;
  float: left;
  text-align: left;
}

.slider_about_text p span {
  color: #e5b73b;
  font-size: 38px;
  margin: 0;
}

.slider_about_text p b {
  color: #e5b73b;
  font-weight: 500;
}

.slider_about.slider_a-green-vision {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100vh;
}

.videoembed {
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
}

@media screen and (max-width: 1199px) {
  .slider_about_text p {
    font-size: 32px;
  }
}

@media screen and (max-width: 991px) {
  .slider_about_text {
    top: 60%;
  }
}

@media screen and (max-width: 575px) {
  .slider_about_text p {
    width: 100%;
    font-size: 24px;
  }

  .slider_about_text {
    top: 60%;
    left: 20px;
  }
}

/* Base Styles */
.events-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.events-hero .events-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Content Styles */
.events-hero .events-hero-content {
  flex: 1;
  max-width: 600px;
}

.events-hero .events-badge {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b5b9bf;
  margin-bottom: 1rem;
  font-weight: 600;

}

.events-hero .events-badge svg {
  width: 16px;
  height: 16px;
}

.events-hero .events-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #212529;
  margin-bottom: 20px;
}

.events-hero .events-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 30px;
}

.events-hero .events-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.events-hero .cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #095763;
  color: white;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.events-hero .cta-primary:hover {
  background: #157a8a;
  transform: translateY(-2px);
}

.events-hero .cta-primary svg {
  width: 16px;
  height: 16px;
}

.events-hero .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #095763;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #09576324;
}

.events-hero .cta-secondary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.events-hero .cta-secondary svg {
  width: 16px;
  height: 16px;
}

/* Visual Styles - Image Version */
.events-hero .events-hero-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-hero .events-hero-visual:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.events-hero .hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.events-hero .events-hero-visual:hover .hero-image {
  transform: scale(1.05);
}

.events-hero .image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #095763;
  backdrop-filter: blur(5px);
}

/* Decorative Elements */
.events-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(44, 123, 229, 0.08) 0%, rgba(44, 123, 229, 0) 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .events-hero .events-hero-container {
    flex-direction: column;
    gap: 40px;
  }

  .events-hero .events-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .events-hero .events-cta-group {
    justify-content: center;
  }

  .events-hero .events-hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .events-hero {
    padding: 80px 0;
  }

  .events-hero .events-title {
    font-size: 2.25rem;
  }

  .events-hero .events-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .events-hero {
    padding: 60px 0;
  }

  .events-hero .events-title {
    font-size: 1.75rem;
  }

  .events-hero .events-cta-group {
    flex-direction: column;
  }

  .events-hero .cta-primary,
  .cta-secondary {
    justify-content: center;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.events-hero-content {
  animation: fadeInUp 0.6s ease forwards;
}

.events-hero-visual {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

/* ---- Events ---- */
.upcoming-events {
  position: relative;
  overflow: hidden;
}

.upcoming-events .section-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}

.events {
  margin: 80px 0;
}

.events_title {
  text-align: center;
}

.events_title h1 {
  font-size: 32px;
  font-weight: 700;
  color: #095763;
  padding: 0 0 10px;
}

.events_title p {
  width: 65%;
  text-align: center;
  margin: 0 auto 20px;
}

.events_services {
  background: #fff;
  box-shadow: 0 0 5px rgba(75, 75, 75, 0.2);
  height: 100%;
  margin: 15px;
  padding: 5px;
}

.events_services .events_img {
  margin-bottom: 30px;
}

.events_services .events_text {
  text-align: center;
  padding: 20px;
}

.events_services .events_text h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
}

.events_services .events_text span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.events_services .events_text span b {
  color: #095763;
  font-size: 16px;
}

.events_services .events_text .events_content {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 50px;
}

.events_services a {
  padding: 10px 25px;
  background: #b9b9b9;
  color: #fff;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
  border-radius: 25px;
}

@media screen and (max-width: 991px) {
  .events {
    margin: 80px 0 80px;
  }

  .events_title p {
    width: 100%;
  }

  .events_services .events_text .events_content {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .events_title {
    padding: 0 15px;
  }

  .events_title h1 {
    font-size: 28px;
    margin: 0 0 10px;
    padding: 0;
  }
}

/* ----- Testimonials ----- */
.past-events {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.past-events .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  line-height: 1.2;
}

.past-events .section-subtitle {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}

.testimonials {
  text-align: center;
}

.testimonials_title h2 {
  text-align: center;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 32px;
  color: #095763;
  position: relative;
}

.testimonials_services {
  display: grid;
  grid-template-columns: repeat(3, 15fr);
  gap: 20px;
}

.testimonials_title p {
  width: 50%;
  text-align: center;
  margin: 0 auto 40px;
}

.testimonials_video {
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.testimonials_video button {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  background: #095763;
  width: 50px;
  height: 50px;
  padding: 12px 11px;
  border-radius: 10px;
  border: none;
}

.testimonials_video button:hover,
.testimonials_video button:focus,
.testimonials_video button:active {
  background-color: #9e9e9e !important;
  color: #ffffff !important;
}

.testimonials_video_image {
  overflow: hidden;
}

.testimonials_video_image img {
  height: 320px;
  filter: grayscale(0.7);
  transition: all 0.2s;
}

.testimonials_video:hover .testimonials_video_image img {
  filter: grayscale(0);
  transform: scale(1.1);
}

.testimonials_video button svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.testimonials_text h4 {
  text-transform: capitalize;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 20px;
  text-align: left;
}

.testimonials_text p {
  text-transform: capitalize;
  font-size: 16px;
}

.testimonials_video_image_events .owl-dots {
  display: none;
}

.testimonials .testimonials_services .owl-nav {
  text-align: center;
  margin-top: 0;
}

.testimonials .testimonials_services .owl-prev,
.testimonials .testimonials_services .owl-next {
  background: #9e9e9e;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  position: absolute;
  border-radius: 50%;
  padding: 0;
  outline: none;
}

.testimonials .testimonials_services .owl-prev:hover,
.testimonials .testimonials_services .owl-next:hover {
  background: #9e9e9e;
}

.testimonials .testimonials_services .owl-next {
  right: 0;
  left: auto;
}

.testimonials .testimonials_services .owl-prev {
  left: 0;
  right: auto;
}

.testimonials .modal-dialog {
  max-width: 800px;
}

.testimonials .modal-content {
  background: transparent;
  border: none;
  width: 820px;
}

.testimonials .modal-content .embed-responsive {
  width: 800px;
}

.testimonials button.close {
  color: #000;
  opacity: 1;
  font-weight: 400;
  background: #fff;
  padding: 7px 13px;
  margin-bottom: -40px;
  margin-right: -12px;
  position: relative;
  z-index: 1;
}

.testimonials button {
  background: #9e9e9e;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #9e9e9e;
}

.testimonials button:hover {
  border: 2px solid #9e9e9e;
}


@media screen and (max-width: 1280px) {
  .testimonials_video {
    padding: 0 15px;
  }

  .testimonials_video_image img {
    height: auto;
  }
}

@media screen and (max-width: 1199px) {
  .testimonials_text h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .testimonials {
    padding: 40px 0 80px;
  }

  .testimonials_services {
    grid-template-columns: repeat(2, 15fr);
  }

  .testimonials .modal-content .embed-responsive,
  .testimonials .modal-content {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .testimonials_title p {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .testimonials_title {
    padding: 0 15px;
  }

  .testimonials_video {
    margin-right: 0;
  }

  .testimonials_services {
    grid-template-columns: repeat(1, 15fr);
  }
}


/* PR Card Styles */
.past-event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 1rem;
}

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

.past-event-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.past-event-card-image {
  transform: scale(1.05);
}

.past-event-card-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #095763;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.past-event-card-content {
  padding: 17px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.past-event-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0px !important;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.past-event-card-excerpt {
  color: #495057;
  line-height: 1.6;
  flex-grow: 1;
  text-align: left;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

button:focus {
  outline: none !important;
}

.event-button {
  color: #095763;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #095763 !important;
  color: white;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #095763 !important;
}

.divider-line {
  width: 80px;
  height: 4px;
  background: #e5b73b;
  margin: 1rem 0;
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border: 1px solid #f8f9fa;
  padding: 15px 60px;
  font-size: 12px;
  border-radius: none !important;
}