* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-weight: 500;
  font-family: "Avenir";
}
.iframe-height{
  width:100%; 
  height: 102vh;
  border:none;
}
section {
  width: 100%;
  padding: 0 7%;
  display: table;
  margin: 0;
  max-width: none;
  background-color: #ffffff;
  height: 100vh;
}

section:nth-of-type(2n) {
  background-color: #fff;
}

.content {
  display: table-cell;
  vertical-align: middle;
}

h1 {
  font-size: 3em;
  display: block;
  color: white;
  font-weight: 500;
}

.nav-item {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.13px;
  text-decoration: none;
  margin-left: 2.5rem;
  transition: all 0.5s ease;
}

.nav-item:hover {
  color: rgba(168, 239, 255, 0.9);
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  width: 0;
  height: 0.15rem;
  transform: translateX(-50%);
  background-color: rgba(168, 239, 255, 0.9);
  transition: all 0.5s ease;
}

.nav-item:hover:after {
  width: 100%;
}

#check {
  display: none;
}

.vw-2 {
  width: 16.66%;
}

.vw-5 {
  width: 41.66%;
}

.vw-4 {
  width: 33.33%;
  margin: 2% auto;
}

.vw-6 {
  width: 50%;
  margin: 2% auto;
}

.vw-8 {
  width: 66.66%;
  margin: 2% auto;
}

.vectors {
  margin-top: 8%;
  margin-left: 10%;
  margin-right: 10%;
  font-size: clamp(20px, 2.5vw, 40px);
  /* Responsive font size */
  text-align: center;
  overflow: visible;
}

.avenir-next {
  font-family: 'Avenir Medium';
  font-size: clamp(25px, 3vw, 45px);
  /* Responsive font size */
}

.vector-text {
  text-align: center;
  font-size: 15px;
  /* Responsive font size */
}

.vectors table td {
  text-align: center;
  width: 90vw;
}

.vector-img {
  font-size: clamp(25px, 2vw, 45px);
}

