.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.gap-10 {
  gap: 10px;
}

/*** Property List ***/
.nav-pills .nav-item .btn {
  color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
  color: #ffffff;
}

.property-item {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.property-item img {
  transition: 0.5s;
}

.property-item:hover img {
  transform: scale(1.1);
}

.property-item .border-top {
  border-top: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.property-item .border-end {
  border-right: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.img-border-hover:hover img {
  border: 3px solid #1cb0c4;
  border-radius: 24px;
  transition: border 0.6s ease-in-out;
}

.customized-health {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bg-health-why {
  /*background-image: url('../img/why.jpg');*/
  /* Add your image path here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Optional: Add overlay for better text readability */
.bg-health-why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0); /* Dark overlay */
  border-radius: inherit;
}

.bg-health-why > div {
  position: relative;
  z-index: 1;
}

.why-card {
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.custom-hover-why {
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.custom-hover-why:hover {
  background-color: rgb(0, 0, 0);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1026;
  margin-bottom: 0;
}

.why-desc {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a1026;
  line-height: 1.6;
}

.custom-why-color {
  color: #0a1026;
  transition: color 0.3s ease-in-out;
}

.custom-hover-why:hover .custom-why-color {
  color: white;
}

/* Desktop: 2 columns */
@media (min-width: 768px) {
  .row.g-3 {
    display: flex;
    flex-wrap: wrap;
  }
  
  .why-card {
    min-height: 120px;
  }
}

/* Tablet and Mobile: 1 column */
@media (max-width: 767px) {
  .why-title {
    font-size: 1rem;
  }

  .why-desc {
    font-size: 0.875rem;
  }

  .custom-hover-why {
    padding: 0.75rem !important;
  }
  
  .why-card {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .why-title {
    font-size: 0.95rem;
  }

  .why-desc {
    font-size: 0.825rem;
  }
}




 .pathology-section {
            background-color: #ffffff;
            
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .pathology-title {
            font-size: 28px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0e0e0;
        }

        .test-badge {
            display: inline-block;
            padding: 8px 16px;
            margin: 5px 8px 5px 0;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            color: #495057;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .test-badge:hover {
            background: linear-gradient( to right bottom, #1c7585ff, #c8e1e49c);
            color: #ffffff;
            border-color: #1c7585ff;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0,123,255,0.3);
        }

        .test-badge:active {
            transform: translateY(0);
        }

        .separator {
            display: inline-block;
            margin: 0 3px;
            color: #dee2e6;
        }

        @media (max-width: 768px) {
            .pathology-section {
                padding: 20px;
            }
            
            .pathology-title {
                font-size: 22px;
            }
            
            .test-badge {
                font-size: 13px;
                padding: 6px 12px;
            }
        }


         .health-tips-section {
            background: #2AA5BC;
            padding: 5px 0;
            position: relative;
            overflow: hidden;
            /*box-shadow: 0 4px 15px rgba(0,0,0,0.2);*/
        }

        .health-tips-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>');
            background-size: 100px 100px;
            opacity: 0.3;
        }

        .health-tips-header {
            display: flex;
            align-items: center;
            padding: 0 30px;
            margin-bottom: 15px;
        }

        .health-tips-icon {
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .health-tips-icon i {
            font-size: 24px;
            color: #667eea;
        }

        .health-tips-title {
            color: white;
            font-size: 26px;
            font-weight: 700;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        marquee {
            color: black;
            font-size: 16px;
            font-weight: 500;
            padding: 0 30px;
        }

        .tip-item {
            display: inline-block;
            padding: 12px 25px;
            margin: 0 15px;
            background-color: rgba(255,255,255,0.2);
            border-radius: 10px;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            white-space: nowrap;
            backdrop-filter: blur(5px);
        }

        .tip-item:hover {
            background-color: rgba(255,255,255,0.35);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .tip-icon {
            margin-right: 10px;
            font-size: 18px;
        }

        @media (max-width: 768px) {
            .health-tips-title {
                font-size: 20px;
            }
            
            .tip-item {
                font-size: 14px;
                padding: 10px 20px;
            }
            
            marquee {
                font-size: 14px;
            }
        }