/* Global font + background */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at center, #d0f2ff, #f7faff, #e9f0ff);
  background-size: cover;
  background-attachment: fixed;
  color: #1e3a8a;
}

.nav-link {
  font-weight: 500;
  color: #000 !important;
  margin-left: 20px;
}

.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  color: #1e3a8a;
}

.cta-button {
  background: rgba(255, 255, 255, 0.3);
  color: #1e3a8a;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.navbar,
.navbar-nav {
  position: relative;
  z-index: 1030;
}
.glass-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.2rem 2rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.glass-nav li {
  display: inline-block;
}

.glass-nav a {
  text-decoration: none;
  color: #1e3a8a; /* soft navy */
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  transition: color 0.3s ease;
}

.glass-nav a:hover {
  color: #2563eb; /* brighter blue on hover */
}

.glass-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.glass-nav li {
  position: relative;
  white-space: nowrap;
  line-height: 1.2;
}

.glass-nav a {
  display: inline-block;
  white-space: nowrap;
  line-height: 1.2;
  padding: 0.6rem 0.8rem;
}

/* Dropdown container */
.dropdown,
.dropdown-drop {
  position: relative;
  overflow: visible !important;
  z-index: 1;
}

.dropdown-menu {
  display: none;
  flex-direction: column;        
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  z-index: 1050;
  min-width: max-content;
}

.dropdown:hover .dropdown-menu {
  display: flex; 
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: -1;
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: #1e3a8a;
  font-size: 0.9rem;
  background-color: transparent;
  white-space: nowrap;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.95);
  color: #000;
}
.cta-button:hover {
  background: rgba(255, 255, 255, 0.6);
  color: #000;
}
.text-block h1 {
  font-size: 3rem;
  font-weight: 700;
}

.text-block p {
  font-size: 1.1rem;
  max-width: 480px;
}

.btn-primary {
  background: #3b82f6;
  border: none;
  font-weight: 500;
}

.btn-primary:hover {
  background: #2563eb;
}

.highlight {
  color: #3b82f6;
}

.panel img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  margin-left: 0.5rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #1e3a8a; /* Navy blue */
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666666; /* Gray */
  margin-top: -2px;
  letter-spacing: 0.05em;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/your-hero-banner.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 16px;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fbbf24; /* amber/gold for highlight */
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
  font-weight: 400;
  color: #1f2937; /* deep gray */
  line-height: 1.6;
}
.hero-banner .text-block {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-banner {
  background: url('../images/your-banner.jpg') no-repeat center center/cover;
  padding: 3rem 0;
  position: absolute;
  z-index: 1;
}

.glass-outline-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #00bfff;
  background: rgba(255, 255, 255, 0.05); /* Glassy translucent */
  border: 2px solid rgba(0, 191, 255, 0.6); /* Blue outline */
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2); /* soft neon glow */
}

.glass-outline-btn:hover {
  box-shadow:
    0 0 15px rgba(0, 191, 255, 0.5),
    0 0 30px rgba(0, 191, 255, 0.3);
  border-color: rgba(0, 191, 255, 0.9);
  transform: scale(1.05);
}

.glass-btn-1 {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 153, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.glass-btn:hover {
  background: rgba(0, 153, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(59, 130, 246, 0.25);
}

.neon-btn {
  background: white;
  color: #003366; /* Deep blue text */
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  text-shadow: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 
              0 0 30px rgba(0, 255, 255, 0.3); /* Subtle neon edge */
  transition: all 0.3s ease;
}

.neon-btn:hover {
  background: #e0f7ff;
  color: #002244;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9),
              0 0 45px rgba(0, 255, 255, 0.6);
  transform: scale(1.05);
}
.section-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  margin: 3rem auto;
  padding: 2rem;
  max-width: 1100px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a2c4d;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.5rem;
}

.event,
.focus-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.event-date,
.event-time {
  min-width: 120px;
  font-weight: 600;
  color: #444;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}  

.gallery-grid img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 1rem;
}


.focus-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 20px 20px;
  color: #003366; /* Rich blue */
  font-size: 0.9rem;
}

.footer-left a,
.footer-right,
.footer-center a {
  color: #003366; /* Consistent deep blue */
  text-decoration: none;
  font-weight: 500;
}

.footer-left a {
  margin-right: 1.5rem;
  text-decoration: underline;
}

