﻿/* ============================================================
   Dental Planet – Custom CSS
   Color Palette (from logo):
   Primary:  #0077B6 (ocean blue)
   Accent:   #00B4D8 (teal / cyan)
   Dark:     #03045E (deep navy)
   Light:    #CAF0F8 (sky tint)
   White:    #ffffff
   Text:     #1a1a2e
============================================================ */

/* ─── Root Variables ─────────────────────────────────────── */
:root {
  --dp-primary: #005F96;
  --dp-accent: #00A8CC;
  --dp-gold: #F5A623;
  --dp-dark: #020F3A;
  --dp-navy: #012D6E;
  --dp-white: #ffffff;
  --dp-text: #334155;
  --dp-gray: #F8FBFF;
  --dp-border: #E2E8F0;
  --dp-radius: 12px;
  --dp-shadow: 0 10px 40px rgba(0, 95, 150, 0.08);
  --dp-font: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ─── Animated Smart Background ─── */
@keyframes smartGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.smart-bg-animated {
  background: linear-gradient(-45deg, #020F3A, #012D6E, #005F96, #020F3A);
  background-size: 400% 400%;
  animation: smartGradient 15s ease infinite;
}

.smart-bg-light {
  background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
}

.smart-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--dp-font);
  color: var(--dp-text);
  overflow-x: hidden;
  background-color: var(--dp-gray);
}

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dp-gray);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ─── Navbar ─────────────────────────────────────────────── */
.dp-navbar {
  background: rgba(3, 4, 94, 0.97) !important;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1050;
}

.dp-navbar .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dp-navbar .nav-link:hover {
  color: var(--dp-accent) !important;
  background: rgba(0, 180, 216, 0.1);
}

.dp-navbar .nav-link.active {
  color: var(--dp-accent) !important;
}

.dp-logo {
  width: 200px;
  /* Recommended logo width */
  max-height: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.dp-logo:hover {
  transform: scale(1.03);
}

.dp-toggler {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.dp-toggler .fa-bars {
  color: #fff;
  font-size: 1.1rem;
}

/* CTA Nav Button */
.dp-btn-nav {
  background: linear-gradient(135deg, var(--dp-primary), var(--dp-accent)) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
  transition: all 0.3s ease !important;
}

.dp-btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.5) !important;
}

/* ─── Buttons ────────────────────────────────────────────── */
.dp-btn-primary {
  background: linear-gradient(135deg, var(--dp-primary), var(--dp-accent));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.dp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
  color: #fff;
}

.dp-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.dp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Utility */
.dp-text-primary {
  color: var(--dp-primary) !important;
}

.dp-highlight {
  color: var(--dp-accent);
}

/* ─── Banner Overlay ─────────────────────────────────────── */
.dp-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(3, 4, 94, 0.55) 0%, rgba(0, 119, 182, 0.35) 100%);
  padding: 20px;
}

.dp-banner-overlay h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

.dp-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 24px;
  font-weight: 400;
}

.dp-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Sections ───────────────────────────────────────────── */
#service,
#doctors,
#photo-gallery,
#before-after-gallery,
#why-choose-us,
#faqs,
#about-us,
#appointment,
#our-location,
#feedback,
#global-patients-gallery {
  padding: 60px 0;
}

section:nth-child(even) {
  background: var(--dp-gray);
}

/* Section Title */
.sec-title h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dp-dark);
  border-left: 4px solid var(--dp-accent);
  padding-left: 14px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.sec-title p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Accordion */
.accordion-button {
  font-size: 0.95rem;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--dp-primary), var(--dp-accent));
  color: #fff !important;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(10);
}

.accordion-button span.fw-bold {
  color: var(--dp-accent);
  margin-right: 10px;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) span.fw-bold {
  color: rgba(255, 255, 255, 0.9);
}

/* ─── Service Placeholder ────────────────────────────────── */
.dp-service-placeholder {
  background: linear-gradient(135deg, var(--dp-light), #e0f4ff);
  border-radius: var(--dp-radius);
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.dp-service-placeholder i {
  font-size: 2.5rem;
  color: var(--dp-primary);
  opacity: 0.7;
}

/* ─── Doctor Placeholder ─────────────────────────────────── */
.dp-dr-placeholder {
  background: linear-gradient(135deg, var(--dp-light), #cce8fb);
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--dp-radius);
}

.dp-dr-placeholder i {
  font-size: 3rem;
  color: var(--dp-primary);
  opacity: 0.6;
}

/* ─── Address Box ────────────────────────────────────────── */
.dp-address-box {
  background: var(--dp-light);
  border-radius: var(--dp-radius);
  padding: 14px 16px;
  border-left: 4px solid var(--dp-primary);
}

/* ─── Google Reviews ─────────────────────────────────────── */
.dp-reviews-wrapper {
  padding: 10px 0;
}

.dp-google-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dp-google-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dp-dark);
}

