/* width */
::-webkit-scrollbar {
  width: 8px;
  padding: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(128, 128, 128, 0);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #981b2d;
  border-radius: 10px;
}


/* slant div  */
.slant1,
.slantx {
  border-bottom: 2px solid #981b2d
}

.slantx,
.slanty {
  clip-path: polygon(0 0, 100% 0%, 100% 100%)
}

/* slant div  */



.header_col2 a,
.mobile_menu a {
  text-decoration: none;
  color: #fff
}

.mobile_menu a,
.ser3text #txtp1,
.serbox #serp2 {
  font-weight: 600
}

.mobile_menu li,
.ser3text ul {
  list-style-type: none
}

.testi-p1,
.testi-p3,
.testi-p4 {
  font-style: italic
}

.about-text,
.hero2text p,
.inp-box {
  text-align: justify
}

.body {
  margin: 0;
  padding: 0
}

.row {
  margin: 0 !important;
  padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif
}

.header,
.hero-text button,
a,
p {
  font-family: Poppins, sans-serif
}

.slant1 {
  width: 100%;
  height: 50px;
  background-color: #981b2d
}

.slant2,
.slantx {
  background-color: #fff;
  width: 100%
}

.slantx {
  height: 55px;
  border-top: 2px solid #fff
}

.slant2 {
  height: 50px
}

.header,
.red-section,
.slanty {
  background-color: #981b2d
}

.slanty {
  width: 100%;
  height: 100%
}

.header,
.mobile_menu,
.red-section {
  height: max-content
}

.header {
  width: 100%;
  position: fixed;
  padding: 7px 6%;
  box-shadow: 0 11px 20px 6px #00000063;
  z-index: 99995;
}


.header_col1,
.hero2img,
.ser3contents_col1 {
  display: flex;
  align-items: center;
  justify-content: center
}

.hero2img img {
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.658));
}

.header_col1 img {
  width: 55%
}

.header_col2 {
  display: flex;
  align-items: center;
  justify-content: space-around
}

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

.header_col3 i {
  color: #fff
}

.header_col3 a {
  color: #fff;
  font-size: 200%
}

.mobile_menu {
  width: 100%;
  display: none
}

.hero-text h1,
.hero-text h2,
.testi-p4 {
  font-weight: lighter
}

@media (max-width:768px) {
  .header_col2 {
    display: none
  }

  .header_col1 {
    justify-content: flex-start
  }

  .header_col1 img {
    width: 50%
  }
}

@media (min-width:769px) {
  .header_col3 {
    display: none
  }
}

@media (max-width:450px) {
  .header_col1 img {
    width: 50%
  }
}

.mobile_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  /* semi-transparent dark overlay */
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease forwards;
  z-index: 999999999 !important;
}

.mobile_menu_container {
  position: relative;
  background-color: #981b2d;
  height: 100vh;
  width: 92%;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 20px;
  animation: slideIn 0.4s ease forwards;
  z-index: 999999;
}


.mobile_menu_container img {
  width: 70%;
  margin-bottom: 20px;
}


.mobile_menu_container .social-icons-mob-menu {
  position: absolute;
  width: 100%;
  bottom: 10px;
  display: flex;
  align-items: start;
  justify-content: space-around;
  font-size: 30px;
  color: antiquewhite;
  padding-left: 4%;
}

.mobile_menu_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.close-icon {
  font-size: 24px;
  cursor: pointer;
}

.mobile_menu ul {
  padding: 0;
  margin: 0;
}

.mobile_menu li {
  list-style: none;
  padding: 10px 0;
  text-align: left;
}

.mobile_menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: block;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 12px;
  transition: background 0.2s;
}

.mobile_menu a:hover {
  background: #ffffff22;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Each slide as full background */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
  z-index: 0;
}

/* Dark overlay on top of background image */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.207);
  /* adjust darkness here */
  z-index: 1;
}

/* Only active slide is visible */
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Gradient overlay for hero section */
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0.4) 40%, rgba(255, 255, 255, 0) 80%);
}

@media(max-width:576px) {
  .hero-gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0.4) 40%, rgba(255, 255, 255, 0) 80%);
  }
}