.footer-center a {
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.footer-center a:hover {
  transform: scale(1.1);
  color: #007BFF; /* Optional hover blue */
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-block img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #003366;
}

.nav-menu a {
  margin: 0 0.75rem;
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.about-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 3rem;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  color: #001f3f;
  position: relative; /* Important to have for z-index to apply */
  z-index: 1
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #204080;
  text-align: center;
}

.about-img {
  max-width: 100%;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
  color: #204080;
  margin-top: 2rem;
  font-size: 1.5rem;
}

.about-text p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.2rem;
}

.about-text ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.about-text ul li {
  margin-bottom: 0.5rem;
  color: #333;
}

.care-coordination-section {
  padding: 4rem 2rem;
  margin: 2rem auto;
  max-width: 960px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  padding: 2rem;
  color: #0a1e4f;
}

.about-img {
  width: 100%;
  border-radius: 12px;
  margin: 1rem 0 2rem;
  object-fit: cover;
}

.about-content h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: #124191;
}

.about-content ul {
  list-style-type: disc;
  padding-left: 2rem;
}
 
 .referral-section {
    background: linear-gradient(to bottom right, #eef6ff, #ffffff);
  }
  .glass-box {
    background: rgba(255, 255, 255, 0.08); /* More see-through */
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 160, 255, 0.12);
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
  }
  .glass-box:hover {
    transform: translateY(-6px);
  }
  .glass-box ul {
    padding-left: 1.2rem;
  }
  .glass-box ul ul {
    padding-left: 1rem;
    list-style-type: circle;
  }
  .glass-box li {
    margin-bottom: 0.5rem;
  }

.contact-glass {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 16px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      margin-bottom: 2rem;
    }

    .form-control {
      background: rgba(255, 255, 255, 0.2);
      border: none;
      border-radius: 10px;
      color: #003366;
    }

    .form-control::placeholder {
      color: #669;
    }

    .btn-send {
      background: #007bff;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 0.6rem 1.5rem;
      transition: 0.3s;
    }

    .btn-send:hover {
      background: #0056b3;
    }

    .contact-title {
      font-weight: 700;
      color: #004080;
      border-bottom: 2px solid #d4af37;
      display: inline-block;
      margin-bottom: 2rem;
    }
.hero-banner {
  position: relative;
  width: 100%;
  height: 70vh; /* Takes 1/3 of the screen */
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 16px;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* darkens video */
  backdrop-filter: blur(2px);
  z-index: 1;
  border-radius: 16px;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #fff;
  text-align: center;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-text p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  color: #003366;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #e0f0ff;
  transform: translateY(-2px);
}
	.hero-video {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 75%; 
  left: 6%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 500px;
  text-align: left;
}

