/*
Theme Name: Varia 2026
Author: trivia info it
Author URI: http://trivia.co.in/
Description: Bootstrap based wp theme for Varia Hospital, Bharuch
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-v12-latin-regular.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/plus-jakarta-sans-v12-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  --primary: #ec2127;
  --primary-light: #ff4d52;
  --primary-dark: #b8151a;
  --secondary: #010b40;
  --secondary-light: #031875;
  --bg-light: #f4f7fc;
  --text-dark: #0f1322;
  --text-muted: #5c647a;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #ff6b6b 100%);
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-light) 100%
  );
  --shadow-3d: 0 20px 40px rgba(1, 11, 64, 0.06);
  --shadow-3d-hover: 0 30px 60px rgba(236, 33, 39, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.8);
  --border-color: #e3e8ee;
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/*Wordpress editor styles start*/

.entry-content img {
  margin: 0 0 1.5em 0;
}
.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.alignnone,
img.alignnone {
  /* not sure about this one */
}
.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}
.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}
.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}
.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}
blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/*Wordpress editor styles end*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  /* cursor: none; */
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ==========================================
   2. CUSTOM CURSOR
========================================== */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0; /* Hidden until first mouse move */
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  transition: opacity 0.3s ease;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(236, 33, 39, 0.5);
  transition:
    width 0.2s,
    height 0.2s,
    border-color 0.2s,
    opacity 0.3s ease;
}

.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  border-color: var(--primary);
  background: rgba(236, 33, 39, 0.1);
  backdrop-filter: blur(2px);
}

.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

/* ==========================================
   3. GLOBAL UTILITIES & COMPONENTS
========================================== */
.text-primary-custom {
  color: var(--primary) !important;
}
.text-secondary-custom {
  color: var(--secondary) !important;
}
.bg-primary-custom {
  background: var(--gradient-primary) !important;
  color: white;
}
.bg-secondary-custom {
  background: var(--gradient-secondary) !important;
  color: white;
}
.bg-light-custom {
  background-color: var(--bg-light);
}

.section-padding {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  display: block;
  font-size: 2.8rem;
  letter-spacing: -1px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* 3D Tilt Utility */
.tilt-card,
.interactive-3d {
  transition: transform 0.1s;
  transform-style: preserve-3d;
}

/* Ambient Parallax Background Shapes */
.ambient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: 5%;
  left: -100px;
}
.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  top: 35%;
  right: -150px;
}
.shape-3 {
  width: 350px;
  height: 350px;
  background: var(--primary);
  bottom: 10%;
  left: -50px;
}

/* ==========================================
   4. BUTTONS
========================================== */
.btn-custom {
  padding: 15px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
  letter-spacing: 0.1px;
  cursor: pointer;
}

.btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-custom:hover::before {
  width: 200%;
  transform: translateX(-50%);
}
.btn-custom:hover {
  transform: translateY(-5px);
}

.btn-primary-custom {
  background: var(--gradient-primary);
  color: white !important;
  box-shadow: 0 10px 25px rgba(236, 33, 39, 0.3);
}
.btn-primary-custom:hover {
  box-shadow: 0 15px 35px rgba(236, 33, 39, 0.4);
}

.btn-secondary-custom {
  background: var(--gradient-secondary);
  color: white !important;
  box-shadow: 0 10px 25px rgba(1, 11, 64, 0.3);
}
.btn-secondary-custom:hover {
  box-shadow: 0 15px 35px rgba(1, 11, 64, 0.4);
}

.btn-outline-custom {
  background: white;
  border: 2px solid var(--secondary);
  color: var(--secondary) !important;
}
.btn-outline-custom:hover {
  background: var(--secondary);
  color: white !important;
  border-color: var(--secondary);
  box-shadow: 0 10px 25px rgba(1, 11, 64, 0.2);
}

/* ==========================================
   5. NAVBAR & FOOTER
========================================== */
/* .navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--secondary);
  letter-spacing: -0.5px;
}
.navbar-brand span {
  color: var(--primary);
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 15px;
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
} */