.dp-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dp-stars i {
  color: #fbbc04;
  font-size: 1.1rem;
}

.dp-rating-text {
  margin-left: 6px;
  font-size: 0.9rem;
  color: #555;
}

.dp-rating-text a {
  color: var(--dp-primary);
  text-decoration: none;
}

.dp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.dp-review-card {
  background: #fff;
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  padding: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.06);
}

.dp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dp-shadow);
}

.dp-review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.dp-reviewer-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--dp-primary), var(--dp-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.dp-reviewer-info {
  display: flex;
  flex-direction: column;
}

.dp-reviewer-info strong {
  font-size: 0.9rem;
  color: var(--dp-dark);
}

.dp-review-time {
  font-size: 0.75rem;
  color: #888;
}

.dp-review-stars {
  margin-bottom: 8px;
}

.dp-review-stars i {
  color: #fbbc04;
  font-size: 0.9rem;
}

.dp-review-text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ─── Appointment Form ───────────────────────────────────── */
.appointment-form.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--dp-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--dp-shadow);
}

.form-header {
  background: linear-gradient(135deg, var(--dp-dark), var(--dp-navy));
  color: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 4px;
}

.form-header h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.form-header p {
  font-size: 0.83rem;
  opacity: 0.85;
  margin: 2px 0 0;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--dp-accent);
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.2);
}

.required {
  color: #e63946;
}

.submit-btn .btn-primary {
  background: linear-gradient(135deg, var(--dp-primary), var(--dp-accent)) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.35);
  transition: all 0.3s ease !important;
}

.submit-btn .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.45) !important;
}

.helper-note {
  color: #777;
  font-size: 0.8rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.trust-badges span {
  background: linear-gradient(135deg, var(--dp-primary), var(--dp-accent));
  color: #fff;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.appointment-info a {
  color: var(--dp-primary);
  text-decoration: none;
  font-weight: 500;
}

.appointment-info a:hover {
  color: var(--dp-accent);
}

.section-tag {
  background: var(--dp-light);
  color: var(--dp-primary);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── Footer ─────────────────────────────────────────────── */
.dp-footer {
  background: linear-gradient(135deg, var(--dp-dark) 0%, var(--dp-navy) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 60px;
}

.footer-title {
  color: var(--dp-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  line-height: 1.7;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  margin-bottom: 6px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--dp-accent);
}

.footer-links.two-col {
  columns: 2;
  column-gap: 10px;
}

.footer-line {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.footer-line i {
  color: var(--dp-accent);
  margin-right: 8px;
}

.footer-line a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-line a:hover {
  color: var(--dp-accent);
}

.footer-strong {
  font-weight: 600;
  color: #fff !important;
}

.footer-email a {
  word-break: break-all;
}

.footer-subline {
  display: block;
  font-size: 0.78rem;
  opacity: 0.7;
  margin-top: 3px;
}

.badge-pill {
  background: rgba(0, 180, 216, 0.2);
  color: var(--dp-accent);
  border: 1px solid rgba(0, 180, 216, 0.4);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-right: 6px;
  display: inline-block;
  margin-bottom: 6px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--dp-accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--dp-accent);
}

.dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-block;
}

/* ─── Why Choose Us ──────────────────────────────────────── */
.why-choose-item {
  background: #fff;
  border-radius: var(--dp-radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--dp-border);
  transition: all 0.3s ease;
  height: 100%;
}

.why-choose-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--dp-shadow);
  border-color: var(--dp-accent);
}

.why-choose-icon {
  background: var(--dp-light);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.why-choose-icon img {
  max-width: 40px;
}

.why-choose-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dp-dark);
  margin-bottom: 8px;
}

.why-choose-item p {
  font-size: 0.87rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .dp-banner-overlay h1 {
    font-size: 1.6rem;
  }

  .dp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-links.two-col {
    columns: 1;
  }

  .appointment-form.glass-card {
    padding: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #service .col-6 {
    padding: 6px;
  }
}