.hero-text .subline {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
.glass-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}.intro-highlight {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  margin-bottom: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.intro-highlight .headline {
  font-size: 2rem;
  font-weight: 700;
  color: #002c5f;
}

.intro-highlight .sub-headline {
  font-size: 1.3rem;
  color: #004499;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.intro-highlight .lead {
  font-size: 1rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.glass-card {
  min-height: 340px; /* adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.glass-card {
  min-height: 100%; /* Ensure full height from the column */
  width: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.glass-card h5 {
  font-size: 1.1rem;
  line-height: 1.4;
  word-wrap: break-word;
  white-space: normal;
  min-height: 3.5rem; /* helps reserve space across cards */
}
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* On hover: lift effect */
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
  height: 100%;
  opacity: 0.8;
}

/* For the image inside the card */
.glass-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.carousel-control-prev,
.carousel-control-next{
  background-color: none;
  backdrop-filter: blur(8px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-size: 50% 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.carousel-inner .row {
  padding: 2rem 0;
}


.carousel-inner {
  overflow: visible;
}

.carousel .carousel-item {
  transition: transform 0.6s ease;
  margin: 0 15px;
}

.glass-card {
  transition: transform 0.4s ease;
}

.carousel .carousel-item.active .glass-card:hover {
  transform: scale(1.05);
}
.glass-card img {
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.carousel-inner {
  overflow: visible;
  padding-top: 2rem;
  padding-bottom: 2rem;
}


/* Optional: hover zoom for card */
.glass-card:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.carousel-control-prev,
.carousel-control-next {
  background: none !important;        /* removes any default yellow */
  border: none;
  outline: none;
}

.carousel-control-prev:focus,
.carousel-control-next:focus,
.carousel-control-prev:active,
.carousel-control-next:active {
  background: none !important;        /* prevents yellow on click */
  box-shadow: none !important;        /* removes Bootstrap focus ring */
  outline: none !important;
}
.question-heading {
  color: #003366;
  font-weight: 550;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* For the image container on the right */
.glass-card-1 {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px; /* Adjusted for better height fill */
  margin-bottom: 1.5rem;
}

/* Ensures the images fill the card nicely without stretching */
.glass-card-2 img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.section-title-1 {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 1.0rem;
}

.bright-blue-0 {
  color: #007bff; /* Bootstrap Primary Blue */
}

/* Optional: if you want it even brighter */
.bright-blue-1-2 {
  color: #329dff; /* Custom vivid blue */
}
.bright-blue-1 {
  color: #329dff;
  text-shadow: 0 0 5px rgba(50, 157, 255, 0.5);
}
.glass-glow-btn-lg {
  display: inline-block;
  font-size: 1.25rem;            /* larger text */
  font-weight: 600;
  color:  #3399ff;
  background: rgba(50, 120, 255, 0.25);   /* deeper blue tint */
  border: 1px solid rgba(50, 120, 255, 0.5);
  border-radius: 40px;
  padding: 0.75rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgba(50, 120, 255, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.glass-glow-btn-lg:hover {
  background: rgba(50, 120, 255, 0.4);
  box-shadow: 0 0 40px rgba(50, 120, 255, 0.7);
  transform: scale(1.05);
  color: #ffffff; /* optional: turns white on hover */
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(50, 120, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(50, 120, 255, 0.6);
  }
}

.glass-glow-btn-lg {
  animation: pulseGlow 2s infinite;
}
 .autoimmune-section {
  position: relative;
  z-index: 0; /* Push it below the navbar dropdown */
}
.cardiovascular-section {
  position: relative;
  z-index: 0; /* Push it below the navbar dropdown */
}

.body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to bottom right, #e7f3fc, #f7fbfe);
      color: #003366;
    }
    .hero-section-a {
      position: relative;
      height: 100vh;
      background: url('assets/images/stemcell-bg.jpg') no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
    }
    .hero-section-a h1 {
      font-size: 3rem;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    .section-title-a {
      text-align: center;
      font-size: 2rem;
      font-weight: 600;
      color: #007BFF;
      margin-top: 4rem;
    }
    .glass-card-a {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 15px;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      margin-bottom: 2rem;
      color: #003366;
    }
    .sticky-inquire-btn-a {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: rgba(0, 157, 255, 0.9);
      color: #fff;
      padding: 12px 24px;
      border-radius: 50px;
      font-weight: bold;
      backdrop-filter: blur(6px);
      box-shadow: 0 0 20px rgba(0, 157, 255, 0.5);
      z-index: 1000;
      border: none;
      transition: 0.3s;
    }
    .sticky-inquire-btn-a:hover {
      background: #0055aa;
    }
    .content-icon-a {
      font-size: 1.25rem;
      margin-right: 10px;
      color: #007bff;
    }
    .glass-card.visible {
      transform: translateY(0);
      opacity: 1;
    }

.img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.img:hover {
  transform: scale(1.02);
}

.img-1 {
  opacity: 0;
  transform: translateY(20px);
}
.img.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}
.stacked-images {
  margin: 0;
  padding: 0;
}

.full-section {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

/* --- offer-list --- */
.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offer-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
}
.offer-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #2563eb;  /* bright blue check */
  font-weight: bold;
}

/* ── Subheading under the title ── */
.subheading-1 {
  font-size: 1.1rem;
  color: #374151;  /* dark grey */
  margin-bottom: 2rem;
}

.research-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 360px;
}
.research-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.research-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  min-height: 48px; /* aligns title height */
}

.research-card p {
  font-size: 0.95rem;
  color: #3b3b3b;
  flex-grow: 1;
  margin-bottom: 1.2rem;
}

.research-card .learn-more {
  background: #7fcfff;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  margin-top: auto;
  align-self: center;
  transition: background 0.3s ease;
}
.research-section {
  padding: 4rem 0;
  background: transparent;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2a40;
  margin-bottom: 2.5rem;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.research-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.research-card:hover {
  transform: translateY(-6px);
}

.research-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.research-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: #1a1a1a;
}

.research-card p {
  font-size: 0.95rem;
  color: #3b3b3b;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.research-card .learn-more {
  background: #7fcfff;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.research-card .learn-more:hover {
  background: #58b3e6;
}
.site-footer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem 1rem 2rem;
  color: #3a4e8c;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-logo h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: #3DA9FC;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #cccccc;
  font-size: 0.85rem;
}
.footer-logo-img {
  max-width: 300px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  margin-top: -0.3rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}
.phone-call-btn {
  margin-top: 2rem;
  text-align: center; /* or right-align if preferred */
}

.btn-call {
  background: #007bff;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-call:hover {
  background: #3DA9FC;
}

.btn-call:hover {
  background: #3DA9FC;
}
/* Base styles for all devices */
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-banner {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }

  .about-text-img {
    flex-direction: column;
    gap: 1.5rem;
  }

  .glass-form,
  .glass-card {
    width: 100%;
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
/* Navbar Container Responsive */
/* GLASS NAVBAR */
.navbar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 20px 20px;
  z-index: 999;
  padding: 1rem 1.5rem;
}

.navbar-brand .brand-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #1e3a8a;
  text-transform: uppercase;
}

.navbar-brand .brand-sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: #5f7ea3;
  margin-top: -4px;
  letter-spacing: 0.05em;
}

.navbar-nav .nav-link {
  color: #1e3a8a !important;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0.75rem;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #2563eb !important;
}

.navbar-toggler {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
/* DROPDOWN */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: none;
  backdrop-filter: blur(12px);
}

.dropdown-item {
  color: #1e3a8a;
  font-weight: 500;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

/* MOBILE RESPONSIVE NAV */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 0.75rem;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}
.hero-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 1.5rem;
  max-width: 90%;
}

