
/* ============================
   GLOBAL FONT SYSTEM
   ============================ */

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Headings – Elegant Medical Look */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
}

/* Section Labels (About Us, Our Programs, etc.) */
.section-label {
  font-family: 'Inter', sans-serif;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}


/* ============================
   ABOUT SECTION – PROFESSIONAL 3D EFFECT
   ============================ */

.about-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  position: relative;
}

.about-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(15, 118, 110, 0.15);
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(15, 118, 110, 0.04),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.about-card:hover::after {
  opacity: 1;
}

/* Icon depth */
.about-icon {
  transition: transform 0.35s ease;
}

.about-card:hover .about-icon {
  transform: translateZ(20px) scale(1.12);
}


/* ============================
   PROGRAMS – PROFESSIONAL 3D EFFECT
   ============================ */

.program-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  position: relative;
}

.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(15, 118, 110, 0.18);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(15, 118, 110, 0.04),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.program-card:hover::after {
  opacity: 1;
}

/* Icon 3D pop */
.program-icon {
  transition: transform 0.35s ease;
}

.program-card:hover .program-icon {
  transform: translateZ(25px) scale(1.15);
}
/* Floating Contact Buttons */
#floating-contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  opacity: 0;
  animation: showContactIcons 0.8s forwards;
}

/* Fade-in animation */
@keyframes showContactIcons {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn {
  background-color: #25D366;
}

.telephone-btn {
  background-color: #007BFF;
}

/* Icons */
.icon-img {
  width: 26px;
  height: 26px;
}

/* Pulse effect */
.pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: 50%;
  animation: pulse-animation 1.6s infinite;
  opacity: 0.6;
  z-index: -1;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/* ============================
   HEADER & LOGO POLISH
   ============================ */

/* Header container safety */
header {
  background-color: #ffffff;
}

/* Logo image – round & clear */
.site-logo {
  height: 64px;           /* Bigger logo */
  width: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}

/* Brand text beside logo */
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f3f4f;
}

.brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  letter-spacing: 0.5px;
}


/* ============================
   HERO SECTION – POSTER COLORS
   ============================ */

.hero-gradient {
  background: linear-gradient(
    135deg,
    #0b2c3d 0%,
    #0f3f4f 45%,
    #0e5a63 100%
  );
}

.hero-highlight {
  color: #67e8f9; /* soft cyan */
}

.hero-btn-primary {
  background-color: #ffffff;
  color: #0b2c3d;
}

.hero-btn-primary:hover {
  background-color: #f1f5f9;
}

.hero-btn-secondary {
  border: 1px solid #ffffff;
}

.hero-btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}


/* ============================
   IMAGE CONSISTENCY
   ============================ */

.section-image {
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  background-color: #f8fafc;
}


/* ============================
   RESPONSIVE REFINEMENTS
   ============================ */

@media (max-width: 768px) {
  .site-logo {
    height: 52px;
    width: 52px;
  }

  .brand-name {
    font-size: 1.1rem;
  }
}
/* Footer social icons */
.footer-social-icons {
  margin-top: 12px;
  display: flex;
  gap: 14px;
}

/* Common icon style */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Instagram */
.social-icon.instagram {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

/* Facebook */
.social-icon.facebook {
  background-color: #1877f2;
}

/* Hover effect */
.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
/* ============================
   CONTACT INFO CARD – STYLING
   ============================ */

.contact-card {
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.12);
  transform: translateY(-3px);
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f3f4f;
  margin-bottom: 24px;
}

/* List */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Icon */
.contact-icon {
  font-size: 1.2rem;
  color: #0f766e;
  margin-top: 2px;
}

/* Text */
.contact-label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.contact-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.contact-text a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 500;
}

.contact-text a:hover {
  text-decoration: underline;
  color: #0e5a63;
}
/* PROGRAM CARD – BASE */
.program-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.05),
    0 1px 2px rgba(15, 23, 42, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Top accent */
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #16a34a);
}

/* HOVER */
.program-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12),
    0 4px 8px rgba(15, 23, 42, 0.06);
}

/* =========================
   H3 – STRONG HEADING STYLE
   ========================= */
.program-card h3 {
 
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.4rem;
}

/* Underline accent for heading */
.program-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #16a34a);
  border-radius: 2px;
}

/* =========================
   P – SOFTER BODY TEXT
   ========================= */
.program-card p {
  color: #475569;              /* Slate-600 */
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Extra hover emphasis */
.program-card:hover h3 {
  color: #0f172a;              /* Slate-900 */
}

.program-card:hover p {
  color: #334155;              /* Slate-700 */
}
