/* --- Fonts aur Variables --- */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&family=Noto+Nastaliq+Urdu:wght@400;700&display=swap");

:root {
  --primary-blue: #00a9e0;
  --dark-navy: #002244;
  --bg-dark: #0a1120;
  --accent-green: #22c55e;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  scroll-behavior: smooth;
  color: #0f172a;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

.container-90 {
  width: 94%;
  max-width: 1700px;
  margin: 0 auto;
}

/* --- Professional Header & Branding Bar --- */
.hospital-branding-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  /* Modern Glass Effect */
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 2px solid #cbd5e1;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  transition: all 0.4s ease;
}

/* Logo & Branding */
.hospital-logo-img {
  width: 65px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hospital-logo-img:hover {
  transform: scale(1.08) rotate(2deg);
}

.hospital-title {
  font-size: 1.85rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  letter-spacing: -1.2px;
  line-height: 1;
}

.urdu-text-header {
  font-family: "Noto Nastaliq Urdu", serif;
  color: #059669;
  /* Emerald Green */
  font-size: 1rem;
  display: block;
  margin-top: 4px;
}

/* Contact Info Styling */
.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.info-label {
  font-size: 9px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: -2px;
}

.info-data {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.v-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
  margin: 0 25px;
}

/* Social Buttons & Interactions */
.social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f8fafc;
  color: #64748b;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid #f1f5f9;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Brand Colors on Hover */
.s-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.s-ig:hover {
  background: #e4405f;
  border-color: #e4405f;
}

.s-tt:hover {
  background: #000000;
  border-color: #000000;
}

.s-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
}

/* Micro-animations */
.info-group {
  transition: transform 0.3s ease;
  cursor: default;
}

.info-group:hover {
  transform: translateY(-2px);
}

.info-group:hover .icon-circle {
  transform: rotate(10deg);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
  .hospital-title {
    font-size: 1.4rem;
  }

  .hospital-logo-img {
    width: 50px;
  }
}

/* --- Professional Navbar Styling --- */
:root {
  --primary-blue: #2563eb;
  --dark-navy: #0f172a;
  --text-slate: #475569;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 2px solid #2563eb; /* Blue accent dividing line */
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 85px;
  width: 100%;
  z-index: 1050;
  height: 75px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-clinic-title {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  letter-spacing: -1.2px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-clinic-title:hover {
  color: #2563eb;
}

@media (max-width: 1200px) {
  .nav-clinic-title {
    font-size: 1.4rem;
  }
}

/* Clinical Badge & Pulse Animation */
.clinical-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Nav Links Base */
.nav-link-custom {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-slate);
  text-decoration: none;
  position: relative;
  padding: 12px 0;
  transition: color 0.3s ease;
}

.nav-link-custom i {
  font-size: 8px;
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--primary-blue);
}

.nav-link-custom:hover::after {
  width: 100%;
}

/* Dropdown Logic */
.nav-item-dropdown {
  position: relative;
}

.mega-menu-content {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: white;
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  z-index: 1002;
}

.nav-item-dropdown:hover .mega-menu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown:hover .nav-link-custom i {
  transform: rotate(180deg);
}

/* Mega Menu Internal Styles */
.mega-list a {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  padding: 9px 12px;
  display: block;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mega-list a:hover {
  background: #f8fafc;
  color: var(--primary-blue);
  padding-left: 18px;
}

.dropdown-header-custom {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-blue);
  letter-spacing: 1px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

/* Specialty Grid */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.grid-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

/* Featured Hub Link */
.featured-link-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eff6ff;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
}

.featured-link-nav span {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-blue);
}

.featured-link-nav:hover {
  background: #dbeafe;
}

/* Book Appointment Button */
.nav-cta-btn {
  background: var(--dark-navy);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  color: white;
}

/* --- Hero Section & Doctor Profile --- */
/* --- Hero Section Base --- */
.hero-section {
  padding-top: 195px;
  padding-bottom: 100px;
  background-color: #f8fafc;
  overflow: hidden;
}

/* --- Content Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-text {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* --- Image Layout & Effects --- */
.image-wrapper {
  position: relative;
  padding: 20px;
}