.hero-text-overlay {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Text content inside slide */
.hero-text-container {
  color: white;
  padding-left: 20%;
  padding-top: 30%;
  position: relative;
  z-index: 2;
}

@media(max-width:768px) {
  .hero-text-container {
    padding: 2%;
    padding-top: 130%;
  }
}

.hero-text-container h2 {
  font-size: 35px;
}

.hero-text-container h1 {
  font-size: 52px;
}

.contact-button {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid white;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: larger;
  margin-top: 10px;
}

.hero-icons i {
  font-size: 28px;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 15px;
  color: white;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.slider-nav span {
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

@media(max-width:576px) {
  .slider-nav span {
    display: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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



.contact-right,
.hero-section2 {
  position: relative
}

.hero-text h1 {
  font-size: 50px
}

.hero-text h2 {
  font-size: 35px
}

.hero-text button {
  margin-top: 15px;
  width: 188px;
  height: 43px;
  background: center;
  color: #fff;
  border-radius: 100px;
  border: solid #fff;
  font-weight: 500;
  font-size: larger
}

.hero-section2 {
  padding: 8% 7%
}

.hero-section2 img {
  width: 75%;
  float: right
}

.hero2text_container,
.ser3text {
  width: 70%
}

.hero2text h1 {
  font-size: 69px
}

.hero2text h6 {
  font-size: 24px;
  color: #981b2d
}

.hero2text p {
  font-size: 20px;
  color: #5b5b5b
}

.hero2text button {
  width: 155.84px;
  height: 55px;
  background: #981b2d;
  color: #fff;
  border-color: #fff
}

.hero-section2 h2 {
  position: absolute;
  bottom: 0;
  left: 8%;
  z-index: 99;
  color: #981b2d;
  font-size: 48px
}

.red-section {
  width: 100%;
  padding: 2% 12%;
  align-items: center
}

.box1,
.box2 {
  height: 100% !important;
  padding: 10px;
  margin-bottom: 5px;
  background-repeat: none;
  background-size: cover;
  background-position: center center
}

.about-text {
  color: #fff;
  width: 100%
}

.about-text p {
  font-size: 14px;
  font-weight: 300;
  text-align: left
}

.box1 {
  background-image: url(../img/aboutbox1.webp)
}

.box2 {
  background-image: url(../img/aboutbox2.webp)
}

.fifthimg,
.firstimg,
.fourthimg,
.secondimg,
.sixthimg,
.thirdimg {
  margin-bottom: 5%;
  overflow: hidden
}

.aboutimg {
  height: 420px;
  padding-left: 45%
}

.service {
  padding: 0 8%
}

.service-contents {
  padding-left: 5%
}

.service h1 {
  font-size: 63px;
  color: #981b2d
}

.connect h2,
.service h2 {
  color: #1b263b;
  font-size: 65px
}

.connect h5,
.ser2contents h5,
.ser3text h5,
.service h5 {
  color: #981b2d;
  font-size: 20px
}

.serbox {
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  box-shadow: 0px 0px 20px 0px #00000017;
}

.contact-right img,
.gallery,
.gallery-contents .row img,
.serbox img {
  width: 100%
}

.serbox h3 {
  padding-top: 25px;
  font-size: 26px;
  text-align: left
}

.serbox #serp1 {
  color: #5b5b5b;
  font-size: 14px
}

.serbox #serp2 {
  color: #8a2846
}

.service2 {
  margin-top: 10%;
  background-color: #f8e6c0;
  padding-left: 13%;
  padding-right: 13%
}

.ser2contents {
  padding-top: 8%
}

.ser2contents h2 {
  color: #1b263b;
  font-size: 60px
}

.service2img {
  width: 50%;
  padding-bottom: 15%
}

.serviceboxes {
  padding: 10px !important
}

.ser2text {
  width: 56%;
  padding-left: 20px
}

.ser2text h3 {
  color: #1b263b;
  font-size: 44px
}

.connect p,
.ser2text p {
  color: #5b5b5b;
  font-size: 16px
}

@media(max-width :9928px) {
  .ser2text {
    width: 100%;
    padding-left: 0
  }
}

.service3 {
  background-color: #f3f3f3
}

.ser3contents {
  padding: 20px 0
}

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

.ser3img {
  width: 30%;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.281));
}

.ser3text h2 {
  color: #1b263b;
  font-size: 55px
}

.ser3text #txtp1,
.ser3text #txtp2,
.ser3text ul {
  font-size: 15px;
  color: #5b5b5b
}

.ser3text ul {
  padding-top: 20px
}



.gallery h2 {
  font-size: 55px;
  color: #981b2d;
  padding-left: 8%;
  padding-top: 5%
}

.gallery-bg {
  width: 100%;
  background-image: url(../img/gallerybg.webp);
  background-size: cover;
  background-repeat: none;
  background-position: center center
}

.gallery-contents {
  padding: 5% 11%
}

.gallery-contents h5 {
  color: #fff;
  font-size: 18px
}

.gallery-contents h3 {
  color: #fff;
  font-size: 55px
}

.firstimg {
  width: 100%
}

.secondimg {
  width: 98%
}

.thirdimg {
  width: 89%
}

.fourthimg {
  width: 100%
}

.fifthimg {
  width: 106%
}

.sixthimg {
  width: 81%;
  padding-left: 10%
}

.seventhimg {
  width: 116%;
  overflow: hidden
}

.mobile-gallery {
  display: none;
}

.carousel-container {
  display: none;
}

@media(max-width:992px) {
  .thirdimg {
    width: 103%;
    height: 100%;
  }

  .sixthimg {
    width: 100%;
    height: 92%;
  }

  .seventhimg {
    width: 100%;
  }

  .mobile-gallery {
    display: none;
  }

  .carousel-container {
    display: none;
  }

  .desktop-gallery {
    display: block;
  }
}



/* Main Mobile View Only */
@media (max-width: 768px) {
  .mobile-gallery {
    display: block;
  }

  .carousel-container {
    display: block;
  }

  .desktop-gallery {
    display: none;
  }

  .firstimg,
  .secondimg,
  .thirdimg,
  .fourthimg,
  .fifthimg,
  .sixthimg,
  .seventhimg {
    display: none;
  }

  .main-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
  }

  .carousel-container {
    position: relative;
    display: flex;
    align-items: center;
  }

  .tab-row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scroll-behavior: smooth;
    margin-bottom: 2%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
  }

  .tab-row::-webkit-scrollbar {
    display: none;
  }

  .thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, border 0.3s;
  }

  .thumb:hover {
    transform: scale(1.05);
    border: 2px solid #fff;
  }

  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #981b2d;
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 5px 10px;
    z-index: 10;
    cursor: pointer;
    border-radius: 6px;
  }

  .scroll-btn.left {
    left: 0;
  }

  .scroll-btn.right {
    right: 0;
  }
}


