/* HERO WRAPPER */
.header-icon-voucher-whatsapp{
  font-size: 18px;
  margin-right: 10px;
}
.header-icon-voucher-whatsapp i{
  color: #3991d0;
}
.whatsapp-icon-color i{
  color: #41be50;
}
.pp-hero-wrap {
    /*background: #e9e2d8;*/
    background: url();
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Unique Classes */
.tchv-hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.tchv-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.tchv-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(400deg, rgba(0,0,0,0.8) -20%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.tchv-content-wrapper {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.tchv-main-title {
    font-size: 60px;
    font-weight: 700;
}

.tchv-sub-title {
    font-size: 20px;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .tchv-main-title {
        font-size: 36px;
    }
    .tchv-sub-title {
        font-size: 16px;
    }
}

.z-ind-cust{
  display: block;
  z-index: 9;
}

/* TITLE */
.pp-hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -1px;
}


/* IMAGE */
.pp-hero-img {
  max-width: 100%;
  border-radius: 12px;
}

/* CARD BASE */
.pp-hover-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  height: 260px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* FRONT TEXT */
.pp-card-front h5 {
  font-size: 20px;
  color: #1c1c1c;
}

/* HIDDEN CONTENT */
.pp-card-back {
  position: absolute;
  inset: 0;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* ACTIVE / HOVER STATE */
.pp-hover-card:hover,
.pp-hover-card.active {
  background: #f8f6f2;
}

/* SHOW CONTENT */
.pp-hover-card:hover .pp-card-back,
.pp-hover-card.active .pp-card-back {
  opacity: 1;
  transform: translateY(0);
}

/* FADE FRONT */
.pp-hover-card:hover .pp-card-front,
.pp-hover-card.active .pp-card-front {
  opacity: 0;
}

/* TEXT */
.pp-card-back p {
  font-size: 14px;
  color: #444;
  margin-bottom: 30px;
}

/* LINK */
.pp-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border-top: 1px solid #000;
  padding-top: 10px;
}

.pp-card-link span {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.pp-card-link:hover span {
  transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pp-hero-title {
    font-size: 42px;
  }
}


/* SECTION */
.yucca-marquee-wrap {
    background: #e9e4d0;
    padding: 50px 0 130px;
    overflow: hidden;
    position: relative;
}

/* MARQUEE BASE */
.yucca-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* TEXT TRACK */
.yucca-marquee-track {
  display: inline-flex;
  gap: 60px;
  font-size: 48px;
  font-weight: 400;
  color: #111;
  text-transform: capitalize;
}

/* RIGHT MOVE */
.yucca-marquee-right .yucca-marquee-track {
  animation: yuccaMoveRight 28s linear infinite;
}

/* LEFT MOVE */
.yucca-marquee-left .yucca-marquee-track {
  animation: yuccaMoveLeft 28s linear infinite;
}

/* CENTER IMAGE */
.yucca-center-image {
  /*position: absolute;*/
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.yucca-center-image img {
  max-width: 420px;
  width: 100%;
}

/* ANIMATIONS */
@keyframes yuccaMoveRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

@keyframes yuccaMoveLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .yucca-marquee-track {
    font-size: 28px;
    gap: 30px;
  }

  .yucca-center-image img {
    max-width: 260px;
  }
}

/* ===== Section Base ===== */
.yucca-hover-section {
    min-height: 100vh;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Default Background ===== */
.yucca-bg-food-service {
    background-image: url("../images/3d-render-1-min.jpg");
    background: #3991d0;
    background-attachment: fixed;
}

/* ===== Card Styling ===== */
.yucca-card {
  /*height: 320px;*/
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Dim non-hover cards */
.yucca-hover-section:hover .yucca-card {
  /*opacity: 0.4;*/
}

/* Active Card */
.yucca-card:hover {
  background: #fff;
  color: #000;
  opacity: 1 !important;
}

/* Typography */
.yucca-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.yucca-card p {
  font-size: 15px;
  line-height: 1.6;
}

.yucca-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 500;
}
.yucca-link a{
  text-decoration: none;
  color: #fff;
}
.yucca-card:hover .yucca-link a{
    color: #000;
}

/* ===== Background Change On Hover ===== */
/*.yucca-card-food:hover ~ .yucca-hover-section,
.yucca-hover-section:has(.yucca-card-food:hover) {
  background-image: url("../images/about_2-min.jpg");
}

.yucca-hover-section:has(.yucca-card-processing:hover) {
  background-image: url("../images/img-11-min.jpg");
}

.yucca-hover-section:has(.yucca-card-agriculture:hover) {
  background-image: url("../images/side-view.jpg");
}*/


/* Main Section */
.yk-excellence-section {
  background-color: #fbf9f4;
  font-family: 'Arial', sans-serif;
}

/* Headings */
.yk-main-heading {
  font-size: 48px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
}

/* Top Right Text */
.yk-top-text {
  font-size: 15px;
  color: #333;
  max-width: 420px;
  margin-bottom: 20px;
}

/* Button */
.yk-about-btn {
  background-color: #111;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 4px;
}

.yk-about-btn:hover {
  background-color: #000;
  color: #fff;
}

/* Divider Line */
.yk-divider {
  border-top: 1px solid #bdbdbd;
  margin: 50px 0;
}

/* Content Rows */
.yk-content-row {
  align-items: center;
}

/* Section Titles */
.yk-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Dot */
.yk-dot {
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
}

/* Description */
.yk-desc {
  font-size: 15px;
  color: #333;
  max-width: 600px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .yk-main-heading {
    font-size: 34px;
  }

  .yk-top-row {
    gap: 20px;
  }
}

/* Section Background */
.apx-product-section {
  background-color: #f6f4ee;
  font-family: 'Arial', sans-serif;
}

/* Title */
.apx-section-title {
  font-size: 32px;
  font-weight: 500;
  color: #111;
}

/* Shop Button */
.apx-shop-btn {
  border: 1px solid #111;
  padding: 6px 16px;
  font-size: 14px;
  background: transparent;
  color: #111;
}

.apx-shop-btn:hover {
  background: #111;
  color: #fff;
}

/* Product Card */
.apx-product-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  transition: 0.3s ease;
  height: 100%;
}

.apx-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Image Box */
.apx-img-box {
    background: #f2efe8;
    border-radius: 8px;
    /* padding: 30px; */
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Product Info */
.apx-product-info h6 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
}

.apx-price {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.apx-price span {
  font-size: 12px;
  color: #777;
  font-weight: 400;
}

/* Vertical NEW Badge */
.apx-badge-new {
    position: absolute;
    top: 10px;
    right: 0;
    background: #3991d0;
    color: #fff;
    font-size: 11px;
    padding: 6px 4px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 4px 0 0 4px;
}

/* Main Section */
.cxg-custom-section {
    background: linear-gradient(90deg, #1a5782, #3991d0);
    padding: 100px 0 0 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

/* Subtitle */
.cxg-subtitle {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Main Heading */
.cxg-main-heading {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 700px;
}

/* Product Image */
.cxg-product-img {
  max-width: 100%;
  opacity: 0.9;
}

/* ===== Marquee Section ===== */

.cxg-marquee-wrapper {
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin-top: 10px;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}

.cxg-marquee-track {
  display: inline-block;
  animation: cxg-scroll-left 15s linear infinite;
}

.cxg-marquee-text {
  font-size: 28px;
  margin-right: 80px;
  opacity: 0.9;
}

/* Infinite Scroll Animation */
@keyframes cxg-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cxg-main-heading {
    font-size: 32px;
  }

  .cxg-product-img {
    margin-top: 40px;
  }

  .cxg-marquee-text {
    font-size: 20px;
  }
}

.fbs__net-navbar {
    background-color: #ffffff !important;
}

/* Section */
.nxv-hover-section {
  background: #cfc6b8;
  font-family: Arial, sans-serif;
}

/* Card */
.nxv-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 20px 20px;
    background: hsl(0deg 0% 100% / 0%);
    backdrop-filter: blur(2rem);
    height: 320px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #ffffff1f;
}

/* Title */
.nxv-title {
    font-size: 28px;
    font-weight: 500;
    transition: all 0.4s ease;
    margin-top: 110px;
    align-items: center;
    width: 100%;
    text-align: center;
    color: #ffffffc7;
}

/* Hidden Content */
.nxv-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  margin-top: 20px;
}

.nxv-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Link */
.nxv-link {
  border-top: 1px solid #333;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

/* Hover Effect */
.nxv-card:hover {
  background: #f4f1ea;
  /*height: 420px;*/
}

.nxv-card:hover .nxv-title {
  display: none;
}

.nxv-card:hover .nxv-content {
  opacity: 1;
  transform: translateY(0);
}

/* Blur Other Cards */
.nxv-hover-section .row:hover .nxv-card {
  opacity: 0.4;
  transform: scale(0.98);
}

.nxv-hover-section .row .nxv-card:hover {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
  .nxv-card {
    height: auto;
  }

  .nxv-card:hover {
    height: auto;
  }

  .nxv-content {
    opacity: 1;
    transform: none;
  }
}

video.vid-main-cust {
    /* max-height: 440px; */
    border-radius: 50px;
    background-position: center;
    border: solid #000;
    width: 160%;
}



.ux-slider-window {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* background: #ffffff; */
    max-width: 900px;
    margin: auto;
}

.ux-slider-track {
    display: flex;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ux-logo-item {
    min-width: 14.285%;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    transition: all 0.6s ease;
    filter: grayscale(100%);
    opacity: 0.3;
}

/* THE 4th ITEM HIGHLIGHT (Center of 7) */
.ux-logo-item.is-active {
    color: #386fb0;
    transform: scale(1.6); /* Larger scale for 7-item layout */
    filter: grayscale(0%);
    opacity: 1;
}

/*.pp-hero-wrap {
    background: url(../images/beautiful-bicolor-plant-details.png);
    background-position-x: 714px;
    object-fit: contain;
    background-size: 1220px;
    background-repeat: no-repeat;
    background-color: #e9e2d8;
    background-position-y: 0px;
}*/

.stats__v3 .content h3 {
    color: #ffffff;
}

.about__v4 .mission-statement h3 {
    font-size: 15px;
    color: #ffffff;
}

.about__v4 .mission-icon i {
    color: #ffffff;
}

footer.footer {
    background: #e7e7e7;
}

.section {
    background: #e9e2d878;
}

.offcanvas.offcanvas-start {
    height: 100vh;
}

/* Unique Custom Classes Only */
.tch-hero-wrapper {
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
}

.tch-main-heading {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.tch-sub-heading {
    font-size: 20px;
    color: #e2d9e6;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .tch-main-heading {
        font-size: 40px;
    }
    .tch-sub-heading {
        font-size: 16px;
    }
}

.section-services {
  font-family: "Poppins", sans-serif;
  background-color: #e6edf7;
  color: #202020;
  padding-top: 115px;
    padding-bottom: 120px;
}

.section-services .header-section {
  margin-bottom: 34px;
}

.section-services .header-section .title {
  position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
  font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #ff4500;
    border-radius: 3px;
}

.section-services .header-section .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
    transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: #504f93;
    border-radius: 3px;
}

.section-services .header-section .description {
  font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    /* padding: 40px 30px; */
    overflow: hidden;
    height: 400px;
    display: flex;
    justify-content: start;
    align-items: end;
    width: 100%;
    /* transition: 20s ease; */
}

.section-services .single-service .content {
  position: relative;
  z-index: 20;
}

.section-services .single-service .circle-before {
    position: absolute;
    top: 0;
    right: 0px;
    transform: translate(40%, -40%);
    width: 150px;
    height: 150px;
    background-color: #ff4500;
    border: 6px solid #504f93;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 10;
    transition: all .3s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color: #ff4500;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

.section-services .single-service:hover .icon {
  background-color: #fff;
  color: #ff4500;
}

.section-services .single-service:hover .content {
    height: 100%;
    width: 100%;
}

.section-services .single-service .title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 26px;
    transition: color .3s;
    color: #fff;
}

.section-services .single-service:hover .title {
  color: #fff;
}

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

.section-services .single-service:hover .description {
  color: #fff;
}

.section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
    width: 100%;
    display: block;
    border: none;
}

.section-services .single-service:hover a {
  color: #fff;
}

/*.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ff4500;
  transition: background-color .3s;
}
*/
.section-services .single-service:hover a:after {
  background-color: #fff;
}

.content {
    /* display: none; */
    transition: .7s !important;
    margin-bottom: -330px;
    padding: 20px;
    background: #3991d0;
    width: 100%;
    border-radius: 0px 100px 0px 0px;
}

.section-services .single-service:hover .content {
    /* display: block; */
    margin-bottom: 0;
    transition: 1.7s;
    border-radius: 0;
}

.ul-list-cust li {
    font-size: 18px;
    color: #fff;
    background: #fbfbfb17;
    margin-bottom: 5px;
    padding: 6px 5px;
}

ul.ul-list-cust {
    height: 290px;
    overflow-y: scroll;
}

.ul-list-cust::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    background-color: #3991d0;
}

.ul-list-cust::-webkit-scrollbar
{
  width: 5px;
  background-color: #F5F5F5;
}

.ul-list-cust::-webkit-scrollbar-thumb {
    background-color: #1c73b1;
    /* border: 2px solid #0000; */
}

.ul-list-cust li a{
  color: #ffffff !important;
}

/* =========================
   UNIQUE FAQ WRAPPER
========================= */

.arunfaq-wrapper {
    background: linear-gradient(180deg, #3991d0, #9a9a9a);
    padding: 90px 0 140px;
    color: #fff;
    position: relative;
}

.arunfaq-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 50px;
}

.arunfaq-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
}

.arunfaq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.arunfaq-icon {
    font-size: 24px;
    transition: transform 0.4s ease;
}

/* ANSWER ANIMATION */
.arunfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.arunfaq-item.active .arunfaq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
}

.arunfaq-item.active .arunfaq-icon {
    transform: rotate(45deg);
}

/* =========================
   CTA BOX
========================= */

.arunfaq-cta-wrap {
    margin-top: -70px;
}

.arunfaq-cta-box {
    background: #f3f4f7;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: #333;
}

.arunfaq-input {
    border-radius: 50px;
    padding: 12px 20px;
    border: none;
}

.arunfaq-btn {
    border-radius: 50px;
    padding: 12px 28px;
    border: none;
    background: #3991d0;
    color: #fff;
    transition: 0.3s ease;
    position: absolute;
    right: 20px;
    top: 10%;
    bottom: 10%;
    height: 50px;
}

.arunfaq-btn:hover {
    transform: translateY(-2px);
}

/* ===== UNIQUE CUSTOM CLASSES ===== */

.arun-insights-section-wrap {
    background-color: #f3f3f3;
    padding: 150px 0px 100px;
    margin-top: -68px;
}

.arun-insights-top-badge {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #cfd96d;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
}

.arun-insights-heading-main {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 50px;
}

.arun-view-posts-btn {
    border: 1px solid #ddd;
    padding: 12px 22px;
    border-radius: 50px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
}

.arun-view-posts-btn span {
    width: 34px;
    height: 34px;
    background: #cddc39;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.arun-blog-card-box {
    margin-top: 30px;
}

.arun-blog-card-img {
    border-radius: 24px;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.arun-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.arun-category-pill {
    background: #e1e1e1;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.arun-divider-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.arun-date-text {
    font-size: 13px;
    color: #777;
}

.arun-blog-title-text {
    font-size: 22px;
    font-weight: 600;
    margin-top: 18px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
    .arun-insights-heading-main {
        font-size: 42px;
    }
}

/* Image Hover Slide Effect */

.arun-img-hover-wrap {
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    cursor: pointer;
}

.arun-img-hover-wrap .arun-blog-card-img {
    width: 110%;                /* little bigger for smooth slide */
    transition: transform .6s ease;  /* slow smooth effect */
}

.arun-img-hover-wrap:hover .arun-blog-card-img {
    transform: translateX(-8%);
}

.button-subs-cust{
  position: relative;
}







.signup-form-section{
  z-index: 111;
  margin-top: -90px;
  position: relative;
}


.insta-carousel-section{
  padding: 70px 0 0;
}
.insta-carousel-section .insta-title-main{
  margin-bottom: 40px;
}
.insta-carousel-section .insta-title-main img{
  width: 65px;
  margin-bottom: 10px;
}
.insta-carousel-section .insta-title-main h2{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}
.insta-carousel-section .insta-title-main a{
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.insta-carousel-section img {
  height: 100%;
  object-fit: cover;
}
.insta-carousel-section .owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.insta-carousel-section .owl-nav button.owl-prev {
  left: 0;
}
.insta-carousel-section .owl-nav button.owl-next {
  right: 0;
}

.insta-carousel-section .owl-dots {
  text-align: center;
  padding-top: 15px;
}
.insta-carousel-section .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #ccc;
  margin: 0 3px;
}
.insta-carousel-section .owl-dots button.owl-dot.active {
  background-color: #000;
}
.insta-carousel-section .owl-dots button.owl-dot:focus {
  outline: none;
}
.insta-carousel-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.38) !important;
}
.insta-carousel-section span {
    font-size: 70px;    
    position: relative;
    top: -5px;
}
.insta-carousel-section .owl-nav button:focus {
    outline: none;
}
.insta-carousel-section .owl-item {
  height: 300px !important; /* Adjust this value as needed */
  display: flex;
}
.insta-carousel-section .item {
    width: 100%;
}







