:root {
  --bs-primary-rgb: 108, 28, 113;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Merriweather", serif;
  /* color: #6c1c71; */
}

/*

.merriweather-<uniquifier> {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

.bg-pattern {
  background: url(../images/bg-pattern.png) repeat 0 0 #792a75;
  background-attachment: fixed;
}

.form-control {
    border: 2px solid #6c1c71;
    color: #6c1c71;
}

.border {
    border-color: #6c1c71 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff !important;
    background: #6b1970;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
}

.swiperControls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 20px;
}

.swiperControls .swiper-button-next, .swiperControls .swiper-button-prev {
    position: static;
    margin: 0;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 25px !important;
}

.bg-hero-gradient {
  /* background: url(../images/bg-pattern.png) repeat 0 0, linear-gradient(263deg, rgba(108, 28, 113, 1) 0%, rgba(234, 246, 255, 1) 38%, rgba(255, 255, 255, 1) 100%); */
  /* background: url(../images/bg-pattern.png) repeat 0 0, linear-gradient(274deg,rgba(108, 28, 113, 1) 2%, rgba(255, 230, 255, 1) 77%); */
  background-color: #eaf6ff;
}

.banner-text {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 1rem 3rem;
    max-width: 60%;
    width: 100%;
}

@media (min-width: 992px) { 
  /*Sticky top image or content basis content top is considerd with header heoght*/
  .sticky-top-desktop {
    position: sticky;
      top: 120px;
  }
}

body {
  background-color: #eaf6ff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: #333;
}

h1, h2 {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

p {
  font-weight: 500;
}

header {
  position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}

/*animated anchor underline start*/
a {
  text-decoration: none !important;
}
a.animated-underline, a.animated-underline:hover {
  position: relative; /* 1 */
  text-decoration: none; /* 2 */
  display: inline; /* 3 */
}

a.animated-underline::before,
a.animated-underline::after {
  content: '';
  position: absolute; /* 1 */
  top: 100%; /* 1 */
  height: 1px; /* 2 */
  width: 50%; /* 2 */
  transform: scaleX(0); /* 3 */
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); /* 4 */
  background-color: currentcolor; /* 5 */
}
a.animated-underline::before {
  left: 0;
  transform-origin: left;
}
a.animated-underline::after {
  right: 0;
  transform-origin: right;
}
a.animated-underline:active::before,
a.animated-underline:hover::before,
a.animated-underline:active::after,
a.animated-underline:hover::after {
  transform: scaleX(1); /* 1 */
}
/*animated anchor underline end*/

/*animated submit button start*/
.anime-submit {
  font-family: inherit;
  font-size: 20px;
  background: #6c1c71;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}

.anime-submit span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.anime-submit svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.anime-submit:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.anime-submit:hover svg {
  transform: translateX(3.5em) rotate(45deg) scale(1.1);
}

.anime-submit:hover span {
  transform: translateX(10em);
}

.anime-submit:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}
/*animated submit button end*/

/*animated expand icon button start*/
.expand-icon-button {
  --main-color: #6c1c71;   /* fallback if not set */

  max-width: fit-content;
  background: var(--main-color);
  color: #fff;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em color-mix(in srgb, var(--main-color) 60%, black);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  text-decoration: none;
}

.expand-icon-button .eb-icon {
  background: #fff;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em color-mix(in srgb, var(--main-color) 70%, black);
  right: 0.3em;
  transition: all 0.3s;
}

.expand-icon-button .eb-icon img {
    max-width: 20px;
    height: 20px;
}

.expand-icon-button .eb-icon svg,
.expand-icon-button .eb-icon i {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--main-color);
}

.expand-icon-button:hover .eb-icon {
  width: calc(100% - 0.6em);
}

.expand-icon-button:hover .eb-icon svg,
.expand-icon-button:hover .eb-icon i {
  transform: translateX(0.1em);
}

.expand-icon-button:active .eb-icon {
  transform: scale(0.95);
}
/*animated expand icon button end*/

.nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 15px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .dropdown-menu {
  position: static;
  background: #0e384c;
  padding: 0;
  overflow: hidden;
  /* width: 200px; */
}