.map-container,
.testimonials {
  width: 100%;
  height: max-content
}

.testi-contents {
  padding: 4%;
}

.swiper-button-prev,
.swiper-button-next {
  color: #981b2d;
  z-index: 10;
}

.testimonials-swiper {
  position: relative;
  padding: 10px;
}

@media (max-width: 767px) {
  .swiper-slide {
    display: flex !important;
  }

  .testi-box {
    width: 100%;
    max-width: 300px;
    height: max-content;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;

  }

  .box-contents {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    box-sizing: border-box;
  }
}

.testi-bg {
  width: 100%;
  background-image: url(../img/testimonalbg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 40px
}

.testi-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5%
}

.testi-heading h5 {
  font-size: 20px;
  color: #f3f3f3
}

.testi-heading h2 {
  font-size: 65px;
  color: #fff
}

.testi-boxes {
  padding-left: 10%;
  padding-right: 10%;
  height: 100%
}

.testi-box {
  width: 100%;
  background-color: #5a020e;
  padding-left: 5%;
  padding-right: 5%
}

.testi-box_col {
  padding-bottom: 20px
}

.testi-img {
  width: 38%
}

.testi-p1 {
  padding-top: 10%;
  color: #fff
}

.testi-p2 {
  padding-top: 5%;
  margin: 0
}

.testi-p3 {
  color: #fff;
  padding-top: 3%;
  margin: 0
}

.testi-p4 {
  color: #fff
}

.testi-symbol {
  padding-left: 85%;
  width: 100%
}

.box-contents {
  padding: 8%
}



.contact {
  padding-left: 10%;
  padding-right: 10%
}

.contact h2 {
  color: #981b2d;
  font-size: 50px
}

.contact-details {
  padding: 5% 10%
}

.connect {
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column
}

.inp-box {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.fields {
  color: #1b263b;
  font-weight: 400
}

.input-boxes {
  margin-bottom: 20px;
  width: 100%;
  border: 2px solid #981b2d;
  outline: 0;
  padding: 10px
}

.btn-contact {
  background-color: #981b2d;
  color: #fff;
  width: 100%;
  height: 45px;
  border-width: 0
}

.contactimg {
  padding-right: 30%
}

.contact-bg-container {
  width: 100%;
  height: max-content;
  position: absolute;
  bottom: 0;
  background-color: transparent;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%
}

.contact-container {
  width: 100%;
  position: relative;
  height: max-content;
  background-color: #5a020e;
  color: #fff;
  padding: 6% 6%
}

@media(max-width :1400px) {
  .contact-container {
    padding: 4% 2%
  }

  .contact-bg-container {
    padding-left: 0%;
    padding-right: 0%;
  }

  .contact-details {
    padding: 5% 5%
  }
}

@media(max-width :992px) {
  .hero-section2 {
    padding: 8% 2%
  }

  .hero2text_container,
  .ser3text,
  .service2img {
    width: 100%
  }

  .red-section {
    padding: 2% 5%
  }

  .contact,
  .service2 {
    padding-left: 8%;
    padding-right: 8%
  }

  .ser3contents {
    padding: 20px 2%
  }

  .contact-details {
    padding: 5% 2%
  }
}

.info-box h6 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px
}

.info-box p {
  margin: 0 0 10px;
  font-size: 14px
}

