.project-banner {
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: block;
}

.project-banner media,
.project-banner img,
.project-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(2, 55, 72, 0.6), rgba(0, 0, 0, 0.859));
}

.project-banner .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.project-banner .banner-content h1 {
    font-size: 2.6rem;
    margin-bottom: .3rem;
}

.project-banner .banner-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.project-body {
    padding: 60px 0;
}

section h2{
    text-align: center;
}

section h2::after {
    bottom: -5px;
    left: 50%;
    transform: translate(-50% , 0);
}

/* speakers */
.speakers-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.speaker-card {
    padding: 18px;
}

.speakers-grid .speaker-content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.speaker-photo {
    width: 110px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: block;
    position: relative;
}

.speaker-photo::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50% , 0);
    height: 130px;
    width: 130px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #f97316, #0d556d14);
    z-index: -1;
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.speaker-name {
    font-weight: 700;
    margin-bottom: 6px;
    color: #0d556d;
}

.speaker-title {
    font-size: .9rem;
    color: #666;
    margin-bottom: 8px;
}

.speaker-socials a{
    font-size: 20px;
    color: #f97316;
    transition: all 0.7s ease;
}

.speaker-socials a:hover{
    color: #0d556d;
}

.partnersDiv{
    background-color: #00273417;
    padding: 40px 10px;
    border-radius: 10px;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.partner-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: .95;
}

.related-list .related-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.related-item img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.meta-row {
    color: #333;
    margin-bottom: 8px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.meta-row .meta {
    display: flex;
    gap: 8px;
    align-items: center;
    color: #e06b12;
    font-weight: 700;
}


.gallery-slider .swiper-slide img,
.gallery-slider .swiper-slide video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.exhibitions_Side,
h3{
    border: none !important;
    color: #0d556d;
    font-size: 25px;
    font-weight: bold !important;
    position: relative;
}
h6{
    font-size: 17px;
    color: #0d556d;
    font-weight: 600;
}



small{
    color: #ee6300e1 !important;
    font-weight: 500;
}
.exhibitions_Side::after , 
h3::after{
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient( #0098cb, #f97316);
}

.lang-ar .exhibitions_Side,
.lang-ar h3{
    padding-right: 10px;
}

.lang-ar .exhibitions_Side::after,
.lang-ar h3::after{
    right: 0;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background: #0d556d;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 800;
}

footer h3{
    color: #fff !important;
    font-size: 30px !important;
}

footer h3::after{
    display: none;
}

footer small{
    color: rgba(255, 255, 255, 0.7) !important;
}


/* responsive tweaks */
@media (max-width: 991px) {
    .project-left {
        padding-right: 0;
    }

    .project-right {
        padding-left: 0;
        margin-top: 30px;
    }

    .project-banner {
        height: 45vh;
    }

    .project-banner .banner-content h1 {
        font-size: 1.6rem;
    }
}




/* 🔷 Event Banner */
.event-banner {
  height: 60vh;
  position: relative;
  overflow: hidden;
  display: block;
}

.event-banner img,
.event-banner video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.event-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( rgba(2, 55, 72, 0.6), rgba(0, 0, 0, 0.896));
}

.event-banner .banner-content {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, 0) !important;
    z-index: 5;
    padding: 0 1rem;
}

.event-banner .banner-content h1 {
  font-size: 2.6rem;
  margin-bottom: 0.4rem;
}

.event-banner .banner-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* 🔷 Event Body */
.event-details-content {
  padding: 60px 0;
}

.event-info {
  border-left: 4px solid #0d556d;
  transition: all 0.4s ease;
}

.event-info:hover {
  transform: translateY(-4px);
}

.description h3::after{
  width: 0;
}

/* 🔷 Headings */
section h2, section h3 {
  color: #0d556d;
  font-weight: bold;
  position: relative;
}

/* 🔷 Speakers (مشترك مع Portfolio) */
.speakers-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.speaker-card {
  padding: 18px;
}

.speakers-grid .speaker-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.speaker-photo {
  width: 110px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: block;
  position: relative;
}

.speaker-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 130px;
  width: 130px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f97316, #0d556d14);
  z-index: -1;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-name {
  font-weight: 700;
  margin-bottom: 6px;
  color: #0d556d;
}

.speaker-title {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

.speaker-socials a {
  font-size: 20px;
  color: #f97316;
  transition: all 0.7s ease;
}

.speaker-socials a:hover {
  color: #0d556d;
}

/* 🔷 Partners Section */
.partnersDiv {
  background-color: #00273417;
  padding: 3px 10px 40px;
  border-radius: 10px;
}

.partner-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.95;
}

/* 🔷 Meta Info */
.meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #0d556d;
  font-weight: 600;
}

.meta i {
  color: #f97316 !important;
}

/* 🔷 Buttons */
.btn-book {
    display: inline-block;
    align-self: center;
    background: linear-gradient(-200deg, #003343, #007A8C, #00AFC1);
    color: #fff;
    text-decoration: none;
    padding: 5px 30px;
    text-align: center;
    border-radius: 30px;
    margin-top: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.btn-book:hover {
  opacity: 0.85;
  color: #fff;
}

/* 🔷 Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: #0d556d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 800;
}

.seats p{
    color: #0d556d;
}

.seats p span{
    color: #f97316 !important;
}

.banner-content .info-data{
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-content .info-data i{
    color: #f97316 !important;
}



/* 🔷 Responsive Tweaks */
@media (max-width: 991px) {
  .event-banner {
    height: 45vh;
  }

  .event-banner .banner-content h1 {
    font-size: 1.6rem;
  }

  .speakers-grid {
    gap: 20px;
  }

  .speaker-content {
    flex-direction: column;
    text-align: center;
  }

  .event-banner .banner-content{
    width: 100%;
  }
}
