
@media (min-width: 992px) {
  .slider, .slide {
    height: 80vh;
  }
}
.slide {
  position: relative;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  font-family: 'Playball', cursive;
  font-size: 2.5rem;
}
.slide .slide__content--headings .title {
  font-size: 3.5rem;
}
.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
}
.slider [data-animation-in] {
  opacity: 0;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}
/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
.zoomInImage {
  animation-name: zoomInImage;
}
@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.zoomOutImage {
  animation-name: zoomOutImage;
}
.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: '';
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: '';
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  animation: arrowDown 1.6s ease forwards;
}
@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.banner__slider .slide {
  position: relative;
}

.banner__slider .slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 181, 68, 0.2); /* green overlay */
  z-index: 1;
}

.banner__slider .slide__content {
  position: relative;
  z-index: 2; /* ensure content appears above overlay */
}
header{box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;}
.slide__content  button{margin-top: 20px;}


/* pricing plan  */

 .pricing-section {
      padding: 60px 0;
    }

    .pricing-section h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .pricing-card {
      border: 1px solid #e0e0e0;
      border-radius: 16px;
      background: #fff;
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .pricing-card .card-header {
      background-color: #fff;
      border-bottom: none;
      padding: 20px 0;
      text-align: center;
    }

    .pricing-card .btn {
      border-radius: 25px;
      font-weight: 600;
      padding: 8px 24px;
    }

    .pricing-card ul {
      list-style: none;
      padding-left: 0;
    }

    .pricing-card ul li {
      font-size: 15px;
      padding: 8px 0;
    }

    .pricing-card ul li i {
      color: #0ac07d;
      margin-right: 10px;
    }

    .recommended {
      border: 2px solid #fd7e14;
      position: relative;
    }

    .recommended::before {
      content: "★ Recommended";
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: #fd7e14;
      color: white;
      font-weight: 600;
      font-size: 13px;
      padding: 4px 12px;
      border-radius: 50px;
    }

    .coaches {
      background: #f4f4f4;
      padding: 10px;
      border-radius: 10px;
      font-weight: 600;
      text-align: center;
      margin-top: 15px;
    }


    /* BMI */

     .bmi-section {
      padding: 60px 0;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: #2c2c2c;
      margin-bottom: 30px;
    }

    .quiz-tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .quiz-tabs .tab-btn {
      padding: 12px 30px;
      border: none;
      border-radius: 30px;
      margin: 0 5px;
      font-weight: 600;
     background: #8ef4d2;
    color: #000000;
      transition: 0.3s;
    }

    .quiz-tabs .tab-btn.active {
      background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
      color: white;
    }

    .quiz-desc {
      color: #666;
      font-size: 15px;
      margin-bottom: 30px;
    }

    .card-group-gender {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .gender-card {
      background: #fff;
      border: 2px solid #eee;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      width: 120px;
      cursor: pointer;
      transition: 0.3s;
    }

    .gender-card.active {
      border-color: #ff8533;
      background: #fff5ed;
    }

    .gender-card i {
      font-size: 28px;
      color: #ff8533;
      margin-bottom: 10px;
    }

    .gender-card span {
      font-weight: 600;
      display: block;
    }

    .bmi-form .form-group {
      margin-bottom: 25px;
    }

    .unit-toggle .btn {
      border-radius: 20px;
      padding: 6px 20px;
      margin-right: 10px;
      font-weight: 500;
    }

    .unit-toggle .btn.active {
      background-color: #32d6a0;
      color: white;
      border: none;
    }

    .bmi-box {
      background: #fff;
      border-radius: 20px;
      padding: 40px;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    }

    .mainnav{display: flex; gap:10px;}
    .mainnav li{padding: 12px; display: flex; gap: 4px;}
    .mainnav li a{font-weight: 700; color: #1E7682;}
   

      .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  .bg-gradient-success {
    background: linear-gradient(135deg, #00c9a7 0%, #92fe9d 100%);
  }

  .grid-cols-2{
     grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-card .card-header h5{font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;}

 .whycarousel .slick-slide {
  margin: 0 15px; /* 15px gap on left and right = 30px total between slides */
}

.whycarousel .slick-track {
  display: flex !important;
  margin: 0 -15px; /* compensates for slide margins */
}

.whycarousel .slide {
  padding: 0 15px;
  box-sizing: border-box;
}

.whycarousel .slick-track {
  display: flex !important;
}

.whycarousel .slick-slide {
  display: flex;
  height: auto !important;
}

.slide-inner {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.slide-inner .icon {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 15px;
}

.slick-prev,
.slick-next {
  background:rgb(22 163 74 / var(--tw-bg-opacity, 1));
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

 

.bg-1{background-image: linear-gradient(to top, #f77062 0%, #fe5196 100%);}
.bg-2{background-image: linear-gradient(60deg, #3d3393 0%, #2b76b9 37%, #2cacd1 65%, #35eb93 100%);}
.bg-3{background-image: linear-gradient(-225deg, #AC32E4 0%, #7918F2 48%, #4801FF 100%);}
.bg-4{background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);}
.whycarousel .text-gray-900{color: #fff;}
.whycarousel .items-start .text-gray-700{color: #fff;}
.payment{width: 140px; margin: 0 auto;}
.paymentcon{display: flex
;
    align-items: center;
    justify-content: center;
    margin-top: 15px;}

    .video-con{width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    
  }

   .embed-responsive-item{
   object-fit: cover;
    height: 464px !important;
   }

    .shadow-sm{background: #ffffff;
background: linear-gradient(348deg,rgba(255, 255, 255, 1) 0%, rgba(230, 234, 242, 1) 100%);}
.mainnavbtn{background: #1E7682;
    font-size: 17px !important;
    padding: 16px 23px;
    line-height: 22px;
    color:#fff !important;
}
.mainnavbtn:hover{color: #ffffff !important; background-color: #1c8b99 !important;}

 /* .mainnav li:hover{background-color: #001215; color: #fff !important;
       
    
    border-radius: 0px;
    font-weight: 700;} */
    a{text-align: none;}
    a:hover{text-decoration: none !important; color:unset !important;}
    .ml-58{
      margin-left: 58px !important;
    }

    .ml-20{margin-left: 20px !important;}

    .partner-slider {
  overflow: hidden;
  position: relative;
}
.slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200px * 50); /* logo width * number of logos (including duplicates) */
}
.slide {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide img {
  max-height: 80px;
  max-width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
 





.logos__marquee {
	display: flex;
	overflow-x: hidden;
	user-select: none;
	mask-image: linear-gradient(
		to right,
		hsl(0 0% 0% / 0),
		hsl(0 0% 0% / 1) 20%,
		hsl(0 0% 0% / 1) 80%,
		hsl(0 0% 0% / 0)
	);
}

.marquee__logos {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 1rem;
	min-width: 100%;
	animation: loop 100s linear infinite;
}
.marquee__logos img {
	display: block;
	margin-inline: 2rem;
  width: 160px;
}

@keyframes loop {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}


 .free-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.9rem;
  padding: 8px 12px;
  background: #28a745; /* Bootstrap success color */
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.text-gradient {
 color: #e9692e; 
 background-image: linear-gradient(45deg, #e9692e 50%, #8f1d14 100%); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 
}

.free-badges {
   position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  padding: 10px 15px;
  background: linear-gradient(to right, #f12711, #f5af19);
  color: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-weight: bold;
}

/* Shake animation */
/* Smooth pulse glow */
.mainlogo{width: 225px;}
.mainnav{margin-bottom: 0px;}
.mainnav li a{font-size: 17px;}
.freesection{
    color: white;
    padding-top: 120px;
    padding-bottom: 120px;}
    .slick-dots li button{font-size: 15px !important;  color: #e9692e; 
 background-image: linear-gradient(45deg, #e9692e 50%, #8f1d14 100%); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; padding: 10px; font-weight: 600;}
    .slick-dots{margin-bottom: -55px;}
    .ladyimg{height: 480px; margin: 0 auto;}
    @media only screen and (max-width:480px){
      .ladyimg{height:auto; margin: 0 auto;}
    }
.badgecls{width: 122px;
    position: absolute;
    /* display: none; */
    right: -40px;
    transform: rotate(30deg);
    top: 100px;
}


    /* Force all slick slides to the same height */
.slick-slide {
  display: flex !important;
  align-items: stretch !important;
  height: 100% !important;
}

.slick-slide > div {
  flex: 1;
  display: flex;
  height: 100%;
}

.slick-list {
  height: 100% !important;
}
.choosebtn{
 font-size: 22px !important;
    padding: 16px 23px;
    line-height: 22px;
    color: #fff !important;
    margin: 0 auto;
    display: block;
    margin-top: 37px;
}

 .mt-117{margin-top: 136px;}
 .mt-92{margin-top: 92px;}
 .mt-69{margin-top: 68px;}

  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #f9fafb;
            line-height: 1.6;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 64px 16px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-title-1 {
            font-size: 3rem;
            font-weight: bold;
            color: #0d9488;
            margin-bottom: 16px;
        }

        .section-title-2 {
            font-size: 3rem;
            font-weight: bold;
            color: #1e293b;
        }

        .doctors-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 64px;
        }

        .doctor-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            max-width: 270px;
            width: 100%;
        }

        .doctor-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .doctor-image-container {
            position: relative;
            margin-bottom: 24px;
        }

        .doctor-image-wrapper {
            width: 128px;
            height: 128px;
            margin: 0 auto;
            border-radius: 50%;
            overflow: hidden;
            background: linear-gradient(135deg, #5eead4, #0d9488);
            padding: 4px;
        }

        .doctor-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .doctor-name-badge {
            background-color: #0d9488;
            color: white;
            padding: 12px 24px;
            border-radius: 9999px;
            margin-bottom: 16px;
            display: inline-block;
        }

        .doctor-name {
            font-weight: bold;
            font-size: 0.875rem;
        }

        .doctor-qualification {
            font-size: 1.125rem;
            font-weight: 600;
            color: #334155;
            margin-bottom: 8px;
        }

        .doctor-specialization {
            font-size: 1.25rem;
            font-weight: bold;
            color: #0d9488;
            margin-bottom: 12px;
        }

        .doctor-experience {
            color: #14b8a6;
            font-weight: 500;
            font-style: italic;
        }

        .cta-section {
            text-align: center;
        }

        .cta-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            max-width: 512px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1e293b;
            margin-bottom: 16px;
        }

        .cta-description {
            color: #64748b;
            margin-bottom: 24px;
        }

        .cta-button {
            background-color: #0d9488;
            color: white;
            padding: 12px 32px;
            border-radius: 9999px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-size: 1rem;
        }

        .cta-button:hover {
            background-color: #0f766e;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .container {
                padding: 64px 24px;
            }

            .doctors-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 48px;
            }

            .section-title-1,
            .section-title-2 {
                font-size: 3.75rem;
            }

            .doctor-name {
                font-size: 1rem;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 64px 32px;
            }

            .doctors-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .section-title-1,
            .section-title-2 {
                font-size: 4.5rem;
            }
        }
      .progress-circle {
            transition: stroke-dashoffset 2s ease-out;
        }
        
        .metric-card {
            transition: all 0.3s ease;
        }
        
        .metric-card:hover {
            transform: scale(1.05);
        }
        
       .floating-btn {
    position: fixed;
    top: 50%;
    right: -53px;
    transform: translateY(-50%);
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    /* border-radius: 30px; */
    border: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    transform: rotate(90deg);
    }

    .floating-btn:hover {
      background-color: #0056b3;
    }

    .docgrid{
      display: flex; align-items: center; justify-content: center;
    }

    @media only screen and (max-width:500px){
      .docgrid{flex-direction: column;}
      .hidden{display: none !important;}
      .badgecls{display: none;}
      .slick-prev{display: none !important;}
      .slick-next{display: none !important;}
    }

    .header-txt1{
      color: #059669;
    }
     .header-txt2{
      color:  #2563eb;
    }


    /* .vid{width: 420px;
    height: 70vh;
    margin: 0 auto;
    } */

    .newgrbg{background: hsla(14, 90%, 73%, 1);

background: linear-gradient(90deg, hsla(14, 90%, 73%, 1) 0%, hsla(331, 54%, 44%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(14, 90%, 73%, 1) 0%, hsla(331, 54%, 44%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(14, 90%, 73%, 1) 0%, hsla(331, 54%, 44%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#f8997d", endColorstr="#ad336d", GradientType=1 );}


.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.planbtn{position: absolute;
    width: 230px;
    }



     .pricing-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .plan {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      flex: 1 1 250px;
      max-width: 300px;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }
    
    .plan p.price {
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      color: #673ab7;
      margin-bottom: 20px;
    }
    
    .extra-features {
      display: none;
    }
    .show-toggle {
      background: none;
      border: none;
      color: #673ab7;
      cursor: pointer;
      font-size: 14px;
      margin-bottom: 20px;
      z-index: 999;
    }
    .btn {
      background: #673ab7;
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 6px;
      text-align: center;
      cursor: pointer;
      font-weight: bold;
      margin-top: auto; /* pushes button to bottom */
    }
    /* .btn:hover {
      background: #542b9b;
    } */
     .smbtn{width:180px;}
     .tesimonialshadow{box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;}

     /* scope to your slider wrapper */
.testimonialslider .slick-slide {
  margin: 0 16px !important;   /* gap = 32px between slides */
  height: auto;                 /* keeps card heights natural */
}
.testimonialslider .slick-list {
  margin: 0 -16px !important;   /* fixes extra space at the edges */
  overflow: hidden;            /* lets box-shadows show outside */
}
.testimonialslider .slick-slide > div { height: 100%; }
