/* Before & After Image Size */
.bafg-twentytwenty-wrapper,
.bafg-twentytwenty-container {
  height: 400px !important;
  max-height: 400px !important;
  width: 100% !important;
  overflow: hidden !important;
}

.bafg-twentytwenty-container img {
  width: 100% !important;
  height: 400px !important;
  max-width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
.dark {
  background-color: #eddbc73d;
}
.page-id-8 .blog-pagination.text-center {
  display: none;
}
.blog-pagination {
  margin-top: 50px;
}

.blog-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination ul li {
  margin: 0;
  padding: 0;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #c8a064;
  color: #006a6f;
  background: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-pagination ul li a:hover {
  background: #006a6f;
  border-color: #006a6f;
  color: #fff;
}

.blog-pagination ul li span.current {
  background: #c8a064;
  border-color: #c8a064;
  color: #fff;
}

.blog-pagination ul li a.prev,
.blog-pagination ul li a.next {
  padding-left: 18px;
  padding-right: 18px;
}
@media (max-width: 767px) {
	.bafg-twentytwenty-wrapper, .bafg-twentytwenty-container {
    height: 300px !important;
    max-height: 300px !important;
}
}
@media (max-width: 575px) {
  .blog-pagination {
    margin-top: 35px;
  }

  .blog-pagination ul {
    gap: 5px;
  }

  .blog-pagination ul li a,
  .blog-pagination ul li span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
  }
}
.sticky-book-now {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;
    background: #c8a064;
    color: #ffffff !important;

    border-radius: 50px;
    text-decoration: none !important;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;
}

/* Icon */
.sticky-book-now i {
    font-size: 17px;
}

/* Hover */
.sticky-book-now:hover {
    background: #b58d52;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 767px) {
    .sticky-book-now {
        left: 15px;
        bottom: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .sticky-book-now i {
        font-size: 16px;
    }
}
.team-style1 .team-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.team-style1 .team-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}



section.vs-hero-wrapper {
    padding: 200px 0px 0px 0px;
}
.trust-main .card-trust p {
    margin-top: 20px;
    font-weight: 400;
    font-size: 20px;
    color: var(--white-color);
}
p.testi-name {
    color: #006a6f;
}
header.vs-header.header-layout6.fxiedheader {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
}

.sticky-wrap.will-sticky {
    display: none;
}
/* ================================
   Video Gallery Section
================================ */

.video-gallery-section {
    padding: 60px 0;
}

.video-gallery {
    margin-top: 35px;
}

.video-gallery-item {
    margin-bottom: 30px;
}

.video-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Fixed video dimensions */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #000000;
}

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

/* Play overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #0073aa;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    padding-left: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-card:hover .play-icon {
    transform: scale(1.08);
}

/* Video title */
.video-card-content {
    padding: 18px 20px;
}

.video-card-content h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #222222;
}

/* Tablet */
@media (max-width: 991px) {
    .video-wrapper {
        height: 240px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .video-gallery-section {
        padding: 40px 0;
    }

    .video-wrapper {
        height: 220px;
    }

    .video-gallery-item {
        margin-bottom: 25px;
    }
}
a.dual-btn {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: #c8a064;
    color: #ffffff !important;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
    transition: all 0.3s ease;
}
.dual_button {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}