.dropdown-item {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px !important;
  color: #ffffff;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

/*Hero BAnner*/

.hero-section {
    /* min-height: calc(100vh - 75px); */
    min-height: auto;
    /* display: flex; */
    width: 100%;
    background: #f9f9f9;
}

.banner-wrappper {
    position: relative;
    width: 100%;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #6c1c71;
}

.hero-section h3, .hero-section h5 {
  color: #333333;
}

.hero-section h5 {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-top: 20px;
}

.hero-right-img {
    height: 100%;
}

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

.heroSectionImageWrap img {
  /* height: 100%;
  width: 100%;
  object-fit: fill; */
}
.btn-appointment {
  background-color: #1e90ff;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  padding: 12px 24px;
}
.btn-appointment:hover {
  background-color: #007bff;
}
.rating {
    font-size: 1.1rem;
    padding: 5px 10px;
    background: #6c1c71;
    border-radius: 5px;
    display: inline-flex;
    box-shadow: 3px 3px 0px #282828;
}
span.rating-text {
    font-weight: 600;
    color: #6c1c71;
    display: inline-flex;
    gap: 10px;
}
img.rating-text-logo {
    max-height: 20px;
}
.doctor-card {
    position: absolute;
    bottom: 20%;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: exportmoveobject 3s infinite linear alternate;
}
.doctor-card a {
  display: inline-block;
}
@keyframes exportmoveobject{
	50%{
		left: 50px;
	}
}
.doctor-card img {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    object-fit: cover;
}

/*Dental top bar*/
.top-bar {
    background-color: #6c1c71;
    color: #fff;
}
.top-bar h5 {
   font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.top-bar i {
    font-size: 40px;
    color: #ffffff;
}
.appointment-btn {
  background: linear-gradient(to right, #27c0ff, #007bff);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.appointment-btn:hover {
  background: linear-gradient(to right, #1aa3e8, #0056b3);
  color: #fff;
}
.divider {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

/*About Content*/
.about-section {
  background-color: #fff;
  position: relative;
}

.badge-circle {
  width: 120px;
  height: 120px;
  background-color: #1e90ff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-circle .circle-text {
  transform: rotate(-15deg);
}

@media (max-width: 768px) {
  .badge-circle {
    width: 90px;
    height: 90px;
    font-size: 12px;
  }
}

/*Services Section*/
.services-section {
  background-color: #f0f8ff;
}

.ico-wrap {
    max-width: 70px;
}

.ico-wrap img {
    max-height: 70px;
}

.service-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.service-card .expand-icon-button, .team-member .expand-icon-button, .blog-card .expand-icon-button {
    max-width: 100%;
}

.service-card i {
    font-size: 40px;
    color: #792a75;
}
  .know-more-service {
    text-decoration: none;
  }

  .know-more-service i {
    font-size: 25px;
  }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/*visit clicnic*/
.visit-clinic-section .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.visit-clinic-section h2 {
  color: #fff;
  font-size: 2rem;
}

.counter {
    font-size: 2rem;
    color: #6c1c71;
}

.counter.plus::after {
  content: "+";
  margin-left: 5px;
}

.clinic-banner-stats {
  background: url(../images/video-bg.webp) no-repeat 0 0 transparent;
  background-attachment: fixed;
  background-size: cover;
  background-position: bottom right;
  overflow: hidden;
}

.clinic-banner-stats.ratio::before {
  background-color: rgba(0,0,0,.3);
}

a.play-video-icon.video-link {
    font-size: 1rem;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    color: #ffffff;
    max-width: 300px;
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    transition: all .5s ease;
    font-weight: 600;
}

a.play-video-icon.video-link:hover {
  background-color: #fff;
  border: 1px solid #6c1c71;
  color: #6c1c71;
}

.bg-fixed-home-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-fixed-home-section::before {
    content: "";
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content-cbs {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.content-cbs a.play-video-icon i {
    color: #fff;
    font-size: 3.5rem;
}

/*why us section*/
.why-choose-section {
  background-color: #f0f8ff;
  position: relative;
}

.tooth-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooth-image-wrapper img {
  z-index: 2;
  position: relative;
}

.circle-bg {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(173, 216, 230, 0.15); /* light blue */
  z-index: 1;
  box-shadow: var(--bs-box-shadow) !important;
}

.feature-item {
    padding: 20px;
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    box-shadow: var(--bs-box-shadow) !important;
}

@media (max-width: 768px) {
  .tooth-image-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .circle-bg {
    width: 200px;
    height: 200px;
  }
}

/*what we do*/
.what-we-do-section .accordion-button {
  font-size: 1rem;
  background-color: transparent;
  color: #0d1b2a;
}

.what-we-do-section .accordion-button:focus {
  box-shadow: none;
}

.what-we-do-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.what-we-do-section .accordion-button::after {
  margin-left: auto;
}

.accordion-item {
    background-color: transparent;
}

/*team section*/
.team-section {
  background-color: #f0f8ff; /* soft blue background */
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.team-member {
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-member h6 {
    font-size: 1.2rem;
    color: #6b1c70;
    font-family: "Merriweather", serif;
}

.team-member:hover {
  transform: translateY(-5px);
}

/*testimonials*/
.testimonial-section {
  background-color: #f8fbfd;
}

.rating-box {
  bottom: 20px;
  left: 20px;
  max-width: 250px;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stars {
  font-size: 1.2rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0d6efd;
}

.swiper-slide {
  height: auto;
}

/*blogs section*/
.blogs-section {
  background-color: #e8f4fb;
}

.blog-card {
  border: none;
  background: transparent;
}

.image-wrapper {
  cursor: pointer;
}

.image-wrapper img {
  transition: transform 0.3s ease;
  display: block;
  border-radius: 1rem;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: 600;
}

.image-wrapper:hover .overlay {
  opacity: 1;
}

.view-btn {
  font-size: 1.1rem;
}

.card-title {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.read-more {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more i {
  font-size: 1.2rem;
}

.btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #084cd9;
}

/*contact form section*/
.contact-section {
  background-color: #fff;
  padding: 3rem 1rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.contact-info small {
  letter-spacing: 2px;
}

.btn-primary {
    background-color: #792a75;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #921d78;
    text-decoration: none;
}

.bi {
  vertical-align: middle;
}

/*footer*/
.footer-section {
    /* background: url(../images/bg-pattern.png) repeat 0 0 #792a75; */
    background: #792A75;
    background: linear-gradient(171deg,rgba(121, 42, 117, 1) 0%, rgba(79, 0, 62, 1) 100%);
    background-attachment: fixed;
    color: #ffffff !important;
}

.footer-section a.footer-link {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-size: .8rem;
    font-weight: 600;
}

.footer-section a.footer-link:hover {
  color: #3b7aa9;
  text-decoration: underline;
}

.footer-section h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  font-weight: 300;
  font-size: 0.95rem;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

h3.logo img {
    background: #ffffff;
    padding: 10px;
    border-radius: 20px;
}

.fees-section {
    background: url(../images/homepage-ambience.jpg) no-repeat 0 0 transparent;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.fees-section::before {
    content: "";
    background-color: rgba(0,0,0,.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/*contact info section*/
.contact-info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-text {
  flex: 1 1 400px;
  min-width: 320px;
}

.section-label {
  color: #3b7aa9;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title span {
  color: #3b7aa9;
}

.section-description {
  font-weight: 400;
  color: #5c6b73;
  font-size: 1rem;
  max-width: 400px;
  margin-bottom: 2rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.icon {
    background: #e3f1ff;
    display: flex;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 1rem;
    height: 62px;
    width: 62px;
    align-items: center;
    justify-content: center;
}

.card h4 {
  margin-bottom: 0.5rem;
  color: #0f324f;
  font-weight: 700;
}

.card p {
  color: #6c7a89;
  font-weight: 400;
}

.map-container {
  flex: 1 1 500px;
  min-width: 320px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 450px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info-section {
    flex-direction: column;
  }

  .map-container {
    height: 300px;
  }

  .map-container iframe {
    height: 300px;
  }
}

/*contact form section*/
.contact-section {
}

.contact-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

.contact-form-container {
  flex: 1;
  min-width: 320px;
}

.contact-label {
  color: #3b7aa9;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.contact-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-title span {
  color: #3b7aa9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-row {
  display: flex;
  gap: 1rem;
}

.input-row input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-row input:focus {
  border-color: #3b7aa9;
}

textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s ease;
}

textarea:focus {
  border-color: #3b7aa9;
}

.submit-btn {
  align-self: flex-start;
  background-color: #3b7aa9;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2a5c7b;
}

.arrow {
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive */

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row input {
    width: 100%;
  }

  .contact-image img {
    max-width: 100%;
  }
}

.nav-tabs {
  gap: 10px;
}

.nav-tabs .nav-link {
  color: #6c1c71;
  border: 1px solid #6c1c71 !important;
  border-radius: 5px !important;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
    background: #6c1c71;
    color: #ffffff;
    border: 1px solid #6c1c71 !important;
}

.faqs-section .accordion {
    background: transparent !important;
}

.faqs-section .accordion .accordion-item {
    background: #8b1070 !important;
    border: 0 !important;
    margin-bottom: 10px;
    border-radius: 15px !important;
    color: #fff;
    overflow: hidden;
}

.faqs-section .accordion .accordion-item button.accordion-button {
    background: #6c1c71;
    color: #fff;
    font-weight: 500;
}

/* Default state (collapsed) */
.faqs-section .accordion .accordion-item .accordion-button::after {
    filter: invert(1); /* No inversion, default color */
  }

  /* Inverted color when expanded */
.faqs-section .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    filter: invert(1); /* Inverts the color of the arrow */
  }

  /* Optional: Change the background color of the accordion button */
.faqs-section .accordion .accordion-item .accordion-button {
    background-color: #4b0b5d;
    color: white; /* Text color */
  }


  .map-wrapper {
    width: 100%;
    height: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(255 255 255);
}

/*sticky right*/

.sticky-icons {
    position: fixed;
    top: 25%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.icon-s {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 6px;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #000;
    overflow: hidden;
    width: 200px; /* default: only icon visible */
    transition: all 0.3s ease;
    gap: 10px;
    transform: translateX(78%)
}

.icon-s img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.icon-s span {
    opacity: 1;
    transition: opacity 0.3s ease;
    font-size: .8rem;
}

.icon-s:hover {
    transform: translateX(0%)
}

.icon-s:hover span {
    opacity: 1;
}

/* Optional brand background colors */
.icon-s.google { background: #fff; }
.icon-s.practo { background: #2b2d42; color: #fff; }
.icon-s.whatsapp { background: #25d366; color: #fff; }


.gallery-item {
    display: block; /* hidden until Load More or filter */
}
.gallery-title {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
}