/* Background Glow */
.image-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 70%);
  z-index: -1;
}

.doctor-img-container {
  width: 650px;
  max-width: 100%;
  height: 650px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 6px solid white;
  background: #f8fafc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 576px) {
  .doctor-img-container {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.doctor-img-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.doctor-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

/* --- Badges & Tags --- */
.exp-badge {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  border: 4px solid white;
}

.stat-tag {
  position: absolute;
  top: 40px;
  right: -10px;
  background: white;
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-badge {
  position: absolute;
  bottom: 10px;
  left: -40px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 25px;
  border-radius: 24px;
  max-width: 270px;
  z-index: 10;
  border-left: 6px solid #2563eb;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 120px;
    text-align: center;
  }

  .flex {
    justify-content: center;
  }

  .quote-badge {
    left: 0;
    bottom: -20px;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }

  .stat-tag {
    right: 20px;
  }

  .doctor-profile-image {
    height: 450px;
  }
}

/* --- Diagnostics Slider --- */
.diag-section {
  background: radial-gradient(circle at top right, #1e293b, #0f172a);
  border-radius: 50px;
  margin: 40px 20px;
  padding: 100px 0;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-detail {
  transition: all 0.5s ease-in-out;
}

.test-detail.hidden {
  display: none;
}

.active-detail {
  display: block;
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- HINT: Lab Section Custom Enhancements --- */

.diag-section {
  background: radial-gradient(circle at top right,
      #1e293b,
      #0f172a);
  /* Dark gradient from your CSS */
  border-radius: 50px;
  margin: 40px 20px;
  padding: 100px 0;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 2.5rem;
  /* Large rounded corners */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  /* Smooth transition */
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Animation for Details */
.active-detail {
  display: block;
  animation: fadeInRight 0.8s ease-out;
  /* Custom animation from your file */
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.test-detail.hidden {
  display: none;
}

#lab .text-5xl {
  line-height: 1.1;
  letter-spacing: -1.5px;
}

#lab .text-3xl {
  color: #f8fafc;
  font-family: "Plus Jakarta Sans", sans-serif;
  /* Consistent font */
}

/* --- Infinite Scrolling Cards --- */
/* .scrolling-wrapper {
  overflow: hidden;
  padding: 40px 0;
  white-space: nowrap;
  position: relative;
}
.scrolling-content {
  display: inline-flex;
  animation: scroll-left 25s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.info-card {
  flex: 0 0 auto;
  width: 350px;
  background: white;
  margin: 0 15px;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  white-space: normal;
} */

/* --- Professional Form Styling --- */
.custom-input {
  border: none !important;
  background-color: #f8fafc !important;
  padding: 15px 20px !important;
  border-radius: 15px !important;
  font-size: 15px;
}

.custom-input:focus {
  background-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  border: 1px solid #2563eb !important;
}

@media (max-width: 1200px) {
  .hospital-branding-bar {
    display: none;
  }

  .glass-nav {
    top: 0;
  }

  .hero-section {
    padding-top: 120px;
  }
}

/* --- HINT: Booking Section Specific Styles --- */

#booking .text-4xl {
  line-height: 1.2;
  letter-spacing: -1px;
}

/* Rounded corners utility since you are not using Tailwind */
.rounded-\[3\.5rem\] {
  border-radius: 3.5rem !important;
}

/* Custom Booking Submit Button */
.btn-booking-submit {
  width: 100%;
  background-color: var(--dark-navy);
  color: white;
  padding: 20px;
  border-radius: 1.25rem;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-booking-submit:hover {
  background-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 169, 224, 0.3);
  color: white;
}

/* Form Select Styling Adjustment */
select.custom-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}

/* --- About Section Styles --- */
.about-experience-box {
  transition: transform 0.4s ease;
}

.about-experience-box:hover {
  transform: translateY(-5px);
}

.hidden-content {
  display: none;
  /* Shuru mein content chhupa hoga */
  animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#showMoreBtn {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  cursor: pointer;
}

.about-text-wrapper p {
  text-align: justify;
}

/* Section Heading Alignment */
.text-center.mb-16 {
  margin-bottom: 4rem !important;
}

/* Ensure headings in the row match your design */
#about .text-5xl {
  font-size: 3rem;
  line-height: 1.1;
  color: var(--dark-navy);
}

#about .text-4xl {
  color: var(--dark-navy);
}

/* Utilities for bootstrap gaps if not working */
.gap-4 {
  gap: 1rem !important;
}

.shrink-0 {
  flex-shrink: 0 !important;
}

/* -----contact section css------------ */
/* --- HINT: Contact Section Main Container --- */
#contact {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* --- HINT: Contact Card Base Styling --- 
   Card ko rounded aur transition effect diya hai takay hover par lift ho sakay.
*/
.contact-simple-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 30px;
  /* Modern rounded corners */
  text-align: center;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  /* Smooth hover effect */
  height: 100%;
  /* Column ki poori height cover karne ke liye */
}

.contact-simple-card:hover {
  transform: translateY(-10px);
  /* Card thora upar uthega */
  border-color: var(--primary-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* --- HINT: Icon Box Styling --- 
   Icon ko center karne aur specific shape dene ke liye.
*/
.contact-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

/* --- HINT: Icon Background Colors --- */
.blue-soft-bg {
  background-color: #f0f9ff;
  color: var(--primary-blue);
}

.red-soft-bg {
  background-color: #fff1f2;
  color: #e11d48;
}

.white-soft-bg {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* --- HINT: Middle Highlighted Card --- 
   Aapke variables (var--dark-navy) ka istemal kiya hai taake ye card stand-out kare.
*/
.highlighted-card {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #004080 100%);
  border: none;
}

/* --- HINT: Typography (Text Styles) --- */
.contact-card-title {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark-navy);
  /* Dark theme color */
}

.contact-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* --- HINT: Links & Numbers --- */
.contact-card-link {
  font-weight: 800;
  text-decoration: none;
  color: var(--primary-blue);
  font-size: 1.1rem;
  transition: 0.3s;
}

.contact-card-link:hover {
  opacity: 0.8;
  color: var(--primary-blue);
}

/* Responsive adjustment for highlighted card on mobile */
@media (max-width: 768px) {
  .highlighted-card {
    transform: scale(1) !important;
    margin: 10px 0;
  }
}

/* --- HINT: Footer Specific Professional Styles --- */
/* --- Premium Footer Enhancements --- */

.hospital-footer {
  background: #050a15;
  /* Deeper Dark for more professional feel */
  padding-top: 80px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Subscription Form */
.sub-input {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  padding: 15px 25px !important;
  border-radius: 15px !important;
  font-size: 0.9rem;
}

.btn-subscribe {
  background: var(--primary-blue);
  color: white;
  padding: 0 30px;
  border-radius: 15px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
}

.btn-subscribe:hover {
  background: white;
  color: var(--dark-navy);
}

/* Timing Card & Pulse Effect */
.timing-card {
  border-left: 4px solid var(--primary-blue) !important;
}

.pulse-icon {
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Footer Description */
.footer-description-big {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}

.footer-section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Social Buttons */
.social-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: 0.3s ease;
}

.social-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-5px);
}

/* ================================================================
   PREMIUM FOOTER STYLES (Ali Ahmed Khan Hospital - Neuro Clinic)
   ================================================================ */

.hospital-footer {
  background-color: #050a15 !important;
  /* Professional Deep Dark Navy */
  padding-top: 80px;
  color: #cbd5e1;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* --- Branding Hierarchy (Headings) --- */
.footer-neuro-heading {
  font-size: 3rem;
  /* Sab se bari heading */
  font-weight: 900;
  color: #ffffff !important;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

.footer-hospital-subheading {
  font-size: 1.5rem;
  /* Subheading */
  font-weight: 700;
  color: var(--primary-blue, #00a9e0);
  /* Hospital color */
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-description-big {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 90%;
}

/* --- Email Subscription Section (High Visibility) --- */
.email-highlight-container {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.email-highlight-container:focus-within {
  border-color: var(--primary-blue, #00a9e0);
  box-shadow: 0 0 25px rgba(0, 169, 224, 0.2);
}

.input-group-custom {
  display: flex;
  align-items: center;
  background: #0f172a;
  /* Solid Dark Contrast */
  border-radius: 15px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.envelope-icon {
  color: var(--primary-blue, #00a9e0);
  font-size: 1.2rem;
}

.sub-input {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  /* Input text visibility fix */
  height: 60px;
  width: 100%;
  padding-left: 15px;
  font-size: 1rem;
  outline: none !important;
}

.sub-input::placeholder {
  color: #475569 !important;
  /* Clear placeholder */
  opacity: 1;
}

.btn-subscribe-premium {
  background: var(--primary-blue, #00a9e0);
  color: white !important;
  border: none;
  padding: 0 35px;
  border-radius: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-subscribe-premium:hover {
  background: white;
  color: #050a15 !important;
  transform: translateY(-3px);
}

/* --- Navigation Links & Hover --- */
.footer-section-title {
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: var(--primary-blue, #00a9e0);
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #94a3b8 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: 0.3s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #ffffff !important;
  /* Glow on hover */
  transform: translateX(10px);
}

/* --- Timing Card & Contact --- */
.timing-card-premium {
  background: rgba(0, 169, 224, 0.05);
  border: 1px solid rgba(0, 169, 224, 0.12);
  border-left: 5px solid var(--primary-blue, #00a9e0);
  border-radius: 15px;
}

.timing-value {
  font-weight: 800;
  font-size: 1.4rem;
  color: white;
}

.pulse-icon-green {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: footerPulse 2s infinite;
}

@keyframes footerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 800;
  display: block;
}

.contact-value-white {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.15rem;
}

.icon-circle-blue {
  width: 45px;
  height: 45px;
  background: rgba(0, 169, 224, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue, #00a9e0);
}

/* --- Social Buttons --- */
.social-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: 0.3s ease;
}

.social-btn:hover {
  background: var(--primary-blue, #00a9e0);
  color: white;
  transform: translateY(-5px) rotate(8deg);
}

/* --- Bottom Bar & Legal --- */
.footer-bottom-bar {
  margin-top: 20px;
}

.copyright-text strong {
  color: white;
}

.legal-link-footer {
  color: #475569;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.legal-link-footer:hover {
  color: white;
}

/* Responsiveness */
@media (max-width: 992px) {
  .footer-neuro-heading {
    font-size: 2.2rem;
  }

  .subscription-form {
    flex-direction: column;
  }

  .btn-subscribe-premium {
    height: 55px;
    margin-top: 10px;
  }
}

/* ================================================================
   GALLERY PAGE & LIGHTBOX CUSTOM STYLES 
   (Ali Ahmed Khan Hospital - Moments & Events)
   ================================================================ */

/* --- Header Section --- */
.gallery-hero-header-small {
  padding-top: 180px;
  /* Space for Branding Bar + Navbar */
  padding-bottom: 30px;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.info-label-gallery {
  color: var(--primary-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  display: block;
  margin-bottom: 10px;
}

/* --- Mini Event Cards Grid --- */
.event-mini-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 8px;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.event-mini-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 34, 68, 0.1);
  border-color: var(--primary-blue);
}

.event-img-container {
  position: relative;
  height: 180px;
  /* Compact professional height */
  border-radius: 15px;
  overflow: hidden;
  background: #f1f5f9;
}

.event-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.event-mini-wrapper:hover .event-img-container img {
  transform: scale(1.1);
}

.event-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 34, 68, 0.85);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}

.event-mini-info {
  padding: 12px 5px 5px;
}

.event-mini-info h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 3px;
  line-height: 1.2;
}

.event-mini-info p {
  font-size: 11px;
  color: #64748b;
  margin: 0;
}

/* --- Upcoming Events Sidebar --- */
.upcoming-sidebar {
  background: #ffffff;
  border-radius: 25px;
  padding: 25px;
  position: sticky;
  top: 120px;
  /* Sticky scroll behavior */
  border: 1px solid #f1f5f9;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.upcoming-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e2e8f0;
}

.u-date {
  width: 50px;
  height: 50px;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.u-day {
  font-weight: 800;
  color: var(--primary-blue);
  font-size: 16px;
  line-height: 1;
}

.u-month {
  font-size: 9px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.u-details h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}

.u-details p {
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
}

.promo-box-navy {
  background: var(--dark-navy);
  padding: 20px;
  border-radius: 20px;
  color: white;
  margin-top: 10px;
}

.promo-box-navy h6 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #fff;
}

/* --- GLightbox Customization (No Scroll Popup) --- */
.gslide-image img {
  max-height: 90vh !important;
  /* Screen height ke mutabiq auto-fit */
  max-width: 90vw !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  /* Image kategi nahi */
  border-radius: 12px;
}

.glightbox-container .goverlay {
  background: rgba(0, 34, 68, 0.95) !important;
  /* Darker navy overlay */
  backdrop-filter: blur(10px);
}

/* --- Mobile Fixes --- */
@media (max-width: 991px) {
  .gallery-hero-header-small {
    padding-top: 150px;
  }

  .event-mini-wrapper {
    margin-bottom: 10px;
  }

  .upcoming-sidebar {
    position: relative;
    top: 0;
    margin-top: 30px;
  }
}

/* --- Refined Blog Toolbar & Cards --- */

.blog-hero-refined {
  padding-top: 180px;
  padding-bottom: 50px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.blog-toolbar {
  display: flex;
  gap: 15px;
  background: #f8fafc;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.premium-search {
  position: relative;
  width: 100%;
}

.premium-search i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
}

.premium-search input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border-radius: 15px;
  border: none;
  background: #fff;
  font-size: 14px;
  outline: none;
}

.premium-dropdown {
  padding: 12px 20px;
  border-radius: 15px;
  border: none;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-navy);
  cursor: pointer;
  outline: none;
}

/* --- Card Professional Look --- */
.blog-card-pro {
  background: #fff;
  border-radius: 30px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  height: 100%;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-pro:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 34, 68, 0.08);
  border-color: var(--primary-blue);
}

.card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-cat {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-blue);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.play-button-pro {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-body-pro {
  padding: 30px;
}

.meta-data {
  display: flex;
  gap: 15px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.4;
  margin-bottom: 15px;
}

.card-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Detail Button Professional */
.btn-detail-pro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-navy);
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-detail-pro:hover {
  background: var(--primary-blue);
  transform: translateX(5px);
}

.video-btn {
  background: var(--primary-blue);
}

.video-btn:hover {
  background: var(--dark-navy);
}

/* --- Professional Blog Toolbar --- */
.blog-hero-refined {
  padding-top: 180px;
  padding-bottom: 40px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.blog-toolbar {
  display: flex;
  gap: 15px;
  background: #f8fafc;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.premium-search {
  position: relative;
}

.premium-search i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
}

.premium-search input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border-radius: 15px;
  border: none;
  background: #fff;
  font-size: 14px;
  outline: none;
}

.premium-dropdown {
  padding: 12px 20px;
  border-radius: 15px;
  border: none;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-navy);
  cursor: pointer;
  outline: none;
}

/* --- Blog Cards --- */
.blog-card-pro {
  background: #fff;
  border-radius: 30px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  height: 100%;
  transition: 0.4s ease;
}

.blog-card-pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 34, 68, 0.08);
}

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button-pro {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 55px;
  height: 55px;
  background: #fff;
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-body-pro {
  padding: 25px;
}

.card-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.4;
  margin-bottom: 15px;
}

.btn-detail-pro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-detail-pro:hover {
  background: var(--primary-blue);
  transform: translateX(5px);
}

.video-btn {
  background: var(--primary-blue);
}

/* --- Sidebar & Assistant --- */
.assistant-card-premium {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #003366 100%);
  border-radius: 25px;
  padding: 25px;
  color: white;
}

.assistant-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.assistant-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.assistant-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-assist-wa {
  background: #25d366;
  color: #fff !important;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.btn-assist-call {
  background: var(--primary-blue);
  color: #fff !important;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.news-mini-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.news-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.news-dot.green {
  background: #22c55e;
}

.news-text a {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-navy);
  text-decoration: none;
  display: block;
  line-height: 1.3;
}

.news-text span {
  font-size: 10px;
  color: #94a3b8;
}

/* --- Blog Detail Page Styling --- */
.cat-pill-static {
  background: var(--primary-blue);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.share-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.article-rich-text p {
  margin-bottom: 1.5rem;
}

.main-article-img {
  overflow: hidden;
}

.main-article-img img {
  transition: transform 0.5s ease;
}

.main-article-img:hover img {
  transform: scale(1.02);
}

.related-post a {
  text-decoration: none;
  transition: 0.3s;
}

/* Breadcrumb Styling */
.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #cbd5e1;
  font-weight: 400;
}

/* --- Research Specific Styles --- */
.badge-research {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #6b21a8;
  /* Deep Purple for Academic feel */
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 10;
}

.research-card-pro {
  background: #fff;
  border-radius: 30px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  height: 100%;
  transition: 0.4s ease;
}

.research-card-pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(107, 33, 168, 0.08);
  border-color: #6b21a8;
}

.btn-research-pro {
  display: inline-flex;
  align-items: center;
  background: #6b21a8;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.archive-list {
  list-style: none;
  padding: 0;
}

.archive-list li a {
  display: block;
  padding: 10px 15px;
  background: #fff;
  margin-bottom: 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-navy);
  text-decoration: none;
  border: 1px solid #f1f5f9;
}

.archive-list li a:hover {
  background: #fdf4ff;
  border-color: #d8b4fe;
  color: #6b21a8;
}

.bg-navy {
  background: #002244;
}

.text-navy {
  color: #002244;
}

.research-section h3 span {
  font-family: 'Playfair Display', serif;
}

.article-rich-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.5px;
}

