/* ════════════════════════════════════════════
   Dr. Abu Hena Mostafa Kamal — Portfolio CSS
   Design: Ultra-minimal clinical aesthetic
   ════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --slate: #334155;
  --slate-mid: #64748B;
  --slate-light: #94A3B8;
  --teal: #06B6D4;
  --teal-dark: #0891B2;
  --teal-glow: rgba(6, 182, 212, 0.12);
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --green-wa: #25D366;
  --green-wa-dark: #1DA851;
  --red: #EF4444;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 20px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.10);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 8px;
}

.logo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  list-style: none;
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-dark);
  background: var(--teal-glow);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: 8px !important;
  margin-top: 4px;
}

.nav-cta:hover {
  background: var(--navy-light) !important;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
  }

  .nav-links a {
    padding: 6px 12px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 8px 18px !important;
    margin-top: 0;
    margin-left: 8px;
  }
}

/* ── Hero ── */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    padding: 0 40px;
  }
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 8px;
}

.hero-degree {
  font-weight: 400;
  color: var(--slate-mid);
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 500;
  color: var(--slate-mid);
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 15px;
  color: var(--slate-mid);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--green-wa-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Photo */
.hero-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.photo-frame {
  width: 280px;
  height: 340px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .photo-frame {
    width: 320px;
    height: 400px;
  }
}

.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--slate-light);
  font-size: 13px;
  font-weight: 500;
}

.photo-placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.5;
}

.photo-badge {
  margin-top: 16px;
  padding: 8px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 40px;
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section { padding: 100px 0; }
}

.section-gray {
  background: var(--gray-50);
}

.section-navy {
  background: var(--navy);
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.section-eyebrow.light {
  color: var(--teal);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-desc {
  font-size: 15px;
  color: var(--slate-mid);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.about-text p {
  margin-bottom: 16px;
  color: var(--slate);
  line-height: 1.8;
  font-size: 15px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.highlight-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-glow);
  color: var(--teal-dark);
  border-radius: 10px;
  margin-bottom: 14px;
}

.highlight-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.7;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

.service-card {
  padding: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.7;
}

/* ── Research Badges ── */
.research-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

@media (min-width: 600px) {
  .research-badges { grid-template-columns: repeat(3, 1fr); }
}

.badge-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.badge-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.badge-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  flex-shrink: 0;
}

.badge-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.badge-action {
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 500;
}

/* ── Gallery ── */
.gallery-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  border-radius: 40px;
  background: var(--white);
  color: var(--slate);
  transition: all var(--transition);
}

.gallery-tab:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.gallery-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery-item.hidden {
  display: none;
}

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.gallery-sub {
  font-size: 11px;
  color: var(--gray-300);
  margin-top: 2px;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 32px;
}

.timeline-line {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.3);
}

.timeline-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.timeline-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--teal);
}

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
}

.timeline-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 6px 0 4px;
}

.timeline-meta {
  font-size: 13px;
  color: var(--slate-light);
  margin-bottom: 8px;
}

.timeline-role {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  background: var(--teal-glow);
  color: var(--teal);
  border-radius: 20px;
  margin-bottom: 8px;
}

.timeline-card p:last-child {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ── Publications ── */
.pub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .pub-grid { grid-template-columns: 1fr 1fr; }
}

.pub-card {
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
}

.pub-card:hover {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.pub-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 12px;
}

.tag-newspaper { background: #FEF3C7; color: #92400E; }
.tag-newsletter { background: #DBEAFE; color: #1E40AF; }
.tag-insight { background: #D1FAE5; color: #065F46; }

.pub-date {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-light);
}

.pub-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
  padding-right: 48px;
}

.pub-card p {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pub-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
}

.pub-link:hover {
  color: var(--navy);
}

/* ── Affiliations ── */
.affil-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}

@media (min-width: 700px) {
  .affil-grid { grid-template-columns: 1fr 1fr; }
}

.affil-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}

.affil-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.affil-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.affil-list li:hover {
  border-color: var(--teal);
  background: var(--teal-glow);
}

.affil-abbr {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
  min-width: 70px;
  flex-shrink: 0;
}

.affil-full {
  font-size: 14px;
  color: var(--slate);
}

/* ── Appointment Form ── */
.appt-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}

@media (min-width: 900px) {
  .appt-layout { grid-template-columns: 0.8fr 1.2fr; }
}

.chamber-card {
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.chamber-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.chamber-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.chamber-addr {
  font-size: 14px;
  color: var(--slate-mid);
  margin-bottom: 16px;
}

.chamber-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.hours-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-light);
}

.hours-time {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.hours-closed {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
}

.chamber-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--slate);
}

.contact-line:hover {
  color: var(--teal-dark);
}

/* Form */
.appt-form-wrap {
  padding: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.req { color: var(--red); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
}

.form-error {
  display: block;
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-actions .btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 60px 0 24px;
  color: var(--gray-300);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo-mark {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-top: 10px;
}

.footer-sub {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--slate-light) !important;
  margin-top: 4px !important;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--slate-light);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--slate-mid);
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 768px){

.nav-logo .logo-text{
    font-size: 13px;
    font-weight: 600;
}

.nav-inner{
    padding: 10px 16px;
}

.nav-logo{
    gap: 8px;
}

.logo-mark{
    width: 32px;
    height: 32px;
    font-size: 10px;
}
}
body {
    font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
}
p {
    text-align: justify;
}
.pub-card p,
.about-text p,
.service-card p,
.timeline-card p,
.highlight-card p,
.section-desc {
    text-align: justify;
    font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
    line-height: 1.8;
}
body,
p,
li,
span,
.pub-card p,
.about-text p,
.service-card p,
.timeline-card p,
.highlight-card p,
.section-desc {
    font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
    text-align: justify;
}
h1, h2, h3, h4, h5, h6 {
    text-align: left;
    font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
}
body,
p,
li,
span,
a,
div,
button,
input,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif !important;
}

p,
.section-desc,
.about-text p,
.service-card p,
.highlight-card p,
.pub-card p,
.timeline-card p {
    text-align: justify !important;
    line-height: 1.8;
}
