/* --------------------
   Global Styles
-------------------- */
:root {
  --primary: #0b5ed7;
  --secondary: #0dcaf0;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
  --border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: #ffffff;
}

section {
  padding: 80px 6%;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

p {
  color: var(--gray);
}

button {
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* CTA buttons */
.primary-cta {
  background: var(--primary);
  color: #fff;
}

.secondary-cta {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* --------------------
   Hero Section
-------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  margin: 20px 0 30px;
  max-width: 520px;
}

.hero-image {
  position: relative;
}

.hero-image-img {
  width: 100%;
  border-radius: 16px;
}

.hero-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image-overlay h6 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0;
}

/* --------------------
   Origin Section
-------------------- */
.origin {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.origin-section-image img {
  width: 100%;
  border-radius: 16px;
}

.origin-section-primary-text {
  margin: 20px 0;
  font-weight: 500;
}

/* --------------------
   Advantages Section
-------------------- */
.advantages {
  background: var(--light);
}

/* Cards grid remains same */
.advantages-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Card layout */
.advantages .card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  display: flex;
  align-items: flex-start;
  gap: 20px;

  text-align: left;
}

/* Circular icon container */
.card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;

  background: #4c2a85; /* same color as tick */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tick icon */
.card-icon img {
  width: 24px;
  height: 24px;
}

/* Text styling */
.card-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.card-description {
  color: #64748b;
  line-height: 1.6;
}

/* --------------------
   Center of Excellence
-------------------- */
.coe-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.coe .card {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 0.9rem;
}
.coe-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

/* Main heading */
.coe-heading h2 {
  font-family: "Georgia", "Times New Roman", serif; /* serif look like image */
  font-size: 3rem;
  font-weight: 600;
  color: #6b5aa6; /* purple from image */
  margin-bottom: 16px;
}

/* Subtitle */
.coe-heading p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
  color: #6b7280; /* soft grey */
  line-height: 1.6;
}

/* --------------------
   Tech & Amenities
-------------------- */
/* Section background */
.tech-and-amenities {
  background: #6b63a6; /* purple background */
  padding: 100px 6%;
}

/* Section title */
.section-title {
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 60px;
}

/* Grid layout */
.tech-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Image card */
.tech-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Info cards */
.tech-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Card headings */
.tech-info-card h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.6rem;
  color: #6b63a6;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

/* Lists */
.tech-info-card ul {
  list-style: disc;
  padding-left: 18px;
}

.tech-info-card li {
  margin-bottom: 12px;
  color: #374151;
  line-height: 1.6;
  font-size: 0.95rem;
}
/* --------------------
   Doctors
-------------------- */
/* Section */
.doctors {
  padding: 100px 6%;
  background: #ffffff;
}

/* Section heading */
.doctors-title {
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.8rem;
  color: #6b63a6;
  margin-bottom: 60px;
}

/* Cards grid */
.doctor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card base */
.doctor-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

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

/* Top purple band */
.doctor-card-header {
  background: #9b95b8;
  color: #ffffff;
  text-align: center;
  padding: 28px 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Featured (middle card darker purple) */
.doctor-card.featured .doctor-card-header {
  background: #6b63a6;
}

/* Body */
.doctor-card-body {
  padding: 32px 28px;
  text-align: center;
}

/* Doctor name */
.doctor-card-body h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
  color: #6b63a6;
  margin-bottom: 8px;
}

/* Designation */
.designation {
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 8px;
}

/* Experience */
.experience {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 20px;
}

/* Profile link */
.profile-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b63a6;
  text-decoration: none;
}

.profile-link:hover {
  text-decoration: underline;
}

/* --------------------
   Global Patient Care
-------------------- */
.global-patient-care {
  padding: 80px 10%;
  background: #ffffff;
}

.global-patient-care-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.global-patient-care-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.global-patient-care-content h4 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #8b87b3;
  margin-bottom: 12px;
}

.global-patient-care-content h2 {
  font-size: 42px;
  color: #4a4a7d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.global-patient-care-content p {
  font-size: 16px;
  color: #6b6b6b;
  max-width: 520px;
  margin-bottom: 30px;
}