.social-icons i {
  font-size: 18px;
  padding-right: 10px;
  color: #fff
}

.border-right {
  border-right: 1px solid rgba(255, 255, 255, .3)
}

.footer-bg {
  width: 100%;
  background-color: #981b2d;
  padding: 5% 10%
}

.footer-contents h4 {
  color: #fff;
  font-size: 31px
}

.footer-contents p {
  color: #fff;
  font-weight: 400;
  font-size: smaller
}

.social-icons-footer {
  color: #fff;
  border-color: #1b263b;
  font-size: 20px;
  padding-bottom: 10px
}

@media(max-width :768px) {

  .contact-container,
  .fifthimg,
  .firstimg,
  .hero-section2 img,
  .secondimg,
  .ser2text,
  .ser3text,
  .seventhimg,
  .sixthimg,
  .thirdimg {
    width: 100%
  }

  .hero-section2 {
    padding: 15% 1% 23%
  }

  .aboutimg {
    padding-left: 0;
    width: 100%;
    height: auto
  }

  .red-section {
    padding: 2%
  }

  .box1_col,
  .box2_col {
    padding: 0 !important
  }

  .service {
    padding: 0 5%
  }

  .service2 {
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 20px
  }

  .service-contents {
    padding-left: 0
  }

  .serbox {
    height: 100%;
    padding: 8px
  }

  .ser3img {
    width: 30%
  }

  .gallery h2 {
    padding-left: 4%;
    padding-top: 10px
  }

  .gallery-contents {
    padding: 20px 5% 0
  }

  .sixthimg {
    padding: 0
  }

  .contact,
  .testi-boxes {
    padding-left: 2%;
    padding-right: 2%
  }

  .box-contents,
  .testi-heading {
    padding: 5% 2%
  }

  .testi-img {
    width: 20%
  }

  .testi-symbol {
    width: 90%
  }

  .testi-p1 {
    padding-top: 10px
  }

  .testi-p2 {
    padding-top: 5px
  }

  .contact-right img {
    display: none
  }

  .contact-bg-container {
    width: 100%;
    height: max-content;
    position: relative;
    background-color: transparent;
    padding-left: 0;
    padding-top: 10px
  }

  .social-icons-footer {
    margin-bottom: 10px
  }
}

/* Professional solid hero text overlay background */
.hero-text-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: #181818;
  /* fully solid, professional dark */
  border-radius: 0 30px 30px 0;
  box-shadow: 8px 0 32px 0 rgba(0, 0, 0, 0.25);
  padding: 60px 30px 60px 40px;
  display: flex;
  align-items: center;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-text-overlay {
    width: 60%;
    padding: 30px 10px 30px 10px;
    border-radius: 0 20px 20px 0;
  }
}

@media (max-width: 600px) {
  .hero-text-overlay {
    width: 100%;
    padding: 20px 5px;
    height: auto;
    border-radius: 0;
  }
}

/* Fade-in from right animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

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

.fade-in-right {
  opacity: 0;
  transition: opacity 0.2s;
}

.fade-in-right.visible {
  animation: fadeInRight 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  opacity: 1;
}



/**new**/

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

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

.fade-in-left {
  opacity: 0;
}

.fade-in-left.visible {
  animation: fadeInLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/**end**/

@media (min-width: 993px) {
  .slider-nav-arrows {
    display: flex !important;
    z-index: 9999 !important;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    pointer-events: auto;
    padding: 0 20px;
  }

  .slider-nav-arrows span {
    z-index: 10000 !important;
    position: relative;
    pointer-events: auto;
  }
}



/* whatsapp */

.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #1dc96a;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}




































/* Section Container */
.switchable-gallery-section {
  padding: 20px 0px;
  max-width: 1400px;
  margin: auto;
}

/* Filter Tabs */
.switchable-gallery-tabs {
  text-align: center;
  margin-bottom: 30px;
}

.sg-tab {
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  margin: 0 15px;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.3s;
}

.sg-tab.active,
.sg-tab:hover {
  border-bottom: 2px solid #fff;
}

/* Gallery Row */
.switchable-gallery-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
}

/* Image Styling */
.switchable-gallery-row img {
  /*max-height: 300px;*/
  height: 250px;
  /*max-width: 100%;*/
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.switchable-gallery-row img:hover {
  transform: scale(1.02);
}

/* Mobile: Make gallery horizontal slider */
@media (max-width: 768px) {
  .switchable-gallery-row {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .switchable-gallery-row img {
    display: inline-block;
    max-height: 220px;
    height: auto;
    width: auto;
    max-width: 90%;
    margin-right: 10px;
    scroll-snap-align: start;
    vertical-align: middle;
  }

  /* Optional: hide scrollbar */
  .switchable-gallery-row::-webkit-scrollbar {
    display: none;
  }
  .switchable-gallery-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