/* Footer */
.footer {
  background: #060914;
  color: #8e9bb0;
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}
.footer-title {
  color: white;
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 0.5px;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 18px;
}
.footer-links a {
  color: #8e9bb0;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(8px);
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-right: 12px;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(236, 33, 39, 0.4);
  border-color: transparent;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 80px;
  padding-top: 30px;
  text-align: center;
  font-size: 1rem;
}

/* ==========================================
   6. HERO SECTIONS (Home, Services, Contact)
========================================== */

/* Home Hero */
.hero {
  position: relative;
  padding: 220px 0 220px 0;
  overflow: hidden;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}
.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--secondary);
  margin-bottom: 25px;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
}
.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 90%;
  position: relative;
  z-index: 1;
}
.hero-img-box {
  position: relative;
  z-index: 1;
  perspective: 1200px;
}
.hero-img {
  border-radius: 30px;
  box-shadow: var(--shadow-3d);
  position: relative;
  z-index: 2;
  width: 100%;
  border: 8px solid white;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  /* Initial for GSAP */
}

/* Service Hero */
.service-hero {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.2rem;
  line-height: 1.15;
  letter-spacing: -1px;
}
.hero-content h1 span {
  color: var(--primary);
}
.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 90%;
}
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
  aspect-ratio: 4/3;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

/* Contact Hero */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  padding-top: 180px;
}
.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-3d);
  position: relative;
  overflow: hidden;
}

/* Mesh Background Animations */
.mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #f8faff;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatBlob 15s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.blob-1 {
  background: rgba(255, 77, 82, 0.4);
  width: 45vw;
  height: 45vw;
  top: -10%;
  left: -10%;
  animation-duration: 20s;
}
.blob-2 {
  background: rgba(3, 24, 117, 0.3);
  width: 50vw;
  height: 50vw;
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}
.blob-3 {
  background: rgba(255, 154, 158, 0.4);
  width: 35vw;
  height: 35vw;
  top: 30%;
  left: 40%;
  animation-duration: 25s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5vw, 10vh) scale(1.1);
  }
  100% {
    transform: translate(-5vw, 5vh) scale(0.9);
  }
}

/* Floating Cards (Home) */
.float-card {
  position: absolute;
  padding: 18px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  animation: float 8s ease-in-out infinite;
  transform-style: preserve-3d;
}
.fc-1 {
  bottom: 10%;
  left: -15%;
}
.fc-2 {
  top: 15%;
  right: -10%;
  animation-delay: -3s;
  animation-duration: 9s;
}
.float-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ==========================================
   7. PAGE LAYOUTS & SIDEBAR (Services)
========================================== */
.page-layout {
  padding: 80px 0;
  position: relative;
}
.layout-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 50px;
}
.main-content {
  min-width: 0;
}
.sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}
.content-section {
  margin-bottom: 50px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Sidebar Widgets */
.specialties-sidebar {
  background: var(--white);
  padding: 35px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-3d);
}
.specialties-sidebar h3 {
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-light);
  font-weight: 800;
}
.services-list {
  list-style: none;
  padding: 0;
}
.services-list li {
  margin-bottom: 10px;
}
.services-list a {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 600;
  padding: 12px 15px;
  border-radius: 8px;
  transition: var(--transition);
}
.services-list a i {
  color: var(--primary);
  margin-right: 12px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.services-list a:hover,
.services-list a.active {
  color: var(--secondary);
  background: var(--bg-light);
}
.services-list a:hover i {
  transform: translateX(3px);
}

/* ==========================================
   8. BLOCKS & COMPONENTS
========================================== */

/* Quick Access Grid */
.quick-access-wrapper {
  margin-top: -100px;
  position: relative;
  z-index: 10;
  perspective: 1200px;
}
.quick-card {
  background: white;
  border-radius: 24px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(1, 11, 64, 0.04);
  text-decoration: none;
  color: inherit;
}
.quick-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(236, 33, 39, 0.1);
}
.quick-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
  transition: all 0.5s ease;
  background: var(--bg-light);
  position: relative;
  z-index: 2;
}
.quick-icon svg {
  width: 45px;
  height: 45px;
  fill: var(--primary);
}
.quick-card:hover .quick-icon svg {
  /* background: var(--gradient-primary);
  */
  fill: var(--secondary);
  /* transform: rotateY(180deg) scale(1.1); */
  /* box-shadow: 0 15px 25px rgba(236, 33, 39, 0.3);
  */
}
.quick-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
}
.quick-card:hover .quick-title {
  color: var(--primary);
}