/* ─── SweetAlert Customization ───────────────────────────── */
.swal2-confirm {
  background: linear-gradient(135deg, var(--dp-primary), var(--dp-accent)) !important;
  border-radius: 50px !important;
}

/* -----------------------------------------------------------
   ES ─ Google Reviews (Dark Split Layout)
   ----------------------------------------------------------- */

.es-review-section.dark-theme {
  background: #2a2a2a;
  padding: 80px 0;
  color: #ffffff;
}

.es-info-panel h2.es-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.es-info-panel p.es-desc {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.es-stats-badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.es-map-link {
  background: #000;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none !important;
  border: 1px solid #444;
  transition: all 0.2s;
}

.es-map-link:hover {
  background: #222;
  border-color: #666;
  color: #00B4D8;
}

/* Review Card (Dark) */
.es-card.dark {
  background: #000;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.es-card-wrap {
  height: 100%;
}

.es-card.dark:hover {
  transform: translateY(-5px);
  border-color: #555;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.es-card.dark .es-author {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

.es-card.dark .es-date {
  color: #888;
  font-size: 0.75rem;
}

.es-card.dark .es-text {
  color: #bbbbbb;
  font-size: 0.88rem;
  margin: 12px 0;
}

/* Truncation */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.es-see-more-link {
  color: #00B4D8;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none !important;
}

.es-see-more-link:hover {
  color: #00d2ff;
  text-decoration: underline !important;
}

/* Modal / Lightbox (Premium Light Redesign) */
.es-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 15, 58, 0.85);
  /* Deep navy tint overlay */
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.es-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.es-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 650px;
  border-radius: 24px;
  padding: 45px;
  position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  border: 1px solid #e2e8f0;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.es-modal-overlay.visible .es-modal-card {
  transform: translateY(0);
}

.es-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  color: #64758B;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.es-modal-close:hover {
  background: #e2e8f0;
  color: #020F3A;
  transform: rotate(90deg);
}

.es-slider-container .es-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #000;
  border: 1px solid #444;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
}

.es-slider-container .es-arrow:hover {
  background: #222;
  color: #00B4D8;
  border-color: #00B4D8;
}

.es-prev {
  left: -22px;
}

.es-next {
  right: -22px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .es-info-panel {
    text-align: center;
    margin-bottom: 40px;
  }

  .es-stats-badge {
    justify-content: center;
  }

  .es-prev {
    left: 0;
  }

  .es-next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .es-modal-card {
    padding: 25px;
  }

  .es-arrow {
    display: none !important;
  }
}

.grw-card-header {
  display: flex;
}

/* ═══════════════════════════════════════════════════════════════
   SMART COLOR UPGRADE – More premium, sophisticated palette
   ═══════════════════════════════════════════════════════════════ */

/* Updated root — richer, more sophisticated values */
:root {
  --dp-primary: #005F96;
  /* deeper, more premium blue */
  --dp-accent: #00A8CC;
  /* refined teal */
  --dp-gold: #F5A623;
  /* warmth – CTA highlights */
  --dp-dark: #020F3A;
  /* near-black navy */
  --dp-navy: #012D6E;
  /* rich navy */
  --dp-light: #E8F4FE;
  /* cooler sky tint */
  --dp-gray: #F4F7FB;
  /* page alternate bg */
  --dp-surface: #FFFFFF;
  --dp-border: #D0E2F7;
  --dp-text: #1B1E3D;
  --dp-text-muted: #64758B;
  --dp-radius: 12px;
  --dp-shadow: 0 8px 40px rgba(0, 95, 150, 0.13);
  --dp-shadow-sm: 0 2px 12px rgba(0, 95, 150, 0.08);
}