@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100px * 7));
  }
}
.brand-logo-section {
    padding: 70px 0;
}
.brand-logo-section .slider {
  background: white;
/*  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);*/
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
/*  width: 960px;*/
  width: 50%;
}
/*.brand-logo-section .slider::before, .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}*/
.brand-logo-section .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.brand-logo-section .slider::before {
  left: 0;
  top: 0;
}
.brand-logo-section .slider .slide-track {
  -webkit-animation: scroll 10s linear infinite;
          animation: scroll 10s linear infinite;
  display: flex;
  width: calc(100px * 14);
}
.brand-logo-section .slider .slide {
  height: 100px;
  width: 250px;
}





.our-team-home-section{
  align-items: center;
  padding-top: 70px;
}
.our-team-home-section .team-text-div{
  box-shadow: 2px 2px 44px -2px rgba(0, 0, 0, 0.11);
  border-radius: 30px;
  padding: 30px 40px;
  height: 100%;
}
.our-team-home-section .team-text-div h2{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}
.our-team-home-section .team-text-div p{
  margin-bottom: 25px;
}
.our-team-home-section .team-text-div a{
  border-radius: 50px;
  padding: 12px 28px;
  border: none;
  background: #3991d0;
  color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.our-team-home-section .team-image-div{
  height: 100%;
  overflow: hidden;
  background-image: url(../../assets/images/Team-ActiveClinics-e1733387590963.webp);
  border-radius: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}




/****************** About Us Page Css ********************/
.text-right{
  text-align: right !important;
}
.text-align-justify{
  text-align: justify !important;
}
.btn-theme{
    border-radius: 50px;
    padding: 12px 28px;
    border: none;
    background: #3991d0;
    color: #fff;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-theme-2{
    border-radius: 50px;
    padding: 12px 28px;
    border: none;
    background: #000000;
    color: #fff;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.section-custom-primery{
  padding: 70px 0;
}
.page-secondry-title{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.page-paragraph{
  
}
.about-our-directors-section{
  background-color: #0b6efd;
}
.about-our-directors-section .directors-image-about{
  background-image: url(../../assets/images/Directors-ActiveClinics.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
}
.about-our-team-section{
  background-color: #f3f3f3;
}
.about-our-team-section .team-image-about{
  background-image: url(../../assets/images/Bellejoie_ActiveClinic_4-2048x1365.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
}

.multi-award-winning-image{
  background-image: url(../../assets/images/Awards-ActiveClinics.webp);
  background-size: cover;
  background-repeat: no-repeat;
  height: 920px;
  background-position: center;
  border-radius: 30px;
}
.multi-award-winning-text h3{
  color: #3991d0;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 30px;
}
.multi-award-winning-text .multi-award-margin{
  margin-bottom: 38px;
}


.about-last-section{
  background-image: url(../../assets/images/234.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 70px;
}
.about-last-section .about-last-section-black-bg{
  background-color: rgb(0 0 0 / 72%);
  padding: 100px 0;
}






.progress-bar {
  margin: 0 0 10px;
  overflow: hidden;
  padding-right: 24px; /* Separate bars from container */
}

.progress-title-holder {
  padding-bottom: 7px;
  position: relative;
  margin: 5px 0;
  font-size: 18px;
  line-height: 15px;
  font-weight: 600;
  color: #3991d0;  
  text-align: left;
}

.progress-title {
  z-index: 100;
}

.progress-number-wrapper {
  width: 100%;
  z-index: 10;
}

.progress-number-mark {
  margin-bottom: 4px;
  border-radius: 3px;
  background-color: rgb(22,23,29);
  padding: 0 8px;
  position: absolute;
  bottom: 0;   
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%); 
} 

.progress-number-wrapper,
.progress-number-mark {
  font-family: Open Sans, sans-serif;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: #ffffff;
}

.down-arrow {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #16171d;
  position: absolute;
  left: 50%;
  top: 100%;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);  
}

.progress-content-outter {
  height: 12px;
  background-color: #e9e1d8;
}

.progress-content {
  height: 21px;
  background-color: rgb(57 145 208);
  width: 0%;
}








.why-choose-active-clinic-main {
  background-image: url(../../assets/images/24.webp);
  background-position-x: -220px;
  background-size: 1300px;
  background-repeat: no-repeat;
  background-color: #87CEEB;
  min-height: 95vh;
  display: flex;
/*  align-items: center;*/
  justify-content: center;
  padding-top: 30px;
}

.pigmentation-bg-custome{
  background-image: url(../../assets/images/pigmentation_1200x900.webp);
  min-height: 75vh;
}
.acne-breakouts-bg-custome{
  background-image: url(../../assets/images/acne_breakouts_1200x900.webp);
  min-height: 75vh;
}
.acne-scarring-bg-custome{
  background-image: url(../../assets/images/acne_scarring_1200x900.webp);
  min-height: 75vh;
}
.skins-tags-milia-bg-custome{
  background-image: url(../../assets/images/person-dealing-with-rosacea_23-2150478725.webp);
  min-height: 100vh;
}
.red-skin-rosacea-and-thread-veins-bg-custome{
  background-image: url(../../assets/images/red_skin_rosacea_and_thread_veins_1200x900.webp);
  min-height: 75vh;
}
.tired-or-hollow-eyes-bg-custome{
  background-image: url(../../assets/images/tired_or_hollow_eyes_or_dark_circles_1200x900.webp);
  min-height: 75vh;
}
.aged-skin-wrinkles-bg-custome{
  background-image: url(../../assets/images/aged_skin-wrinkles_1200x900.webp);
  min-height: 75vh;
}
.tsw-syndrome-bg-custome{
  background-image: url(../../assets/images/tsw_1200x900.webp);
  min-height: 75vh;
}
.sun-damage-sun-spots-bg-custome{
  background-image: url(../../assets/images/sun-damage-sun_spots1200x900.webp);
  min-height: 75vh;
}
.melasma-bg-custome{
  background-image: url(../../assets/images/melasma_1200x900.webp);
  min-height: 75vh;
}
.hyper-pigmentation-bg-custome{
  background-image: url(../../assets/images/hyper_pigmentation_1200x900.webp);
  min-height: 75vh;
}
.enlarged-pores-and-blackheads-bg-custome{
  background-image: url(../../assets/images/enlarged_pores_and_blackheads_1200x900.webp);
  min-height: 75vh;
}
.brain-fog-tiredness-fatigue-and-insomnia-bg-custome{
  background-image: url(../../assets/images/brainfog_tiredness_1200x900.webp);
  min-height: 75vh;
}
.alzheimers-and-demetia-bg-custome{
  background-image: url(../../assets/images/alzheimer_and_dementia_1200x900.webp);
  min-height: 75vh;
}
.migraines-bg-custome{
  background-image: url(../../assets/images/frustrated-woman-with-her-work_1098-2644.webp);
  min-height: 75vh;
}
.long-covid-bg-custome{
  background-image: url(../../assets/images/Long-Covid_1200x900.webp);
  min-height: 75vh;
}
.support-with-cancer-treatments-bg-custome{
  background-image: url(../../assets/images/support-with-cancer-treatments_1200x900.webp);
  min-height: 75vh;
}
.traumatic-brain-injury-bg-custome{
  background-image: url(../../assets/images/traumatic_brain_injury_1200x900.webp);
  min-height: 75vh;
}
.vitality-boost-bg-custome{
  background-image: url(../../assets/images/vitality-boost_1200x900.webp);
  min-height: 75vh;
}
.anxiety-depression-bg-custome{
  background-image: url(../../assets/images/anxiety_and_depression1200x900.webp);
  min-height: 75vh;
}
.sports-recovery-and-pain-relief-bg-custome{
  background-image: url(../../assets/images/sportswoman-feeling-pain-holding-her-injured-knee-while-sitting-floor-home_637285-655.webp);
  min-height: 75vh;
}
.healing-from-chronic-wounds-bg-custome{
  background-image: url(../../assets/images/patient-doing-physical-rehabilitation-helped-by-therapists_23-2149227836.webp);
  min-height: 75vh;
}
.fractures-bg-custome{
  background-image: url(../../assets/images/strong-guy-with-good-body-morning-stadium-he-wears-sport-clothes-doing-exercise-he-looks-tense_197531-979.webp);
  min-height: 75vh;
}
.multiple-sclerosis-ms-bg-custome{
  background-image: url(../../assets/images/man-actively-running-street_23-2147775433.webp);
  min-height: 75vh;
}
.fibromyalgia-bg-custome{
  background-image: url(../../assets/images/beautiful-woman-looking-stressed-desk_23-2148470974.webp);
  min-height: 75vh;
}
.chronic-pain-bg-custome{
  background-image: url(../../assets/images/close-up-hands-massaging-legs_23-2148708072.webp);
  min-height: 75vh;
}
.arthritis-bg-custome{
  background-image: url(../../assets/images/aged-exhausted-bearded-european-man-touches-neck-suffers-from-pain-neck-tilts-head-grimaces-from-painful-feelings-needs-massage-dressed-long-sleeved-jumper-isolated-blue-wall_273609-44293.webp);
  min-height: 75vh;
}
.brain-injury-bg-custome{
  background-image: url(../../assets/images/doctor-adjusting-neurology-headset-by-looking-tablet-brain-scan-procedure_482257-31634.webp);
  min-height: 75vh;
}
.cancer-bg-custome{
  background-image: url(../../assets/images/cancer_1200x900.webp);
  min-height: 75vh;
}
.sciatica-bg-custome{
  background-image: url(../../assets/images/mid-section-young-woman-having-pain-hand-against-gray-background_23-2147889051.webp);
  min-height: 75vh;
}
.fusion-cold-plasma-treatment-cap-bg-custome{
  background-image: url(../../assets/images/Fusion-cold-plasma-Treatment-6.webp);
  min-height: 75vh;
}
.hyperbaric-oxygen-therapy-bg-custome{
  background-image: url(../../assets/images/s4.webp);
  min-height: 75vh;
}
.red-light-therapy-whole-body-bg-custome{
  background-image: url(../../assets/images/Red-Light-Therapy-3-scaled.webp);
  min-height: 75vh;
}
.dr-schrammek-green-peels-bg-custome{
  background-image: url(../../assets/images/FB_IMG_1649881241922.webp);
  min-height: 75vh;
}
.aha-peels-bg-custome{
  background-image: url(../../assets/images/aha-peels-scaled.webp);
  min-height: 75vh;
}
.cryo-facial-4-bg-custome{
  background-image: url(../../assets/images/Cryo-Facial-2.webp);
  min-height: 75vh;
}
.hydration-facial-bg-custome{
  background-image: url(../../assets/images/HydrationFacial-001.webp);
  min-height: 75vh;
}
.carbon-facial-bg-custome{
  background-image: url(../../assets/images/234-1.webp);
  min-height: 75vh;
}
.carboxy-hydration-facial-bg-custome{
  background-image: url(../../assets/images/0001.webp);
  min-height: 75vh;
}
.black-head-removal-facial-bg-custome{
  background-image: url(../../assets/images/65.webp);
  min-height: 75vh;
}
.deep-cleanse-facial-bg-custome{
  background-image: url(../../assets/images/3.webp);
  min-height: 75vh;
}
.radio-frequency-rf-skin-tightening-bg-custome{
  background-image: url(../../assets/images/asd-1.webp);
  min-height: 75vh;
}
.skin-rejuvenation-bg-custome{
  background-image: url(../../assets/images/LaserSkinRejuvenation-Pic001-r7fpw346gpfsp6wtpcbw68kegpjvwpw3vmeswnn4ck.webp);
  min-height: 75vh;
}
.prf-treatment-platelet-rich-fibrin-bg-custome{
  background-image: url(../../assets/images/IMG-20231114-WA0014.webp);
  min-height: 75vh;
}
.fat-dissolving-injections-bg-custome{
  background-image: url(../../assets/images/fat-dissolving-injections-5.webp);
  min-height: 75vh;
}
.rejuvenate-your-beauty-bg-custome{
  background-image: url(../../assets/images/asd.webp);
  min-height: 75vh;
}
.body-contouring-ultrasound-body-contouring-bg-custome{
  background-image: url(../../assets/images/245.webp);
  min-height: 75vh;
}
.micro-needling-bg-custome{
  background-image: url(../../assets/images/Microneedling-003.webp);
  min-height: 75vh;
}
.prf-for-hair-bg-custome{
  background-image: url(../../assets/images/34.webp);
  min-height: 75vh;
}
.redlight-lllt-treatmentss-bg-custome{
  background-image: url(../../assets/images/0001.webp);
  min-height: 75vh;
}
.hair-stroke-bg-custome{
  background-image: url(../../assets/images/Screenshot-vid.webp);
  min-height: 75vh;
}
.eyeliner-bg-custome{
  background-image: url(../../assets/images/close-up-studio-portrait-beautiful-brunette-woman-with-soft-skin-painting-her-eyebrows-with-makeup-brush-isolated-white_171337-778.webp);
  min-height: 75vh;
}
.tattoo-removal-bg-custome{
  background-image: url(../../assets/images/female-doctor-doing-laser-epilation-skin-arms_114579-4307.webp);
  min-height: 75vh;
}
.skins-tags-milia-age-bg-custome{
  background-image: url(../../assets/images/person-dealing-with-rosacea_23-2150478725.webp);
  min-height: 75vh;
}
.hifu-intimate-bg-custome{
  background-image: url(../../assets/images/intimate_hifu-3.webp);
  min-height: 75vh;
}
.hifu-various-body-parts-bg-custome{
  background-image: url(../../assets/images/0001.webp);
  min-height: 75vh;
}
.laser-hair-removal-bg-custome{
  background-image: url(../../assets/images/245-1.webp);
  min-height: 75vh;
}
.teeth-whitening-bg-custome{
  background-image: url(../../assets/images/woman-whitening-treatment_1232-185.webp);
  min-height: 75vh;
}
.localised-cryotherapy-bg-custome{
  background-image: url(../../assets/images/Localised-Cryotherapy-7-1.webp);
  min-height: 75vh;
}
.neurological-conditions-bg-custome{
  background-image: url(../../assets/images/neurological_conditions_1200x900.webp);
  min-height: 75vh;
}

.why-choose-active-clinic-main .main-card {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 50px;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
}
.why-choose-active-clinic-main .header-title {
  color: white;
  position: absolute;
  top: 50px;
  right: 10%;
  max-width: 400px;
  font-weight: 700;
  font-size: 2.5rem;
  z-index: 1;
}

.why-choose-active-clinic-main .intro-text {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.why-choose-active-clinic-main .promise-title {
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.why-choose-active-clinic-main .nav-pills .nav-link {
  color: #000;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.why-choose-active-clinic-main .nav-pills .nav-link.active {
  color: #5bc0de;
  background: none;
}
.why-choose-active-clinic-main .nav-link::after {
  content: " »";
  margin-left: 5px;
}
.why-choose-active-clinic-main .tab-content {
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}
.why-choose-active-clinic-main .journey-section {
  margin-top: 40px;
}
.why-choose-active-clinic-main .journey-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.why-choose-active-clinic-main .journey-text {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}
.why-choose-active-clinic-main .side-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .why-choose-active-clinic-main { background: #87CEEB; }
  .why-choose-active-clinic-main  .header-title { position: relative; top: 0; right: 0; color: #333; margin-bottom: 20px; }
}



.why-choose-tab-main .custom-accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* Accordion Header Style */
.why-choose-tab-main .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 20px;
}

.why-choose-tab-main .accordion-button {
  background-color: #f3f3f3 !important;
  color: #333;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 25px;
  border-radius: 5px !important;
  box-shadow: none !important;
}

/* Blue color for the first header as per image */
.why-choose-tab-main .header-blue {
  color: #5bc0de !important;
}

.why-choose-tab-main .accordion-button:not(.collapsed) {
  background-color: #f3f3f3;
  color: #5bc0de;
}

/* Icon styling (+ and -) */
.why-choose-tab-main .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
  background-size: 1.5rem;
}

.why-choose-tab-main .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235bc0de'%3e%3cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

/* Content Text Styling */
.why-choose-tab-main .accordion-body {
  color: #666;
  line-height: 1.8;
  padding: 20px 0;
  background: transparent;
}

.why-choose-tab-main .body-title {
  color: #000;
  font-weight: bold;
  margin-top: 20px;
  display: block;
}



.contact-number-btn{
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}
.contact-number-btn i{
  margin-right: 10px;
}




.slide-section-tab-main{

}
.slide-section-tab-main .slide-section-button-main{
  position: -webkit-sticky; /* Safari ke liye */
  position: sticky;
  top: 120px; /* Screen ke top se gap */
  z-index: 100;
}
.slide-section-tab-main .slide-section-button-main a{
    display: block;
    background: #e9e1d8;
    margin-bottom: 10px;
    color: #000;
    text-decoration: none;
    padding: 12px 15px;
    font-size: 14px;
}
.slide-section-tab-main .service-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 30px;
}

/* 1. What To Expect Section */
.slide-section-tab-main .expect-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.slide-section-tab-main .expect-section-title span {
  color: #5bc0de;
  font-size: 1.5rem;
}

.slide-section-tab-main .expect-card {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 50px;
}

.slide-section-tab-main .nav-tabs-custom .nav-link {
  border: none;
  color: #5bc0de;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 15px 0;
  text-align: left;
  background: none;
}

.slide-section-tab-main .nav-tabs-custom .nav-link.active {
  color: #000 !important;
  background: none;
}

.slide-section-tab-main .tab-content-text {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
}

        /* 2. Take Charge Section */
.slide-section-tab-main .take-charge-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.slide-section-tab-main .take-charge-desc {
  color: #777;
  max-width: 900px;
  line-height: 1.7;
  margin-bottom: 40px;
}

        /* 3. Button & Contact */
.slide-section-tab-main .btn-book-now {
  background-color: #000;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.slide-section-tab-main .btn-book-now:hover {
  background-color: #333;
  color: #fff;
}

.slide-section-tab-main .phone-number {
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  text-decoration: none;
  margin-left: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

        /* 4. Footer Divider */
.slide-section-tab-main .footer-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 60px;
  color: #555;
  font-weight: 500;
}

.slide-section-tab-main .footer-divider::before,
.slide-section-tab-main .footer-divider::after {
  content: '';
  flex: 1;
  border-bottom: 3px solid #5bc0de; /* Blue lines from image */
}

.slide-section-tab-main .footer-divider:not(:empty)::before { margin-right: 1.5rem; }
.slide-section-tab-main .footer-divider:not(:empty)::after { margin-left: 1.5rem; }

#female_hormone_blood_test, 
#hrt_blood_test, 
#menopause_blood_test, 
#general_wellbeing_blood_test, 
#male_hormone_blood_test, 
#ultimate_sports_performance_blood_test, 
#testosterone_blood_test, 
#thyroid_hormone_blood_test, 
#iron_deficiency_blood_test, 
#kidney_and_liver_function_blood_test {
    scroll-margin-top: 120px;
}

@media (max-width: 768px) {
  .slide-section-tab-main .phone-number { display: block; margin-left: 0; margin-top: 20px; }
}





.skin-tags-milia-carousel .carousel-main-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}
        
.skin-tags-milia-carousel .carousel-indicators {
  position: relative;
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-right: 2%;
  margin-left: 2%;
}

.skin-tags-milia-carousel .carousel-indicators [data-bs-target] {
  width: 80px; /* Thumbnails ki width */
  height: 80px;
  text-indent: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.skin-tags-milia-carousel .carousel-indicators .active {
  opacity: 1;
  border-color: #000;
}

.skin-tags-milia-carousel .carousel-indicators img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skin-tags-milia-carousel .control-btn {
  background-color: #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}
        
.skin-tags-milia-carousel .control-btn:hover { background-color: #bbb; }


.skin-tags-milia-carousel .carousel-inner {
  width: 100%;
  height: 500px; 
  border-radius: 20px;
  background-color: #f8f9fa;
}

.skin-tags-milia-carousel .carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: contain; 
  background-color: #f8f9fa;
}
.skin-tags-milia-carousel .carousel-indicators [data-bs-target] {
  width: 70px !important;
  height: 70px !important;
  overflow: hidden;
  border: 2px solid #ddd;
  border-radius: 8px;
  opacity: 0.7;
}

.skin-tags-milia-carousel .carousel-indicators img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Thumbnail me image hamesha bhari hui dikhegi */
}

.skin-tags-milia-carousel .carousel-indicators .active {
  border-color: #007bff;
  opacity: 1;
}
.skin-tags-milia-carousel .frame-cust {
    height: 500px;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .carousel-inner, .carousel-item img {
        height: 300px; /* Mobile ke liye kam height */
    }
}


.slideshow-container {
  width: 100%;
  max-width: 500px;
}
.carousel-item {
  text-align: center;
}
.slide-image {
  width: 100%;
  height: 700px;
  border-radius: 24px; /* Image ke corners round karne ke liye */
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Soft shadow */
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.carousel-fade .carousel-item {
  transition-duration: 0.8s;
}
.font-weight-700{
  font-weight: 700 !important;
}


.section-custom-secondry{
  padding: 100px 0px;
  background: #e0e6eb;
}








.testimonials-card-section{
  padding: 50px 0px !important;
}
.testimonials-card-section .product-card {
  width: 100%;
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 30px auto;
}

.testimonials-card-section .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonials-card-section .product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #18181b, #27272a);
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 12px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonials-card-section .product-tilt-effect {
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.testimonials-card-section .product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.testimonials-card-section .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.testimonials-card-section .product-card:hover .product-image img {
  transform: scale(1.05);
}

.testimonials-card-section .product-info {
  padding: 25px;
  position: relative;
}

.testimonials-card-section .product-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 8px;
}

.testimonials-card-section .product-title {
  font-size: 20px;
  font-weight: 700;
  color: #18181b;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.testimonials-card-section .product-description p {
  font-size: 14px;
  color: #52525b;
  line-height: 1.5;
  margin-bottom: 15px;
}

.testimonials-card-section .product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.testimonials-card-section .feature {
  font-size: 11px;
  background-color: #f4f4f5;
  color: #71717a;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
}

.testimonials-card-section .product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonials-card-section .product-price {
  display: flex;
  flex-direction: column;
}

.testimonials-card-section .price-was {
  font-size: 14px;
  text-decoration: line-through;
  color: #a1a1aa;
  margin-bottom: 2px;
}

.testimonials-card-section .price-now {
  font-size: 22px;
  font-weight: 700;
  color: #18181b;
}

.testimonials-card-section .product-button {
  background: linear-gradient(45deg, #18181b, #27272a);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonials-card-section .product-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: all 0.6s ease;
}

.testimonials-card-section .product-button:hover {
  background: linear-gradient(45deg, #27272a, #3f3f46);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonials-card-section .product-button:hover::before {
  left: 100%;
}

.testimonials-card-section .button-icon {
  transition: transform 0.3s ease;
}

.testimonials-card-section .product-button:hover .button-icon {
  transform: rotate(-10deg) scale(1.1);
}

.testimonials-card-section .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f4f4f5;
  padding-top: 15px;
}

.testimonials-card-section .product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.testimonials-card-section .rating-count {
  margin-left: 8px;
  font-size: 12px;
  color: #71717a;
}

.testimonials-card-section .product-stock {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}

@media (max-width: 400px) {
  .testimonials-card-section .product-card {
    width: 90%;
  }

  .testimonials-card-section .product-title {
    font-size: 18px;
  }

  .testimonials-card-section .product-image {
    height: 200px;
  }

  .testimonials-card-section .product-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .testimonials-card-section .product-price {
    margin-bottom: 5px;
  }

  .testimonials-card-section .product-button {
    width: 100%;
    justify-content: center;
  }
}



.round-image{
  border-radius: 15px;
}









.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #fda40b;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #999999;
  font-size: 16px;
  font-weight: ;
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
}
.single-input-field textarea {
  background: #f9f9f9 none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
  background: #fda40b none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}







.elementor-divider {
    padding-block-start: 8px;
    padding-block-end: 8px;
}
.elementor-divider-separator {
  width: 100%;
  border-block-start: var(--divider-border-width) var(--divider-border-style) var(--divider-color);
  --divider-border-style: dotted;
  --divider-color: #000;
  --divider-border-width: 1px;
  display: flex;
}



.social-contact{
  margin-top: 40px;
}
.social-contact ul{
  padding: 0px;
  list-style: none;
  margin-top: 15px;
  margin-bottom: 50px;
}
.social-contact ul li{
  padding-bottom: 15px;
}
.social-contact ul li a{
  margin-left: 5px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.social-icon{

}
.social-icon ul{
  padding: 0px;
  list-style: none;
  display: inline-flex;
  margin-top: 15px;
}
.social-icon ul li{
  padding: 10px 10px;
}
.social-icon ul li .social-icon-facebook{
  background: #3c5998;
  color: #fff;
  padding: 12px 15px;
  font-size: 24px;
  border-radius: 8px;
}
.social-icon ul li .social-icon-youtube{
  background: #ce201f;
  color: #fff;
  padding: 12px 15px;
  font-size: 24px;
  border-radius: 8px;
}
.social-icon ul li .social-icon-instagram{
  background: #000000;
  color: #fff;
  padding: 12px 15px;
  font-size: 24px;
  border-radius: 8px;
}
.social-icon ul li a{
  transition-duration: 1s;
}
.social-icon ul li a:hover{
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transition-duration: 1s;
}
.footer-social-icon{
  font-size: 20px;
  margin-left: 15px;
}























.modal-css-custome {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  right: 50px;
  bottom: 50px;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: all 0.4s;
  width: 350px;
}

.modal-css-custome:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 20px;
  position: relative;
  width: 350px;
  max-width: 100%;
  padding: 1em 2em;
  background-color: #3991d0;
}

.modal__footer {
  text-align: right;
  a {
    color: #585858;
  }
  i {
    color: #d02d2c;
  }
}
.modal__close {
  position: absolute;
  top: 6px;
  right: 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}


.boz-cust {

}
.boz-cust .font-weight-bold{
  font-weight: 600;
}
.boz-cust .cousom-head-tow{
  font-size: 16px;
}
.boz-cust .plan-features{
  max-height: 250px;
  overflow-y: scroll;
}
tr.tr-cust {
    border-bottom: 1px solid #ffffff8f;
    line-height: 40px;
}
.yellow-star{
  color: #ffb000;
}






.book-fix-button-all{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.nxv-content-a-text{
  color: #000 !important;
  text-decoration: none;
}

















.mobile-d-flex{
  display: flex;
}

@media (max-width: 850px) {

.mobile-divice-hide{
  display: none;
}
.mobile-d-flex{
  display: block;
}

}