.hero-text.left-align {
  text-align: left;
  align-self: flex-start;
  margin-left: 5%;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 60vh;
  }

  .hero-text.left-align {
    margin-top: 2rem;
    margin-left: 1rem;
    text-align: center;
    align-self: center;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}
/* Shrink logo on small screens */
.navbar-brand img {
  height: 48px;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 36px;  /* Smaller for mobile */
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .brand-sub {
    font-size: 0.8rem;
  }
}
.navbar-toggler {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,51,102,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 40%;
  right: 8%;
  text-align: right;
  z-index: 2;
  max-width: 600px;
  color: white;
}

.hero-text h1 {
  font-size: 4.5vw;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  color: white;
  text-shadow: 0 0 8px #00bfff, 0 0 15px #00bfff;
}

.hero-subtext {
  font-size: 1.5vw;
  font-weight: 500;
  color: white;
  text-shadow: 0 0 8px #00bfff, 0 0 15px #00bfff;
}

.slide-left,
.slide-right {
  display: inline-block;
}

.slide-left {
  animation: slideFromLeft 7s ease-in;
}

.slide-right {
  animation: slideFromRight 8s ease-in-out 5s;
}

/* KEYFRAME ANIMATIONS */
@keyframes slideHoldLeft {
  0% { transform: translateX(-100%); opacity: 0; }
  20% { transform: translateX(0); opacity: 1; }
  70% { transform: translateX(0); opacity: 1; } /* Hold */
  100% { transform: translateX(-100%); opacity: 0; }
}

@keyframes slideHoldRight {
  0% { transform: translateX(100%); opacity: 0; }
  20% { transform: translateX(0); opacity: 1; }
  70% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* TEXT CLASSES */
.slide-left {
  display: inline-block;
  animation: slideHoldLeft 10s ease-in-out infinite;
}

.slide-right {
  display: inline-block;
  animation: slideHoldRight 10s ease-in-out infinite;
}
/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
  .hero-text {
    right: 5%;
    top: 35%;
    text-align: right;
  }

  .hero-text h1 {
    font-size: 7vw;
  }

  .hero-subtext {
    font-size: 4vw;
  }
}
.section-wrapper {
      padding: 60px 20px;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      max-width: 1200px;
      margin: auto;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    }

    .media-block {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      align-items: center;
      margin-bottom: 40px;
    }

    .media-block img,
    .media-block video {
      max-width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      flex: 1 1 480px;
    }

    .description {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
    }

    @media (max-width: 768px) {
      .media-block {
        flex-direction: column;
      }
    }
@media (max-width: 991.98px) {
  .video-image-stack {
    align-items: center;
    text-align: center;
  }
}
.text-white {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.glass-text {
  background: rgba(0, 0, 0, 0.45); /* Or try white with alpha for soft glass look */
  backdrop-filter: blur(8px);
  max-width: 600px;
  z-index: 2;
  position: relative;
}
.glass-overlay {
  background: rgba(0, 0, 0, 0.45); /* Semi-transparent black */
  backdrop-filter: blur(12px);     /* Soft blur behind text */
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  max-width: 600px;
  z-index: 2;
  position: relative;
}
.disclaimer {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 20px;
      margin-top: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .disclaimer h4 {
      margin-top: 0;
      color: #d97706;
    }