/* ── Appointment page – gradient hero background ───────────── */
.appointment-section {
  background: linear-gradient(135deg, #020F3A 0%, #012D6E 60%, #005F96 100%);
  padding: 70px 0;
  position: relative;
}

.appointment-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300A8CC' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* Info panel (left) on appointment page */
.appointment-section .sec-title h2 {
  color: #fff;
  border-left-color: var(--dp-gold);
}

.appointment-section .sec-title p {
  color: rgba(255, 255, 255, 0.82);
}

.appointment-section .section-tag {
  background: rgba(245, 166, 35, 0.2);
  color: var(--dp-gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.appointment-section .trust-badges span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.appointment-section .appointment-info a {
  color: var(--dp-accent);
}

.appointment-section .appointment-info i {
  color: var(--dp-gold);
}

.appointment-section .dp-address-box {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--dp-gold);
  color: rgba(255, 255, 255, 0.85);
}

/* Form card – glass-morphism */
.appointment-form.glass-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.form-header {
  background: linear-gradient(135deg, var(--dp-dark), var(--dp-navy));
  border-radius: 10px;
  padding: 18px 20px;
  border-bottom: 3px solid var(--dp-gold);
}

/* Submit button – gold gradient */
.submit-btn .btn-primary {
  background: linear-gradient(135deg, #F5A623, #E8920F) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4) !important;
}

.submit-btn .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 166, 35, 0.5) !important;
}

/* ── Section titles across site ────────────────────────────── */
.sec-title h2 {
  border-left-color: var(--dp-gold);
}

/* ── CTA primary button upgrade ──────────────────────────────*/
.dp-btn-primary {
  background: linear-gradient(135deg, var(--dp-primary), var(--dp-accent));
  box-shadow: 0 4px 16px rgba(0, 95, 150, 0.3);
}

.dp-btn-primary:hover {
  background: linear-gradient(135deg, #004F80, #008BA8);
  box-shadow: 0 8px 28px rgba(0, 95, 150, 0.45);
}

/* ── Nav button upgrade ─────────────────────────────────────*/
.dp-btn-nav {
  background: linear-gradient(135deg, var(--dp-gold), #E8920F) !important;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4) !important;
  color: #fff !important;
}

.dp-btn-nav:hover {
  box-shadow: 0 6px 22px rgba(245, 166, 35, 0.55) !important;
}

/* ── Stat cards accent upgrade ──────────────────────────────*/
.adp-stat-card {
  border-top-color: var(--dp-gold) !important;
}

/* ── Inner page hero (Privacy, Terms) ───────────────────────*/
.dp-inner-hero {
  background: linear-gradient(135deg, var(--dp-dark) 0%, var(--dp-navy) 100%);
  padding: 50px 0 40px;
  color: #fff;
}

.dp-inner-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 6px;
}

.dp-inner-hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin: 0;
}

.dp-breadcrumb {
  margin-bottom: 12px;
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.4);
}

.dp-breadcrumb .breadcrumb-item a {
  color: var(--dp-accent);
  text-decoration: none;
}

.dp-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Page content prose card ─────────────────────────────── */
.dp-page-content {
  padding: 60px 0 80px;
}

.dp-prose-card {
  background: #fff;
  border-radius: 16px;
  padding: 44px 48px;
  box-shadow: var(--dp-shadow);
  border: 1px solid var(--dp-border);
  line-height: 1.85;
  color: var(--dp-text);
}

.dp-prose-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dp-dark);
  border-left: 4px solid var(--dp-gold);
  padding-left: 14px;
  margin-bottom: 18px;
}

.dp-prose-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dp-primary);
  margin-top: 28px;
  margin-bottom: 10px;
}

.dp-prose-card p,
.dp-prose-card li {
  font-size: 0.95rem;
  color: #444;
}

.dp-prose-card ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.dp-prose-card ul li {
  margin-bottom: 6px;
}

.dp-prose-card em {
  color: #888;
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .dp-prose-card {
    padding: 24px 18px;
  }

  .dp-prose-card h2 {
    font-size: 1.3rem;
  }

  .appointment-section {
    padding: 40px 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FIX: Footer logo visibility (white bg so logo shows on dark footer)
   ═══════════════════════════════════════════════════════════════ */
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 200px;
  max-height: 60px;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION COLOR UPGRADE – distinct, premium per-section palette
   ═══════════════════════════════════════════════════════════════ */

/* Remove the generic nth-child alternating rule – control each section directly */
section:nth-child(even) {
  background: transparent;
}

/* 1. Hero / Banner – full bleed, handled by slider */
#banner {
  background: #020F3A;
}

/* 2. Services Section – clean pure white with subtle grid pattern */
#service {
  background: #fff;
  position: relative;
}

#service::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #D0E2F7 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

/* 3. Google Reviews – dark charcoal (already set) */
#feedback,
#feedback.grw-section {
  background: #1E2530 !important;
}

/* 4. Doctors Section – deep navy gradient */
#doctors {
  background: linear-gradient(160deg, #020F3A 0%, #012D6E 100%);
  padding: 70px 0;
}

#doctors .sec-title h2 {
  color: #fff;
  border-left-color: #F5A623;
}