/* LIST */
.care-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
  margin-bottom: 35px;
  padding: 0;
  list-style: none;
}

.care-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: #4a4a7d;
}

/* HEAVY CHECKMARK (SVG from web) */
.care-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236b63b5' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM6.97 11.03a.75.75 0 0 0 1.08 0l3.99-3.99a.75.75 0 1 0-1.06-1.06L7.5 9.44 5.03 6.97a.75.75 0 1 0-1.06 1.06l3 3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* BUTTON */
.global-btn {
  padding: 14px 36px;
  background: #6b63b5;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.global-btn:hover {
  background: #5850a5;
}



/* --------------------
   Testimonials
-------------------- */
.testimonials {
  background: #fafafa;
  padding: 90px 8%;
  text-align: center;
}

.testimonials-content h2 {
  font-size: 42px;
  font-weight: 600;
  color: #6b63b5;
  margin-bottom: 12px;
}

.testimonials-content h4 {
  font-size: 17px;
  font-weight: 400;
  color: #777;
  margin-bottom: 50px;
}

/* Cards */
.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.testimonials .card {
  position: relative;
  background: #ffffff;
  padding: 48px 42px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Quote icon */
.quote-mark {
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 70px;
  color: #efeff7;
  font-family: serif;
  line-height: 1;
}

/* Text */
.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  font-family: "Georgia", serif;
  margin-bottom: 34px;
}

/* Author */
.testimonial-by {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-initial {
  font-weight: 600;
  color: #6b63b5;
  font-size: 18px;
}

.testimonial-name h4 {
  margin: 0;
  font-size: 18px;
  color: #6b63b5;
}

.testimonial-name p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #888;
}

/* CTA */
.read-more {
  display: inline-block;
  margin-top: 50px;
  font-size: 16px;
  color: #6b63b5;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

/* ===== Floating Sidebar ===== */
.contact-sidebar {
  position: fixed;
  top: 50%;
  right: 20px; /* Position on right side */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sidebar-icon {
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.sidebar-icon img {
  width: 28px;
  height: 28px;
}

.sidebar-icon:hover {
  transform: scale(1.1);
}

/* WhatsApp - green */
.sidebar-icon.whatsapp {
  background-color: #25D366;
}

/* Phone - blue */
.sidebar-icon.phone {
  background-color: #4A63D3;
}

/* Email - orange */
.sidebar-icon.email {
  background-color: #FF9800;
}

/* Icons turn white on hover */
.sidebar-icon:hover img {
  filter: brightness(0) invert(1);
}


/* --------------------
   Responsive Styles
-------------------- */
@media (max-width: 1024px) {
  .hero,
  .origin,
  .tech-cards {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }

  .advantages-cards,
  .doctor-cards,
 

  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .advantages-cards {
    grid-template-columns: 1fr;
  }

  .advantages .card {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .coe-heading h2 {
    font-size: 2.2rem;
  }

  .coe-heading p {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .tech-cards {
    grid-template-columns: 1fr;
  }

  .tech-image-card img {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .tech-info-card {
    padding: 28px;
  }
}
@media (max-width: 1024px) {
  .doctor-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .doctors-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 992px) {
  .global-patient-care-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .care-list {
    grid-template-columns: 1fr;
  }

  .care-list li {
    padding-left: 28px;
    text-align: left;
  }
}
@media (max-width: 900px) {
  .testimonials-cards {
    grid-template-columns: 1fr;
  }
}
/* Top Header Band */
.top-band {
  height: 40px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #ddd;
}

/* Home Icon */
.home-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.home-icon:hover {
  transform: scale(1.1);
}

/* Phone Number */
.phone-number {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}

/* 📱 Mobile Devices */
@media (max-width: 768px) {
  .top-band {
    height: auto;
    padding: 8px 12px;
  }

  .home-icon {
    width: 18px;
    height: 18px;
  }

  .phone-number {
    font-size: 13px;
  }
}

/* 📱 Very Small Screens */
@media (max-width: 480px) {
  .top-band {
    flex-direction: row;
  }

  .phone-number {
    font-size: 12px;
  }
}