@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&family=Tajawal:wght@300;400;500;700&display=swap');

:root {
  --primary-blue: #1C3F60;
  --secondary-blue: #4A7A9E;
  --accent-blue: #E8F1F8;
  --text-dark: #1E293B;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --border: #E2E8F0;
  
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 8px 24px rgba(28,63,96,0.05);
  --shadow-lg: 0 16px 32px rgba(28,63,96,0.08);
  --shadow-hover: 0 20px 40px rgba(28,63,96,0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --section-padding: 100px 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-muted);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px;
}

[dir="rtl"] body {
  font-family: var(--font-arabic);
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
  font-family: var(--font-arabic);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { margin-bottom: 1rem; }

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--bg-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* Header */
header.header-white {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

header.header-white.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[dir="rtl"] .nav-container {
  flex-direction: row-reverse;
}

.logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: #2D3748;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: #43AFA8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

[dir="rtl"] .nav-actions {
  flex-direction: row-reverse;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 992px) {
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    color: var(--primary-blue);
    z-index: 2100;
    background: var(--bg-light);
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid var(--border);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 5rem 1.25rem 2rem;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.25rem;
    border-radius: 10px;
    width: 100%;
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
  }

  .nav-links a:hover, .nav-links a.active {
    background-color: var(--accent-blue);
    color: #43AFA8;
  }

  .nav-actions {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1rem;
    display: none;
  }

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

  .lang-dropdown {
    width: 100%;
  }

  .lang-dropbtn {
    width: 100%;
    justify-content: space-between !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    padding: 0.65rem 1rem !important;
    border-radius: 10px !important;
  }

  .lang-dropdown-content {
    position: static !important;
    box-shadow: none !important;
    border: 1px solid var(--border) !important;
    margin-top: 0.5rem;
    display: none;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .lang-dropdown:hover .lang-dropdown-content {
    display: block;
  }
}

/* RTL Optimizations for Mobile Menu */
[dir="rtl"] @media (max-width: 992px) {
  .nav-links {
    right: auto !important;
    left: 0 !important;
    border-left: none;
    border-right: 1px solid var(--border);
    box-shadow: 10px 0 40px rgba(0,0,0,0.1);
    text-align: right;
  }
  
  .nav-links.active {
    animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
  }
  
  .mobile-menu-btn {
    margin-right: auto;
    margin-left: 0;
  }

  .nav-links a {
    text-align: right;
  }
  
  .lang-dropbtn {
    flex-direction: row-reverse;
  }
}

.btn-teal {
  background-color: #43AFA8;
  color: var(--bg-white);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.btn-teal:hover {
  background-color: #38958F;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* Hero Section */
.hero-new {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url('assets/Hero%20image.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.hero-content-new {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-left: 2rem;
  color: var(--bg-white);
}

[dir="rtl"] .hero-content-new {
  padding-left: 0;
  padding-right: 2rem;
  text-align: right;
}

.eyebrow-new {
  display: inline-block;
  color: #43AFA8;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content-new h1 {
  color: var(--bg-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.sub-headline {
  color: var(--bg-white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.highlight-teal {
  color: #43AFA8;
}

.hero-content-new p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-content-new { padding-left: 1rem; }
  .hero-overlay { background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%); }
}

/* Sections */
section {
  padding: var(--section-padding);
}

.bg-light {
  background-color: var(--bg-light);
}

/* Services */
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-blue);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-blue);
  color: var(--primary-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary-blue);
  color: var(--bg-white);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Dr. Binoy Section */
.dr-binoy-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.dr-binoy-container {
  max-width: 1150px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: flex-start;
  margin: 0 auto;
}

.dr-binoy-content {
  padding-right: 1rem;
}

[dir="rtl"] .dr-binoy-content {
  padding-right: 0;
  padding-left: 1rem;
  text-align: right;
}

.dr-binoy-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.dr-binoy-body {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.dr-binoy-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dr-binoy-image-wrapper {
  width: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background-color: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.02);
  transition: box-shadow 300ms ease;
}

.dr-binoy-image-wrapper:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.dr-binoy-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 300ms ease;
}

.dr-binoy-image-wrapper:hover .dr-binoy-image {
  transform: scale(1.05);
}

.dr-binoy-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #1598c3;
  color: #fff;
  padding: 0.75rem 2.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.dr-binoy-btn:hover {
  background-color: #1282a6;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .dr-binoy-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .dr-binoy-headline {
    font-size: 32px;
  }
  
  .dr-binoy-body {
    font-size: 17px;
  }
  
  .dr-binoy-media {
    align-items: center;
  }
  
  .dr-binoy-image-wrapper {
    width: 100%;
    max-width: 480px;
  }
  
  .dr-binoy-btn {
    margin-left: 0;
  }
}

/* Doctor Intro */
.doctor-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.doctor-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.doctor-image-wrapper img {
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.doctor-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  pointer-events: none;
}

.expertise-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expertise-list li i {
  color: var(--secondary-blue);
}

@media (max-width: 992px) {
  .doctor-intro { grid-template-columns: 1fr; }
}

/* Conditions Grid */
.conditions-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
}

.condition-card-new {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-white);
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.condition-card-new:hover,
.condition-card-new:active {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  z-index: 5;
  border-color: transparent;
  border-radius: 12px;
}

.condition-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f6f9fc;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.condition-icon-circle img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.condition-card-new:hover .condition-icon-circle,
.condition-card-new:active .condition-icon-circle {
  transform: scale(1.12);
}

.condition-card-new h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin-bottom: 1rem;
}

.condition-card-new p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #777;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 280px;
}