#doctors .sec-title p {
  color: rgba(255, 255, 255, 0.75);
}

/* Doctor card */
#doctors .img-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

#doctors .img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

#doctors h6.img-title {
  color: #fff;
}

/* 5. Photo Gallery – soft warm off-white */
#photo-gallery {
  background: #F7F5F2;
}

#photo-gallery .sec-title h2 {
  border-left-color: #F5A623;
}

/* 6. Before/After – very light blue-gray */
#before-after-gallery {
  background: linear-gradient(135deg, #EEF4FB 0%, #E3EDFA 100%);
}

/* 7. Why Choose Us – white */
#why-choose-us {
  background: #fff;
}

/* 8. Appointment – gradient (already handled in smart CSS) */
#appointment,
.appointment-section {
  background: linear-gradient(135deg, #020F3A 0%, #012D6E 60%, #005F96 100%);
}

/* 9. FAQs – very light steel blue */
#faqs {
  background: #F0F5FB;
}

#faqs .sec-title h2 {
  border-left-color: #F5A623;
}

/* 10. About Us – deep navy brand gradient */
#about-us {
  background: linear-gradient(135deg, #020F3A 0%, #012D6E 50%, #005F96 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative glow */
#about-us::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Heading */
#about-us h2.highlighted-text {
  color: #ffffff !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(0, 180, 216, 0.3);
}

/* Paragraphs */
#about-us p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
}

/* Book Appointment button in About Us */
#about-us .dp-btn-primary {
  background: linear-gradient(135deg, #00B4D8, #0077B6) !important;
  box-shadow: 0 6px 25px rgba(0, 180, 216, 0.35);
  border: none;
}

#about-us .dp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.5);
}

/* Image enhancement */
#about-us img {
  border: 3px solid rgba(0, 180, 216, 0.25) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

/* 11. Location – crisp white */
#our-location {
  background: #fff;
}

/* 12. Global Patients Gallery */
#global-patients-gallery {
  background: #F0F5FB;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEW CARDS: Show FULL text (no truncation)
   ═══════════════════════════════════════════════════════════════ */
/* Show full text always – hide the short span, show full span */
.grw-text-short {
  display: none !important;
}

.grw-text-full {
  display: inline !important;
}

.grw-seemore {
  display: none !important;
}

/* Adjust card height since text is now full length */
.grw-card {
  min-height: unset;
}

/* Make review card background slightly lighter for readability */
.grw-card {
  background: #262f3d;
}

.grw-card-text {
  color: #d8d8d8;
  font-size: 0.83rem;
  line-height: 1.65;
}

/* GRW section color update */
.grw-section {
  background: #1E2530 !important;
}

/* ═══════════════════════════════════════════════════════════════
   SMART SERVICES SECTION – Premium & Clean Design
   ═══════════════════════════════════════════════════════════════ */

#service {
  background-color: #ffffff !important;
  padding: 80px 0 !important;
  position: relative;
}

#service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 95, 150, 0.1), transparent);
}

/* Accordion Component Fixes */
.accordion#serviceAccordion {
  border: none;
  background: transparent;
}

.accordion-item {
  border: none !important;
  background: transparent !important;
  margin-bottom: 12px;
}

.accordion-header {
  background: #f8fbff;
  border: 1px solid #e1ecf8;
  border-radius: 12px !important;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  border-color: var(--dp-accent);
  box-shadow: 0 4px 15px rgba(0, 168, 204, 0.08);
}

.accordion-button {
  background: transparent !important;
  color: var(--dp-dark) !important;
  padding: 20px 24px !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  font-size: 1rem !important;
  letter-spacing: 0.5px;
}

.accordion-button span.fw-bold {
  color: #F5A623 !important;
  /* Gold for numbers */
  font-weight: 800 !important;
  font-family: 'Open Sans', sans-serif;
  margin-right: 15px;
}

.accordion-button:not(.collapsed) {
  background: #020F3A !important;
  color: #ffffff !important;
  border-color: #020F3A !important;
}

.accordion-button:not(.collapsed) span.fw-bold {
  color: #F5A623 !important;
}

.accordion-button::after {
  background-size: 1rem;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-body {
  padding: 30px 20px !important;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
}

/* Service Image Box - Smart Look */
.img-box {
  margin-bottom: 25px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f4f8;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 95, 150, 0.12);
  border-color: var(--dp-accent);
}

.img-box a {
  text-decoration: none !important;
}