/* About Elements */
.about-img-wrapper {
  position: relative;
  padding: 20px;
  z-index: 1;
  perspective: 1000px;
}
.about-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border-radius: 35px;
  transform: rotate(-6deg);
  z-index: -1;
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-img-wrapper:hover .about-img-bg {
  transform: rotate(-10deg) scale(1.05);
  background: rgba(236, 33, 39, 0.05);
}
.about-img {
  border-radius: 30px;
  box-shadow: var(--shadow-3d);
  width: 100%;
  border: 8px solid white;
}
.exp-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--gradient-primary);
  color: white;
  padding: 30px 25px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(236, 33, 39, 0.4);
  border: 4px solid white;
  animation: float 6s infinite alternate;
}

/* Service & Package Cards */
.service-card {
  background: white;
  border-radius: 25px;
  padding: 45px 35px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(1, 11, 64, 0.04);
}
.service-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(236, 33, 39, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  transition: 0.5s;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(236, 33, 39, 0.1);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-card:hover::before {
  transform: scale(1.5);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-icon svg {
  fill: var(--secondary);
}
.service-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.service-card:hover .service-link i {
  transform: translateX(10px);
}

.package-card {
  background: white;
  border-radius: 30px;
  padding: 50px 35px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
  box-shadow: 0 10px 30px rgba(1, 11, 64, 0.04);
  display: flex;
  flex-direction: column;
}
.package-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-3d-hover);
  z-index: 2;
  transform: scale(1.05);
}
.package-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-3d-hover);
  border-color: rgba(236, 33, 39, 0.1);
}
.package-card.popular:hover {
  transform: translateY(-15px) scale(1.05);
}
.popular-tag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 8px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  box-shadow: 0 15px 25px rgba(236, 33, 39, 0.3);
}
.pkg-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 25px;
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.package-card:hover .pkg-icon {
  transform: translateZ(30px) scale(1.15);
  color: var(--primary);
}
.pkg-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px;
  text-align: left;
  flex-grow: 1;
}
.pkg-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 600;
}
.pkg-list li i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Facilities */
.facility-item {
  background: white;
  padding: 30px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-left: 5px solid transparent;
  box-shadow: 0 10px 30px rgba(1, 11, 64, 0.04);
  cursor: pointer;
}
.facility-item:hover {
  transform: translateX(15px);
  border-left-color: var(--primary);
  box-shadow: var(--shadow-3d);
}
.fac-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--bg-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: 0.5s;
}
.facility-item:hover .fac-icon {
  background: var(--gradient-primary);
  color: white;
  transform: rotateY(180deg);
  box-shadow: 0 10px 20px rgba(236, 33, 39, 0.2);
}