@media (max-width: 992px) {
  .conditions-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .conditions-grid-new {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.why-choose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
}

.why-choose-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  color: #111;
  line-height: 1.2;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

.highlight-teal {
  color: #43AFA8;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-choose-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-choose-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  color: #333;
  flex-shrink: 0;
}

.why-choose-text h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #111;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.why-choose-text p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  max-width: 480px;
}

.why-choose-img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Achievements Section */
.achievements-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.achievements-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #111;
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.3;
}

.achievements-card {
  background-color: #f8fafb;
  border-radius: 16px;
  padding: 3.5rem 2rem;
}

.achievements-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.achieve-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.achieve-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.achieve-item p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #888;
  margin: 0;
  letter-spacing: 0.01em;
}

.achieve-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .achievements-row {
    flex-direction: column;
    gap: 2rem;
  }
  .achieve-dot {
    display: none;
  }
}

/* Google Testimonials */
.google-testimonials-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.gtest-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.google-g-icon {
  width: 48px;
  height: 48px;
}

.gtest-label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.gtest-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #43AFA8;
  display: inline-block;
}

.gtest-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 3.5rem;
}

.gtest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gtest-card {
  background-color: #f4f8fb;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.gtest-avatar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.gtest-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gtest-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

.gtest-review {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 1.25rem;
  flex: 1;
}

.gtest-stars {
  color: #F59E0B;
  font-size: 16px;
  display: flex;
  gap: 2px;
}

.gtest-btn {
  display: inline-block;
  background-color: #43AFA8;
  color: #fff;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gtest-btn:hover {
  background-color: #38958F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 175, 168, 0.3);
}

@media (max-width: 992px) {
  .gtest-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Success Stories Section */
.success-stories-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.success-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #111;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.3;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.success-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

.success-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.success-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.success-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.success-img-wrapper:hover img {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .success-grid {
    grid-template-columns: 1fr;
  }
}

/* Fellowship Section */
.fellowship-section {
  padding: 6rem 0;
  background-color: #f8fafb;
}

.fellowship-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.fellowship-img-side {
  border-radius: 14px;
  overflow: hidden;
}

.fellowship-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.fellowship-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.fellowship-badge i {
  color: #43AFA8;
  font-size: 16px;
}

.fellowship-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  color: #111;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.fellowship-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fellowship-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 16px;
  color: #444;
}

.fellowship-features li i {
  color: #555;
  font-size: 14px;
}

.fellowship-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.fellowship-learn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  border: 1px solid #ccc;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fellowship-learn-btn:hover {
  border-color: #111;
  color: #111;
}