.img-box img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #f0f4f8;
}

.dp-service-placeholder {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff, #e1ecf8);
}

.dp-service-placeholder i {
  font-size: 2.5rem;
  color: var(--dp-primary);
  opacity: 0.5;
}

.img-title {
  padding: 15px;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--dp-dark) !important;
  text-align: center;
  margin: 0;
  letter-spacing: 0.5px;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.img-box:hover .img-title {
  color: var(--dp-primary) !important;
}

@media (max-width: 767px) {
  #service {
    padding: 50px 0 !important;
  }

  .accordion-button {
    padding: 15px 18px !important;
    font-size: 0.9rem !important;
  }

  .img-box img,
  .dp-service-placeholder {
    height: 110px;
  }

  .img-title {
    font-size: 0.75rem !important;
    padding: 10px;
    min-height: 55px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   SMART REVIEWS SECTION – Premium & Clean Design
   ═══════════════════════════════════════════════════════════════ */

/* Override previous dark styles */
#feedback,
.grw-section {
  background: #fdfdfe !important;
  /* Pure clean background */
  padding: 100px 0 !important;
  position: relative;
  overflow: hidden;
}

#feedback::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e2e8f0, transparent);
}

.grw-sec-title h2 {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: #020F3A !important;
  line-height: 1.2;
  margin-bottom: 20px;
  border-left: 5px solid #F5A623 !important;
  padding-left: 15px;
}

.grw-sec-title p {
  color: #64758B !important;
  font-size: 1.05rem !important;
  line-height: 1.7;
}

/* Rating Badge Container */
.grw-rating-badge {
  margin-top: 35px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 95, 150, 0.08);
  display: inline-block;
  border: 1px solid #edf2f7;
}

.grw-stars-row {
  color: #F5A623 !important;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.grw-rating-num {
  display: block;
  color: #1e293b !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}

.grw-map-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: #020F3A !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.grw-map-btn:hover {
  background: #F5A623 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3) !important;
}

/* Review Card – The "Smart" Look */
.grw-card {
  background: #ffffff !important;
  border: 1px solid #eef2f6 !important;
  border-radius: 24px !important;
  padding: 35px !important;
  margin: 20px 10px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  min-height: 280px !important;
  display: flex !important;
  flex-direction: column !important;
}

.grw-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 95, 150, 0.12) !important;
  border-color: rgba(0, 168, 204, 0.3) !important;
}

.grw-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
}

.grw-avatar-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50% !important;
  margin-right: 18px;
  overflow: hidden;
  background: #f1f5f9;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.grw-avatar-letter {
  background: linear-gradient(135deg, #005F96, #00A8CC);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
}

.grw-card-meta {
  display: flex;
  flex-direction: column;
}

.grw-author {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  margin-bottom: 2px;
}

.grw-date {
  font-size: 0.82rem !important;
  color: #94a3b8 !important;
}

.grw-g-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  opacity: 0.9;
}

.grw-card-stars {
  color: #F5A623 !important;
  font-size: 0.95rem !important;
  margin-bottom: 18px;
}

.grw-card-text {
  color: #334155 !important;
  line-height: 1.8 !important;
  font-size: 0.98rem !important;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 5.4em;
}

.grw-card-location {
  font-size: 0.78rem !important;
  color: #64758B !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.grw-card-location i {
  color: #ef4444;
  /* red marker */
}

/* Slick Arrows Style */
.grw-slider-wrap .grw-arrow {
  width: 54px !important;
  height: 54px !important;
  background: #ffffff !important;
  color: #020F3A !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  border-radius: 50% !important;
  border: 1px solid #f1f5f9 !important;
  transition: all 0.3s ease !important;
}

.grw-slider-wrap .grw-arrow:hover {
  background: #020F3A !important;
  color: #ffffff !important;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  #feedback {
    padding: 60px 0 !important;
  }

  .grw-left {
    text-align: center;
    padding-right: 0;
    margin-bottom: 50px;
  }

  .grw-card {
    padding: 25px !important;
    margin: 10px !important;
    border-radius: 20px !important;
  }
}


/* ─── Review Card Text Truncation (Smart Fix) ─── */
.grw-card-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 6.5em;
  /* Keep height somewhat consistent */
  margin-bottom: 20px !important;
}

/* ─── Review Section Left Panel Visibility Fix ─── */
#feedback .grw-sec-title h2 {
  color: #020F3A !important;
  /* Ensure it is visible on the clean background */
}