/* Custom Grids (Symptoms, Treatment, Alerts) */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}
.symptom-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}
.symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-3d);
  border-color: var(--primary);
  background: var(--white);
}
.symptom-icon {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(236, 33, 39, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 25px;
}
.treatment-card {
  background: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 35px 25px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--border-color);
}
.treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}
.treatment-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
}
.treatment-card:hover {
  box-shadow: var(--shadow-3d);
  transform: translateY(-8px);
  background: var(--white);
}
.treatment-card:hover::before {
  opacity: 1;
}
.treatment-card h4 {
  color: var(--secondary);
  font-size: 1.35rem;
  margin-bottom: 15px;
  font-weight: 800;
}
.treatment-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.alert-list {
  display: grid;
  gap: 15px;
  margin-top: 25px;
}
.alert-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 20px 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(1, 11, 64, 0.05);
  transition: var(--transition);
}
.alert-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-3d);
  transform: translateX(5px);
}
.alert-icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(236, 33, 39, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.alert-item p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Accordions */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 6px rgba(1, 11, 64, 0.05);
  transition: var(--transition);
}
.accordion-item:hover {
  border-color: rgba(1, 11, 64, 0.2);
}
.accordion-header {
  padding: 20px 25px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
  transition: var(--transition);
  font-size: 1.1rem;
}
.accordion-header:hover {
  background: var(--bg-light);
  color: var(--primary);
}
.accordion-header i {
  transition: transform 0.3s ease;
  color: var(--primary);
}
.accordion-item.active {
  border-left: 4px solid var(--primary);
}
.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--white);
}
.accordion-content-inner {
  padding: 0 25px 25px 25px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Read More Wrapper */
.read-more-wrapper {
  position: relative;
}
.read-more-inner {
  position: relative;
}
.read-more-content {
  max-height: 140px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
}
.read-more-content.expanded {
  max-height: 2000px;
}
.read-more-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  transition: opacity 0.3s;
  pointer-events: none;
}
.read-more-content.expanded + .read-more-fade {
  opacity: 0;
}
.btn-read-more {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  padding: 10px 0;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

/* Why Choose Us & CTA Strips */
.why-bg {
  background: var(--secondary);
  color: white;
  border-radius: 50px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(1, 11, 64, 0.2);
}
.why-bg::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(236, 33, 39, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
  animation: pulse-bg 10s infinite alternate;
}
.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  padding: 15px;
  border-radius: 20px;
}
.feature-box:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}
.feature-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature-icon svg {
  margin-top: 1rem;
  fill: var(--primary-light);
  width: 42px;
  height: 42px;
}
.feature-box:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
  transform: rotate(15deg) scale(1.1);
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(236, 33, 39, 0.3);
}
.feature-box:hover .feature-icon svg {
  fill: white;
}
.cta-strip {
  background: var(--gradient-secondary);
  padding: 100px 0;
  text-align: center;
  color: white;
  border-radius: 40px;
  margin: 80px 0;
  box-shadow: 0 30px 60px rgba(1, 11, 64, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='rgba(255,255,255,0.03)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 0;
  animation: scrollPattern 30s linear infinite;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 45px;
  border-radius: 30px;
  position: relative;
  transition: 0.5s;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 15px 35px rgba(1, 11, 64, 0.04);
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3d);
  border-color: rgba(236, 33, 39, 0.1);
}
.quote-icon {
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 6rem;
  color: rgba(1, 11, 64, 0.04);
  line-height: 1;
  transition: 0.5s;
}
.testimonial-card:hover .quote-icon {
  color: rgba(236, 33, 39, 0.08);
  transform: translateZ(-10px) scale(1.1) rotate(10deg);
}
.stars {
  color: #ffc107;
  margin-bottom: 25px;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* ==========================================
   9. ABOUT PAGE SPECIFICS
========================================== */
.trusted-by-section {
  border-top: 1px solid rgba(1, 11, 64, 0.05);
  border-bottom: 1px solid rgba(1, 11, 64, 0.05);
  padding: 50px 0;
  background: var(--white);
}
.partner-logo {
  font-size: 1.8rem;
  color: #8e9bb0;
  opacity: 0.5;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.partner-logo:hover {
  opacity: 1;
  color: var(--secondary);
  transform: translateY(-3px);
}
.timeline-wrapper {
  position: relative;
  padding-left: 40px;
}
.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(1, 11, 64, 0.1);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -40px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(236, 33, 39, 0.1);
  z-index: 2;
  transition: var(--transition);
}
.timeline-item:hover .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(236, 33, 39, 0.2);
}
.timeline-year {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}
.story-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}
.story-stat-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(1, 11, 64, 0.03);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3d);
  border-color: rgba(236, 33, 39, 0.1);
}
.team-img-box {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-light);
  margin-bottom: 20px;
  aspect-ratio: 1/1;
  position: relative;
}
.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-box img {
  transform: scale(1.05);
}
.team-social {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.4s ease;
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(0);
}
.team-social a {
  width: 32px;
  height: 32px;
  background: var(--white);
  color: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.team-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==========================================
   10. CONTACT PAGE SPECIFICS
========================================== */
.contact-card-premium {
  background: #ffffff;
  border: 1px solid rgba(1, 11, 64, 0.08);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.contact-card-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(236, 33, 39, 0.3);
  box-shadow: 0 15px 35px rgba(1, 11, 64, 0.08);
  background: #ffffff;
}
.contact-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.contact-card-premium:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(-8deg);
}
.icon-phone {
  background: rgba(236, 33, 39, 0.08);
  color: var(--primary);
}
.contact-card-premium:hover .icon-phone {
  background: var(--primary);
  color: #fff;
}
.icon-email {
  background: rgba(1, 11, 64, 0.06);
  color: var(--secondary);
}
.contact-card-premium:hover .icon-email {
  background: var(--secondary);
  color: #fff;
}
.icon-location {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.contact-card-premium:hover .icon-location {
  background: #10b981;
  color: #fff;
}
.contact-card-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-card-premium:hover .contact-card-arrow {
  opacity: 1;
  color: var(--primary);
  transform: translateX(0);
}
.form-control-custom {
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}
.form-control-custom:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(236, 33, 39, 0.1);
  background-color: var(--white);
  outline: none;
}