/* --- Research Gallery Horizontal Scroll --- */
.research-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 25px;
  padding-top: 10px;
  scrollbar-width: thin;
  scrollbar-color: #6b21a8 #f1f5f9;
}

/* Chrome, Safari and Edge Scrollbar */
.research-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.research-scroll-container::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.research-scroll-container::-webkit-scrollbar-thumb {
  background: #6b21a8;
  border-radius: 10px;
}

.research-scroll-item {
  min-width: 280px;
  flex-shrink: 0;
}

.figure-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 10px;
  border-radius: 25px;
  transition: 0.3s ease;
  position: relative;
}

.figure-card:hover {
  border-color: #280c8e;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(107, 33, 168, 0.1);
}

.figure-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 12px;
}

.fig-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #6b21a8;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 7px;
  text-transform: uppercase;
  z-index: 5;
}

.fig-desc {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
  font-style: italic;
  margin: 0;
  padding: 0 5px;
}



/* Custom Global Styles for International Page */
:root {
  --indigo-primary: #4f46e5;
  --dark-navy: #0a192f;
  --slate-text: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.9);
}

.hero-section-global {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pattern-overlay {
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
}

.sub-heading {
  color: var(--indigo-primary);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* Button Custom Styles */
.btn-primary-custom {
  background: var(--indigo-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: #4338ca;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-outline-custom {
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: 2px solid #e2e8f0;
  font-weight: 700;
  color: var(--slate-text);
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* International Cards Styling */
.intl-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.intl-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
  border-color: var(--indigo-primary);
}

.icon-box-indigo,
.icon-box-dark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-box-indigo {
  background: var(--indigo-primary);
  color: white;
}

.icon-box-dark {
  background: #0f172a;
  color: white;
}

.card-number {
  font-weight: 900;
  font-size: 3.75rem;
  color: #f1f5f9;
  transition: color 0.3s ease;
}

/* List Points */
.points-list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #334155;
}

.points-list i {
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Card Links */
.card-link-indigo,
.card-link-dark {
  font-weight: 900;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.card-link-indigo {
  color: var(--indigo-primary);
}

.card-link-dark {
  color: #0f172a;
}

.card-link-indigo:hover,
.card-link-dark:hover {
  gap: 12px;
}