.demographic-vector-content {
  width: 100%;
  padding: 0 7%;
  display: table;
  margin: 0;
  max-width: none;
  background-color: #373b44;
  height: 100vh;
  background-image: url("../assets/Images/bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: white;
  background-color: black;
}

.center-align {
  text-align: center;
}

.demographic-vector-text {
  margin: 3em auto;
  font-size: clamp(2em, 2vw, 2em);
  display: flex;
}

/* =============================== */
/* == Accordion starts here ======== */
/* =============================== */

.accordion {
  width: 100%;
  margin: 20px auto;
  overflow: hidden;
  font-family: Avenir;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  color: #fff;
  padding: 2% 7%;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 2.2em;
  position: relative;
}

.accordion-content {
  display: none;
  padding: 2% 7%;
  color: #fff;
  font-size: 1.2em;
  transition: max-height 1s ease, padding 1s ease;
}

.accordion-content.open {
  display: block;
}

.accordion-header .arrow {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-header .arrow::before {
  content: "";
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.accordion-header.active .arrow::before {
  transform: rotate(-135deg);
}

.accordion-item:nth-child(1) {
  background-color: #d7104a;
  color: white;
}

.accordion-item:nth-child(2) {
  background-color: #9b0031;
  color: white;
}

.accordion-item:nth-child(3) {
  background-color: #5d1220;
  color: white;
}

.accordion-item:nth-child(1) .active .arrow {
  background-color: white;
}

.accordion-item:nth-child(2) .active .arrow {
  background-color: white;
}

.accordion-item:nth-child(3) .active .arrow {
  background-color: white;
}

.accordion-item:nth-child(1) .active .arrow::before {
  border-color: #d7104a;
  background-color: white;
}

.accordion-item:nth-child(2) .active .arrow::before {
  border-color: #9b0031;
  background-color: white;
}

.accordion-item:nth-child(3) .active .arrow::before {
  border-color: #5d1220;
  background-color: white;
}

.team-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
}

.row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.team-table .card {
  display: flex;
  width: 33.33%;
  margin: 0px 10px;
}

.team-table .card img {
  width: 8vw;
  height: 15vh;
  margin-right: 5%;
  border-radius: 10%;
}

.team-table .card .content {
  flex: 1;
  /* Allows the content to fill the remaining space */
}

.team-table .card h3 {
  font-size: 18px;
  margin: 0px;
  color: #ffffff;
}

.team-table .card h4 {
  font-size: 16px;
  margin: 5px 0px 0px 0px;
  font-weight: bold;
}

.team-table .card p {
  font-size: 14px;
  line-height: 1.5;
}

.accordion-section {
  background-color: white !important;
  padding: 0 !important;
  width: 100vw !important;
  display: table-cell !important;
  vertical-align: middle !important;
}

/* #d7104a */
/* #9b0031 */
/* #5d1220 */

/* =============================== */
/* == Accordion ends here ======== */
/* =============================== */

/* Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* Styling */
.slider {
  background: white;
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: absolute;
  width: 73vw;
  margin-top: 5vh;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  content: "";
  position: fixed;
  width: 100vw;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide {
  height: 100px;
  width: 250px;
  margin-left: 2em;
}

.sliding-text-heading {
  font-weight: bold;
  text-align: center;
  margin-top: 10vh;
}

.slide img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.explore-btn {
  background: none;
  color: white;
  border: 1px solid white;
  font-size: 1em;
  padding: 15px 25px 15px 25px;
  border-radius: 2em;
  transition: 0.5s;
}

.explore-btn:hover {
  background-color: white;
  color: #9b0031;
}

.fadein {
  opacity: 0;
  transition: all 2s;
  transform: translate(0, 100px);
}

.fadein.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.highcharts-title {
  font-family: Avenir;
}

div.companies-first-row {
  margin: 0 auto;
}

.companies-first-row img {
  padding-left: 2vw;
}

.site-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
}

.site-images img {
  width: 100%;
  height: 100%;
  border-radius: 5%;
}

.schedule-consultation {
  text-align: center;
  font-size: 1.4rem;
}

.schedule-consultation h1 {
  color: black;
  font-weight: bold;
  font-size: 2.5em;
  margin-bottom: 20px;
  font-family: Avenir;
}

.schedule-consultation button {
  font-size: 1.2rem;
  padding: 15px 35px;
  border-radius: 50px;
  background-color: white;
  font-family: Avenir;
  font-weight: bold;
}

.schedule-consultation button:hover {
  background-color: black;
  color: white;
  transition: 0.5s ease;
}

.meet-gto-family-info-section {
  background-color: white;
  display: block;
  padding: 0% 8% 0% 7%;
}

.meet-gto-family-info-sec {
  display: flex;
  padding-top: 10%;
}

.meet-gto-family-information-section-one {
  padding: 0% 16% 0% 0%;
  width: 50%;
}

.meet-gto-family-information-section-two {
  width: 50%;
  font-family: Avenir;
  font-size: 1.2rem;
}

.meet-gto-family-section {
  background-color: rgb(255, 255, 255);
  display: block;
  height: 70vh;
}

.mission-vision-values-section {
  background-color: #fff !important;
  display: block;
  color: white;
  padding: 0px;
  height: 260vh;
}

.values table {
  margin-top: 5%;
}

.values-heading {
  font-size: 3rem;
}

.values-description {
  font-size: 1.5rem;
  padding: 5% 30% 5% 0%;
}

.team-members-slider-section {
  background-image: url(../assets/Images/team-page/images/teams-slider-bg.jpg);
  color: white;
  height: 103%;
  border-radius: 50px;
  margin-top: -10%;
}

.team-members-slider-section-description {
  padding: 5% 30% 3% 17%;
  font-size: clamp(1.1rem, 2vw, 1.1rem);
}

.sec {
  position: relative;
}


.title,
.title h3 {
  font-size: 22px;
  color: #2b4d7a;
  font-weight: 700;
  line-height: 1.2em;
}


.title,
.title h3 {
  font-size: 22px;
  color: #2b4d7a;
  font-weight: 700;
  line-height: 1.2em;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  top: 60%;
  position: absolute;
  border-radius: 40px !important;
  color: #ffffff;
  width: 40px;
  height: 40px;
  text-align: center;
}

.owl-nav .owl-prev {
  left: -5%;
}

.owl-nav .owl-next {
  right: -5%;
}

#staff .owl-nav .owl-prev i,
.owl-nav .owl-next i {
  color: #fff;
  font-size: 20px;
  position: relative;
  left: 0px;
}

.box-b {
  padding: 15px 0px;
  transition: 0.2s all ease-in-out;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  height: auto;
  position: relative;
}

.box-b .box-img {
  margin-bottom: 15px;
}

.staff .box-img img {
  height: 145px;
  width: 145px;
  margin: auto;
  border-radius: 90px;
}

.box-b h3 {
  font-size: clamp(18px, 2vw, 18px) !important;
  color: #ffffff;
}

.box-b p {
  line-height: 1.4;
  font-size: clamp(15px, 2vw, 15px) !important;
}

/* Group photo Slider */

.testimonial {
  text-align: center;
  position: relative;
}

.testimonial::before,
.testimonial::after {
  content: "";
  border-right: 125px solid transparent;
  position: relative;
  bottom: -40px;
  left: 0;
}

.testimonial::after {
  border-right: none;
  border-left: 125px solid transparent;
  left: auto;
  right: 0;
}

.testimonial .icon {
  display: inline-block;
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial .description {
  font-size: 14px;
  color: #777;
  text-align: justify;
  margin-bottom: 30px;
  opacity: 0.9;
}

.testimonial .testimonial-content {
  width: 100%;
  left: 0;
  position: absolute;
}

.testimonial .pic {
  display: inline-block;
  border: 4px solid white;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.testimonial .pic img {
  width: 100%;
  height: auto;
}

.testimonial .name {
  font-size: 15px;
  font-weight: bold;
  color: white;
  text-transform: capitalize;
  margin: 10px 0 5px 0;
}

.testimonial .title {
  display: block;
  font-size: 14px;
  color: #ffd9b8;
}

.owl-controls {
  margin-top: -16px;
  position: relative;
}

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

.owl-page {
  height: 10px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10%;
}

.owl-page:hover,
.owl-page.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.owl-page:not(first-item) {
  margin-left: 10px;
}

#testimonial-slider .owl-stage-outer,
.owl-stage,
.testimonial {
  height: 80vh;
}

.group-photo-slider-container {
  margin-top: 10%;
}

.owl-item {
  height: 100% !important;
}

.owl-carousel .owl-wrapper-outer {
  border-radius: 50px;
  height: 100%;
}

.arrow-right {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-right::before {
  content: "";
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.arrow-left {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -20px;
}

.arrow-left::before {
  content: "";
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(130deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.team-member-item-name {
  margin-bottom: 0px;
  font-size: 22px !important;
}

.team-member-item-title {
  margin-top: 0px;
}

body,
html {
  overflow-x: hidden;

  /* Prevent horizontal scroll */
}

.section-title {
  width: 100%;
  margin-left: 276px;
  padding-top: 15px;
}

.team-members-slider-section {
  background-image: url(../assets/Images/team-page/images/teams-slider-bg.jpg);
  color: white;
  height: 110%;
  border-radius: 50px;
  margin-top: -10%;
}

@media (min-width: 1800px) and (max-width: 2000px) {
  .section-title {
    width: 100%;
    margin-left: 276px;
    padding-top: 44px;
  }

  .box-b {
    padding: 3px 4px !important;
    transition: 0.2s all ease-in-out;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    height: auto;
    position: relative;
  }
}

@media (min-width: 2560px) and (max-width: 4000px) {
  .team-members-slider-section {
    background-image: url('../assets/Images/team-page/images/teams-slider-bg.jpg');
    color: white;
    height: 150%;
    border-radius: 50px;
    margin-top: -33%;
  }

  .section-title {
    width: 100%;
    margin-left: 276px;
    padding-top: 202px !important;
  }

  .box-b p {
    line-height: 1.4;
    font-size: clamp(30px, 2vw, 15px) !important;
  }

  .box-b {
    padding: 4px 0px;
    transition: 0.2s all ease-in-out;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    height: auto;
    position: relative;
  }

  .row {
    display: flex;
    justify-content: center;
    margin-bottom: 30px !important;
    height: 47vh !important;
  }

  .team-members-slider-section-description {
    padding: 5% 30% 3% 17%;
    font-size: clamp(2.1rem, 2vw, 1.1rem);
  }

  .section-title {
    width: 100%;
    margin-left: 276px;
    padding-top: 0px !important;
    font-size: 44px;
  }

  .meet-gto-family-section {
    background-color: rgb(255, 255, 255);
    display: block;
    height: 118vh;
  }

  .meet-gto-family-information-section-two {
    width: 50%;
    font-family: Avenir;
    font-size: 2.2rem;
  }
}


/* Media Query for Tablet (768px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .team-members-slider-section {
    height: auto !important;
    min-height: 80vh;
    margin-top: -10%;
    padding-bottom: 3%;
  }

  .team-explore-our-work-section {
    background-color: #fff;
    display: block;
    height: 40vh !important;
    margin-top: 10%;
  }

  .owl-stage {
    height: 65vh;
  }

  .section-title {
    width: 100%;
    margin-left: 37px;
    padding-top: 15px;
  }

  .team-members-slider-section-description {
    padding: 5% 15% 3% 10%;
    font-size: 1rem;
  }

  .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .box-b.staff {
    max-width: 90%;
    margin: 0 auto;
  }

  .team-member-item-name {
    font-size: 1.2rem !important;
  }

  .team-member-item-title {
    font-size: 1rem;
  }

  /* Fix alignment for carousel items */
  #staff .item {
    text-align: center;
  }

  #staff img {
    max-width: 100%;
    height: auto;
  }

  .row {
    display: flex;
    justify-content: center;
    margin-bottom: 170px;
  }
}

/* Media Query for Tablet (1024) */
@media screen and (min-width: 1024px) and (max-width: 1600px) {
  .team-members-slider-section {
    height: 120% !important;
  }

  .row {
    display: flex;
    justify-content: center;
    height: 52vh !important;
  }

  .section-title {
    width: 100%;
    margin-left: 111px;
    padding-top: 15px;
  }

}

/* Group photo slider */
/* Hiding the scroller from the broswer */
*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

* {
  -ms-overflow-style: none;
}

.team-explore-our-work-section {
  background-color: #fff;
  display: block;
  height: 30vh;
  margin-top: 10%;
}

.meet-gto-family-information-section-one span {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: bold;
  font-family: Avenir;
  line-height: 1.2;
}

@media screen and (min-width: 300px)and (max-width: 399px) {
  .team-members-slider-section {
    background-image: url(../assets/Images/team-page/images/teams-slider-bg.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    height: 160vh !important;
    padding: 57px;
    margin: -2vw;
    border-radius: 0vw;
  }

  .meet-gto-family-section {
    height: auto;
    padding: 15% 0% 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section-title {
    width: 100%;
    margin-left: 35px !important;
    padding-top: 60px !important;
  }

  .min-height-footer {
    min-height: 16vh !important;
  }

  .iframe-height {
    width: 100%;
    height: 78vh;
    border: none;
  }

  .meet-gto-family-info-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    text-align: center;
  }

  .meet-gto-family-information-section-one {
    width: 104%;
    padding-bottom: 17px;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: -2vw;
    padding: 10% 5% 4% 0%;

  }

  .meet-gto-family-information-section-one span {
    font-size: clamp(1.1rem, 3vw, 3rem);
    font-weight: bold;
    font-family: Avenir;
    line-height: 1.2;
  }

  .meet-gto-family-information-section-two {
    width: 100%;
    font-size: 0.8rem;
    padding: 0 10%;
    text-align: center;
    line-height: 1.2;
  }

  .team-members-slider-section-description {
    padding: 1% 5%;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .box-b {
    padding: 0vw;
    transition: 0.2s all ease-in-out;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    height: auto;
    margin-top: 43vw;
    position: relative;
  }

  .owl-carousel .owl-item img {
    display: block;
    width: 100% !important;
    margin-top: -40vw;
  }

  .owl-nav {
    display: none !important;
  }

  .group-photo-slider-container img {
    width: 100%;
    border-radius: 15px;
  }

  .schedule-consultation h1 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .schedule-consultation button {
    font-size: 0.6rem;
    padding: 7px 1px;
    margin: 0 auto;
    display: block;
    width: 42%;
    border-radius: 25px;
  }

  .gto-group-photo-section {
    height: 72vh;
  }

  .team-explore-our-work-section {
    height: 20vh;
    margin-top: 86px;
  }

  .second-team {
    margin-top: 50% !important;
  }
}

/* Media query for mobile screens under 440px */
@media screen and (min-width: 400px) and (max-width: 440px) {
  .meet-gto-family-section {
    height: auto;
    padding: 15% 0% 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .section-title {
    width: 100%;
    margin-left: 35px !important;
    padding-top: 60px !important;
  }

  .team-members-slider-section {
    background-image: url(../assets/Images/team-page/images/teams-slider-bg.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    height: 197vh !important;
    padding: 57px;
    margin: -2vw;
    border-radius: 0vw;
  }

  .min-height-footer {
    min-height: 16vh !important;
  }

  .iframe-height {
    width: 100%;
    height: 78vh;
    border: none;
  }

  .meet-gto-family-info-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    text-align: center;
  }

  .meet-gto-family-information-section-one {
    width: 104%;
    padding-bottom: 17px;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: -2vw;
    padding: 10% 5% 4% 0%;

  }

  .meet-gto-family-information-section-one span {
    font-size: clamp(1.1rem, 3vw, 3rem);
    font-weight: bold;
    font-family: Avenir;
    line-height: 1.2;
  }

  .meet-gto-family-information-section-two {
    width: 100%;
    font-size: 0.8rem;
    padding: 0 10%;
    text-align: center;
    line-height: 1.2;
  }

  .team-members-slider-section-description {
    padding: 1% 5%;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .box-b {
    padding: 0vw;
    transition: 0.2s all ease-in-out;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    height: auto;
    margin-top: 43vw;
    position: relative;
  }

  .owl-carousel .owl-item img {
    display: block;
    width: 100% !important;
    margin-top: -40vw;
  }

  .owl-nav {
    display: none !important;
  }

  .group-photo-slider-container img {
    width: 100%;
    /* height: 60vh; */
    border-radius: 15px;
  }

  .schedule-consultation h1 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .schedule-consultation button {
    font-size: 0.6rem;
    padding: 7px 1px;
    margin: 0 auto;
    display: block;
    width: 42%;
    border-radius: 25px;
  }
  .gto-group-photo-section{
    height: 72vh;
  }
  .team-explore-our-work-section{
    height: 20vh;
    margin-top: 84px;
  }
  .second-team{
    margin-top: 50% !important;
  }
}

.font-small{
  font-size: small !important;
}

.Group-photo-section-text {
  font-family: Avenir;
  font-weight: bold;
  text-align: center;
  color: black;
}

.item{
  text-align: center;
  font-family: avenir;
  font-weight: 600;
}

        /* Slide container */
        #group-images-slider .item {
            position: relative;
            overflow: hidden;
            border-radius: 50px; /* match your image radius */
        }

        /* Readability overlay */
        #group-images-slider .item::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.35) 42%,
                rgba(0, 0, 0, 0.05) 78%,
                rgba(0, 0, 0, 0.00) 100%
            );
        }

        #group-images-slider .item img {
            display: block;
            width: 100%;
            border-radius: 50px;
        }

        /* NEW: Proper overlay heading container */
        #group-images-slider .slide-caption {
            position: absolute;
            left: 50%;
            bottom: 28px;
            transform: translateX(-50%);
            z-index: 2;

            width: min(1100px, calc(100% - 64px));
            padding: 18px 22px;

            background: rgba(10, 12, 18, 0.62);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);

            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow:
                0 22px 60px rgba(0, 0, 0, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.10);

            text-align: center;
        }

        /* Accent line */
        #group-images-slider .slide-caption::before {
            content: "";
            display: block;
            height: 4px;
            width: 84px;
            margin: 0 auto 12px auto;
            border-radius: 999px;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.12),
                rgba(255, 255, 255, 0.95),
                rgba(255, 255, 255, 0.12)
            );
        }

/* BIG heading text (tuned down) */
#group-images-slider .slide-caption .slide-title {
    margin: 0 !important;
    padding: 0 !important;

    /* reduced size */
    font-size: clamp(18px, 1.6vw, 32px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: 0.4px !important;

    color: rgba(255, 255, 255, 0.98) !important;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.65) !important;
}