#feedback .grw-sec-title p {
  color: #64758B !important;
}

/* ─── Card Sizing ─── */
.grw-card {
  min-height: 250px !important;
  /* Shorter cards */
  max-height: 380px;
  padding: 25px !important;
}

/* See more link styling - if we want to keep it clickable to go to Google */
.grw-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


/* ─── Review Card Layout – Smart Refinement (3-line limit) ─── */
.grw-card-text {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  /* Show exactly 3 lines */
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  min-height: 4.8em !important;
  font-size: 0.92rem !important;
  margin-bottom: 12px !important;
}

.grw-card {
  min-height: 220px !important;
  height: auto !important;
  padding: 24px !important;
  border-radius: 16px !important;
}

#feedback .grw-left .grw-sec-title h2 {
  color: #020F3A !important;
  display: block !important;
  visibility: visible !important;
}

/* Add a "See more" style hint that doesn't expand but looks professional */
.grw-card::after {
  content: 'Google Review';
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  display: block;
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════
   ULTIMATE SMART REVIEWS – Final Polish
   ═══════════════════════════════════════════════════════════════ */

/* 1. The Container */
#feedback.grw-section {
  background: #f8fafc !important;
  /* Soft premium off-white */
  padding: 100px 0 !important;
  position: relative;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* 2. Left Column Styles */
#feedback .grw-left {
  padding-right: 40px;
}

#feedback .grw-sec-title h2 {
  color: #020F3A !important;
  font-size: 2.6rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
  border-left: 6px solid #F5A623 !important;
  padding-left: 20px !important;
  text-transform: uppercase;
}

#feedback .grw-sec-title p {
  color: #475569 !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

/* 3. The Info/Rating Badge */
#feedback .grw-rating-badge {
  margin-top: 40px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  padding: 30px !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 50px rgba(0, 95, 150, 0.1) !important;
}

#feedback .grw-stars-row {
  color: #F5A623 !important;
  margin-bottom: 12px !important;
}

#feedback .grw-rating-num {
  color: #020F3A !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
}

#feedback .grw-map-btn {
  background: #020F3A !important;
  color: #ffffff !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  margin-top: 25px !important;
  box-shadow: 0 8px 15px rgba(2, 15, 58, 0.25) !important;
}

/* 4. Smart Review Cards */
#feedback .grw-card {
  background: #ffffff !important;
  border: 1px solid #f1f5f9 !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: 15px 10px !important;
}

#feedback .grw-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 95, 150, 0.15) !important;
}

#feedback .grw-card-text {
  font-style: italic !important;
  color: #334155 !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 5em !important;
}

/* 5. Avatar & Header */
#feedback .grw-avatar-wrap {
  border: 2px solid #f1f5f9 !important;
}

#feedback .grw-author {
  color: #020F3A !important;
  font-size: 1.05rem !important;
}

#feedback .grw-date {
  color: #94a3b8 !important;
}

/* 6. Navigation Arrows */
#feedback .grw-slider-wrap .grw-arrow {
  background: #ffffff !important;
  color: #020F3A !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

#feedback .grw-slider-wrap .grw-arrow:hover {
  background: #020F3A !important;
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════
   THE SMART & DYNAMIC REDESIGN
   ═══════════════════════════════════════════════════════════════ */