@media (max-width: 992px) {
  .fellowship-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  
  .fellowship-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .fellowship-actions .btn, .fellowship-actions .fellowship-learn-btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
  }
}

/* Blog Section — Editorial Style */
.blog-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.blog-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #43AFA8;
  margin-bottom: 1.25rem;
}

.blog-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #43AFA8;
  display: inline-block;
}

.blog-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 4rem;
}

.blog-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card-new {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blog-card-new:hover {
  transform: translateY(-4px);
}

.blog-card-img-wrapper {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/3;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card-new:hover .blog-card-img-wrapper img {
  transform: scale(1.05);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #888;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card-meta i {
  font-size: 13px;
  color: #aaa;
}

@media (max-width: 992px) {
  .blog-grid-new {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Video Section — Learn with Video */
.video-section {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.video-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.video-description {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.video-featured {
  margin-bottom: 2rem;
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-embed-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section — Editorial Style */
.faq-section-new {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #43AFA8;
  margin-bottom: 1.25rem;
}

.faq-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #43AFA8;
  display: inline-block;
}

.faq-headline-new {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 4rem;
}

.faq-container-new {
  max-width: 100%;
}

.faq-item-new {
  border-bottom: 1px solid #e8e8e8;
}

.faq-item-new:first-child {
  border-top: 1px solid #e8e8e8;
}

.faq-question-new {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: none;
  border: none;
  padding: 1.75rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: #222;
  cursor: pointer;
  text-align: left;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-question-new:hover {
  color: #43AFA8;
}

.faq-toggle-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: #43AFA8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item-new.active .faq-toggle-icon {
  background-color: #2d8a84;
  transform: rotate(45deg);
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer-new p {
  padding: 0 0.5rem 1.75rem;
  margin: 0;
  color: #666;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item-new.active .faq-answer-new {
  max-height: 300px;
}

/* Consultation Section — Schedule a consultation */
.consultation-section {
  padding: 6rem 0;
  background-color: #f5f6f8;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.consultation-img-side {
  border-radius: 16px;
  overflow: hidden;
}

.consultation-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.consultation-form-side {
  padding: 0;
}

.consultation-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.consultation-subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
}

.consultation-subtitle strong {
  color: #222;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consult-form-group input,
.consult-form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.consult-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

.consult-form-group input:focus,
.consult-form-group select:focus {
  outline: none;
  border-color: #43AFA8;
  box-shadow: 0 0 0 3px rgba(67, 175, 168, 0.12);
}

.consult-form-group input::placeholder {
  color: #999;
}

.consult-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.consult-submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #43AFA8;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.consult-submit-btn:hover {
  background-color: #38958F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 175, 168, 0.3);
}

@media (max-width: 992px) {
  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .consultation-img-side {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .consult-form-row {
    grid-template-columns: 1fr;
  }
}

/* Locations Section — New Editorial */
.locations-section-new {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.locations-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.location-card-new {
  padding: 0;
}

.location-city {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.location-info-item i {
  color: #888;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.location-info-item p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.location-book-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  background-color: #43AFA8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.location-book-btn:hover {
  background-color: #38958F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(67, 175, 168, 0.3);
}

@media (max-width: 768px) {
  .locations-grid-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Newsletter Section — New Editorial */
.newsletter-section-new {
  padding: 5rem 0;
  background-color: var(--bg-white);
  border-top: 1px solid #e8e8e8;
}

.newsletter-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-headline-side h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

.newsletter-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #555;
  margin-bottom: 1.25rem;
}

.newsletter-form-new {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.newsletter-form-new input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #333;
  background-color: #f5f6f8;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form-new input:focus {
  border-color: #43AFA8;
}

.newsletter-form-new input::placeholder {
  color: #999;
}

.newsletter-form-new button {
  padding: 1rem 2rem;
  background-color: #43AFA8;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.newsletter-form-new button:hover {
  background-color: #38958F;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(67, 175, 168, 0.3);
}

@media (max-width: 768px) {
  .newsletter-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .newsletter-form-new {
    flex-direction: column;
  }
  .newsletter-form-new input,
  .newsletter-form-new button {
    width: 100%;
  }
}

/* Footer — New Clean Style */
.footer-new {
  background-color: var(--bg-white);
  border-top: 1px solid #e8e8e8;
  padding: 4rem 0 3rem;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo-new {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo-new img {
  height: 48px;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #888;
  margin: 0;
}

.footer-col-new h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.footer-col-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-new ul li {
  margin-bottom: 0.75rem;
}

.footer-col-new ul li a {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col-new ul li a:hover {
  color: #43AFA8;
}

@media (max-width: 992px) {
  .footer-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid-new {
    grid-template-columns: 1fr;
  }
}

/* Speciality Services Hover Effect */
.specialty-card {
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  border-radius: 1.5rem;
}

.specialty-card:hover,
.specialty-card:active {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  z-index: 5;
  background-color: var(--bg-white);
}

.specialty-card a {
  transition: all 0.3s ease !important;
}

.specialty-card:hover a,
.specialty-card:active a {
  transform: scale(1.12) !important;
}

/* Hub Page Subsection Cards (Updated Design) */
.hub-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.hub-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  margin-bottom: 1rem;
}

.hub-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #43AFA8;
}

.hub-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--font-heading);
  font-weight: 500;
  color: #111;
  margin-bottom: 4rem;
  line-height: 1.2;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hub-card {
  background-color: #F3F9FF;
  border-radius: 32px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  height: 100%;
}

.hub-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.hub-icon-circle {
  width: 72px;
  height: 72px;
  background-color: #E6F2FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.hub-icon-circle i {
  font-size: 28px;
  color: #43AFA8;
}

.hub-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hub-card-category {
  font-size: 15px;
  color: #777;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

.hub-card-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.hub-card:hover .hub-card-link i {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }
  .hub-title {
    font-size: 2rem;
  }
}

[dir="rtl"] .location-info-item { flex-direction: row-reverse; text-align: right; }

/* Sleek Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 1.25rem;
}

.lang-dropbtn {
  background-color: transparent;
  color: #334155;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}

.lang-dropbtn i:first-child {
  color: #64748B;
  font-size: 13px;
  opacity: 0.8;
}

.lang-dropbtn i:last-child {
  font-size: 9px;
  opacity: 0.4;
  transition: transform 0.2s ease;
}

.lang-dropdown:hover .lang-dropbtn {
  background-color: #F1F5F9;
  color: #0F172A;
}

.lang-dropbtn:focus {
  outline: none;
}

.lang-dropdown:hover .lang-dropbtn i:first-child {
  color: #43AFA8;
  opacity: 1;
}

.lang-dropdown:hover .lang-dropbtn i:last-child {
  transform: rotate(180deg);
  opacity: 0.8;
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 180px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02);
  border-radius: 12px;
  padding: 6px;
  z-index: 1001;
  border: 1px solid rgba(255,255,255,0.8);
  margin-top: 8px;
  transform-origin: top right;
  animation: dropdownFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Invisible bridge to prevent hover loss */
.lang-dropdown-content::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(4px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-dropdown:hover .lang-dropdown-content {
  display: block;
}

.lang-dropdown-content a {
  color: #475569;
  padding: 8px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.lang-dropdown-content a:hover {
  background-color: #F8FAFC;
  color: #43AFA8;
}

.lang-dropdown-content a.active {
  background-color: #F0FDFA;
  color: #43AFA8;
  font-weight: 600;
}

.lang-dropdown-content a.active::after {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #43AFA8;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(67, 175, 168, 0.1);
}

/* RTL support for Arabic */
[dir="rtl"] .lang-dropdown {
  margin-right: 0;
  margin-left: 1.25rem;
}

[dir="rtl"] .lang-dropdown-content {
  right: 0;
  left: auto;
  transform-origin: top right;
}

[dir="rtl"] .lang-dropbtn {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-dropdown-content a {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .lang-dropdown-content a.active::after {
  margin-right: 12px;
  margin-left: 0;
}