/* ==========================================
   11. MOBILE STICKY CTA
========================================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  /* Hidden on desktop */
  padding: 15px;
  z-index: 1000;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-sticky-cta .btn,
.mobile-sticky-cta .btn-custom {
  flex: 1;
  border-radius: 12px !important;
  font-weight: 800;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   12. RESPONSIVE QUERIES
========================================== */
@media (max-width: 991px) {
  .hero {
    padding: 160px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
  }
  .hero-title,
  .service-hero h1 {
    font-size: 3.5rem;
  }
  .hero-grid,
  .layout-grid {
    grid-template-columns: 1fr;
  }
  .service-hero {
    padding: 140px 0 60px;
    text-align: center;
  }
  .contact-hero {
    padding-top: 140px;
    text-align: center;
  }

  .fc-1 {
    left: 0;
    bottom: 0;
  }
  .fc-2 {
    right: 0;
    top: 0;
  }
  .quick-access-wrapper {
    margin-top: -60px;
  }
  .sidebar {
    position: static;
    margin-top: 20px;
  }
  .ambient-shape {
    display: none;
  }
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-title,
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .quick-access-wrapper {
    margin-top: 40px;
  }
  .mobile-sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 90px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .cta-strip,
  .why-bg {
    border-radius: 0;
    margin: 0;
    padding: 80px 0;
  }
  .treatment-grid,
  .symptoms-grid {
    grid-template-columns: 1fr;
  }
  .content-section {
    padding: 25px 20px;
  }
	.exp-badge{
		display:none;
	}
}

/* ==========================================
   13. DROPDOWN MENU FIX
========================================== */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .dropdown > .dropdown-menu {
    display: none;
    transition: var(--transition);
  }
}

/* ==========================================
   14. INTERACTIVE HEALTH PACKAGES
========================================== */
/* Left Column: Capsules List */
.whats-inside-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-3d);
  border: 1px solid var(--border-color);
  height: 100%;
}
.whats-inside-title {
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}
.capsule-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 250px;
  align-content: flex-start;
}
.test-capsule {
  display: inline-flex;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(1, 11, 64, 0.02);
}
.test-capsule:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 33, 39, 0.08);
}
.test-capsule i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-right: 8px;
}

/* Right Column: Package Selection Cards */
.package-selector-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-selector-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--bg-light);
}
.package-card-select {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 6px -1px rgba(1, 11, 64, 0.02);
  padding: 15px;
  text-align: center;
  user-select: none;
}
.package-card-select:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(236, 33, 39, 0.1);
}
.package-card-select.active {
  background: var(--gradient-secondary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-3d);
}
/* ==========================================
PACKAGE CAPSULES - MATCH DESIGN
========================================== */

.capsule-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.capsule-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #d7deeb;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #21345f;
  white-space: nowrap;
  transition: all 0.25s ease;
}

/* BLUE TICK ICON */
.capsule-item::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: #3f7cf0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* HOVER */
.capsule-item:hover {
  transform: translateY(-2px);
  border-color: #3f7cf0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

/* MOBILE */
@media (max-width: 767px) {
  .capsule-container {
    gap: 10px;
  }

  .capsule-item {
    font-size: 14px;
    padding: 10px 14px;
    gap: 8px;
  }

  .capsule-item::before {
    width: 16px;
    height: 16px;
    min-width: 16px;
    font-size: 11px;
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .whats-inside-card {
    padding: 25px;
    margin-top: 30px;
  }
  .package-card-select {
    height: 80px;
    font-size: 1rem;
    border-radius: 16px;
  }
}