/* ─── Global Animation ─── */
@keyframes smartGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.smart-bg-animated {
  background: linear-gradient(-45deg, #020F3A, #012D6E, #005F96, #020F3A);
  background-size: 400% 400%;
  animation: smartGradient 12s ease infinite !important;
  position: relative;
  z-index: 1;
}

/* ─── Logo Refinement (White Logo, No Rectangle) ─── */
.dp-navbar .dp-logo {
  width: 200px !important;
  max-height: 60px !important;
  background: transparent !important;
  /* Removed rectangle */
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.footer-logo {
  background: transparent !important;
  padding: 0 !important;
}

.footer-logo img {
  width: 200px !important;
  max-height: 65px !important;
}

/* ─── Smart Marquee Strip ─── */
.global-patients {
  background: #020F3A !important;
  padding: 0 !important;
  border-top: 3px solid #F5A623;
  border-bottom: 3px solid #F5A623;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
}

/* Text row */
.global-patients__track {
  padding: 18px 0;
  overflow: hidden;
}

.global-patients__marquee {
  display: flex;
  align-items: center;
  gap: 80px;
}

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.marquee-text {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.marquee-imgs {
  display: flex;
  gap: 20px;
  align-items: center;
}

.marquee-imgs img {
  height: 32px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

/* ─── Patient Image Scroll Row ─── */
.gp-img-track {
  /* Track = a flex row containing two identical lanes side-by-side */
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gp-img-marquee {
  display: flex;
  flex-shrink: 0;
  /* never collapse */
  align-items: flex-start;
  gap: 16px;
  padding: 0 8px;
  /* Scroll the whole lane left by 100% of its own width */
  animation: gp-img-scroll 35s linear infinite;
}

@keyframes gp-img-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.gp-img-track:hover .gp-img-marquee {
  animation-play-state: paused;
}

.gp-img-card {
  position: relative;
  width: 180px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gp-img-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.25);
  border-color: rgba(0, 180, 216, 0.5);
}

.gp-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  /* signals clickable for lightbox */
  transition: transform 0.25s ease;
}

.gp-img-card:hover img {
  transform: scale(1.06);
}

.gp-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  padding: 20px 8px 8px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
}

/* ─── Section Layout Polish ─── */
section#service {
  background: #ffffff !important;
}

section#doctors {
  background: #f8fafc !important;
}

section#photo-gallery {
  background: #ffffff !important;
}

section#faqs {
  background: #f8fafc !important;
}

/* ─── Section Titles Smart Look ─── */
.sec-title h2 {
  color: #020F3A !important;
  border-left: 6px solid #F5A623 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ─── FORCE NO RECTANGLE ON LOGOS ─── */
.navbar-brand,
.dp-logo,
.footer-logo,
.footer-brand a,
.navbar-brand img,
.footer-logo img {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ─── Hero Banner Slide Overlay (Admin-driven title/tagline/button) ──────── */
.slider-item {
  position: relative;
  overflow: hidden;
}

.dp-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 60px;
  background: linear-gradient(to right,
      rgba(2, 15, 58, 0.72) 0%,
      rgba(2, 15, 58, 0.35) 55%,
      rgba(2, 15, 58, 0.05) 100%);
  z-index: 2;
}

.dp-slide-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  max-width: 680px;
  margin: 0 0 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.7s ease both;
}

.dp-slide-tagline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.90);
  max-width: 540px;
  margin: 0 0 24px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  animation: slideUp 0.9s ease both;
}

.dp-slide-btn {
  display: inline-block;
  background: var(--dp-gold, #F5A623);
  color: #1a0a00;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.45);
  animation: slideUp 1.1s ease both;
}

.dp-slide-btn:hover {
  background: #ffb733;
  color: #1a0a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.55);
  text-decoration: none;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments for slide overlay */
@media (max-width: 767px) {
  .dp-slide-content {
    padding: 24px 22px;
  }

  .dp-slide-title {
    font-size: 1.4rem;
  }

  .dp-slide-tagline {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  .dp-slide-btn {
    padding: 10px 22px;
    font-size: 0.85rem;
  }
}

/* ──────────────────────────────────────────────────────────
   GRW: Dark Theme Redesign (Match Image)
   ────────────────────────────────────────────────────────── */
#feedback.grw-section {
  padding: 100px 0 !important;
  background: #3b3b3b !important;
  /* Image charcoal grey */
}

#feedback .fw-900 {
  font-weight: 900 !important;
}

#feedback .grw-slider-container {
  margin-top: 50px;
}

/* Same height cards logic */
#feedback .grw-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

#feedback .grw-slider .slick-slide {
  height: auto;
  display: flex !important;
}

#feedback .grw-card-wrapper {
  flex: 1;
  display: flex;
  padding: 0 10px;
}

#feedback .grw-card.dark-card {
  background: #000 !important;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

#feedback .grw-card.dark-card:hover {
  transform: translateY(-5px);
  border-color: #444 !important;
}

#feedback .grw-text {
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#feedback .es-see-more {
  color: #fff !important;
  text-decoration: underline !important;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 25px;
}

#feedback .grw-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #444 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

#feedback .grw-arrow:hover {
  background: #222 !important;
  transform: translateY(-50%) scale(1.1);
}

#feedback .prev-arrow {
  left: -30px;
}

#feedback .next-arrow {
  right: -30px;
}

@media (max-width: 1200px) {
  #feedback .prev-arrow {
    left: 10px;
  }

  #feedback .next-arrow {
    right: 10px;
  }
}