<?php
// ============================================
// AYUTIRTH AYURVEDA - Public Blog Page
// Place at: htdocs/www.ayutirthayurveda.com/blog.php
// ============================================
define('DB_HOST', 'localhost');
define('DB_USER', 'adminpanel');
define('DB_PASS', 'Neh@ngel0712');
define('DB_NAME', 'admin');

function getDB() {
    static $pdo = null;
    if ($pdo === null) {
        try {
            $pdo = new PDO("mysql:host=".DB_HOST.";dbname=".DB_NAME.";charset=utf8mb4", DB_USER, DB_PASS,
                [PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION, PDO::ATTR_DEFAULT_FETCH_MODE=>PDO::FETCH_ASSOC]);
        } catch (PDOException $e) { return null; }
    }
    return $pdo;
}

function getCategoryFallbackImage($category, $title = '') {
    $cat = strtolower(trim($category));
    $title = strtolower($title);

    $map = [
        'panchkarma'    => 'https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=700&q=80&fit=crop',
        'panchakarma'   => 'https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=700&q=80&fit=crop',
        'yoga'          => 'https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=700&q=80&fit=crop',
        'lifestyle'     => 'https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=700&q=80&fit=crop',
        'fertility'     => 'https://images.unsplash.com/photo-1491013516836-7db643ee125a?w=700&q=80&fit=crop',
        'womens health' => 'https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=700&q=80&fit=crop',
        "women's health"=> 'https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=700&q=80&fit=crop',
        'pcos'          => 'https://images.unsplash.com/photo-1559757175-5700dde675bc?w=700&q=80&fit=crop',
        'pcod'          => 'https://images.unsplash.com/photo-1559757175-5700dde675bc?w=700&q=80&fit=crop',
        'diet'          => 'https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=700&q=80&fit=crop',
        'nutrition'     => 'https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=700&q=80&fit=crop',
        'ayurveda'      => 'https://images.unsplash.com/photo-1471864190281-a93a3070b6de?w=700&q=80&fit=crop',
        'herbs'         => 'https://images.unsplash.com/photo-1471864190281-a93a3070b6de?w=700&q=80&fit=crop',
        'stress'        => 'https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=700&q=80&fit=crop',
        'mental health' => 'https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=700&q=80&fit=crop',
        'skin'          => 'https://images.unsplash.com/photo-1616394584738-fc6e612e71b9?w=700&q=80&fit=crop',
        'hair'          => 'https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=700&q=80&fit=crop',
        'weight'        => 'https://images.unsplash.com/photo-1538805060514-97d9cc17730c?w=700&q=80&fit=crop',
        'diabetes'      => 'https://images.unsplash.com/photo-1593491205049-7f032d28cf01?w=700&q=80&fit=crop',
        'joints'        => 'https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=700&q=80&fit=crop',
        'arthritis'     => 'https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=700&q=80&fit=crop',
    ];

    foreach ($map as $key => $url) {
        if (strpos($cat, $key) !== false) return $url;
    }
    foreach ($map as $key => $url) {
        if (strpos($title, $key) !== false) return $url;
    }
    return 'https://images.unsplash.com/photo-1471864190281-a93a3070b6de?w=700&q=80&fit=crop';
}

$db  = getDB();
$cat = isset($_GET['cat']) ? trim($_GET['cat']) : '';

if ($db) {
    if ($cat) {
        $stmt = $db->prepare("SELECT * FROM blog_posts WHERE status='published' AND category=? ORDER BY created_at DESC");
        $stmt->execute([$cat]);
    } else {
        $stmt = $db->query("SELECT * FROM blog_posts WHERE status='published' ORDER BY created_at DESC");
    }
    $blogs      = $stmt ? $stmt->fetchAll() : [];
    $categories = $db->query("SELECT DISTINCT category FROM blog_posts WHERE status='published' AND category != ''")->fetchAll(PDO::FETCH_COLUMN);
} else {
    $blogs      = [];
    $categories = [];
}

// First post becomes featured
$featuredBlog  = !empty($blogs) ? $blogs[0] : null;
$remainingBlogs = array_slice($blogs, 1);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ayurvedic Health Journal | Ayutirth Ayurveda Ahmedabad</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Read our latest Ayurvedic health tips, treatment guides, and wellness articles from Ayutirth Ayurveda & Panchakarma Hospital, Gota Ahmedabad.">
<meta name="keywords" content="Ayurvedic Blog, Panchkarma Tips, PCOS Treatment Ahmedabad, Ayurveda Health Tips">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://www.ayutirthayurveda.com/blog.php">
<meta property="og:type" content="website">
<meta property="og:title" content="Ayurvedic Health Journal | Ayutirth Ayurveda">
<meta property="og:description" content="Expert Ayurvedic health tips and treatment guides from Ahmedabad's top Ayurvedic hospital.">
<meta property="og:url" content="https://www.ayutirthayurveda.com/blog.php">
<meta property="og:image" content="https://www.ayutirthayurveda.com/images/hero.webp">
<meta name="twitter:card" content="summary_large_image">
<script type="application/ld+json">
{
  "@context":"https://schema.org",
  "@type":"Blog",
  "name":"Ayutirth Ayurveda Journal",
  "url":"https://www.ayutirthayurveda.com/blog.php",
  "publisher":{
    "@type":"MedicalClinic",
    "name":"Ayutirth Ayurved & Panchkarma Hospital",
    "address":{
      "@type":"PostalAddress",
      "addressLocality":"Gota",
      "addressRegion":"Ahmedabad",
      "addressCountry":"IN"
    }
  }
}
</script>

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/style.css">

<style>
/* ─── Premium Brand Tokens ─── */
:root {
  --deep-green:  #0f2e1e;
  --mid-green:   #1a4a2e;
  --light-green: #2d6b43;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-pale:   #f5ecd4;
  --cream:       #faf7f0;
  --white:       #ffffff;
  --text-dark:   #1a1a14;
  --text-muted:  #6b6b5a;
  --border-gold: rgba(201,168,76,0.25);
  --shadow-green:rgba(15,46,30,0.10);
}

/* ─── Page Shell ─── */
.blog-section {
  background: var(--cream);
  padding: 0 0 80px;
}

/* ─── Header ─── */
.blog-header {
  text-align: center;
  padding: 56px 20px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.blog-emblem {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.emblem-rule {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.emblem-rule.r { background: linear-gradient(90deg, var(--gold), transparent); }

.emblem-lozenge {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.blog-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.blog-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  color: var(--deep-green);
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin-bottom: 14px;
}

.blog-h1 em {
  font-style: italic;
  color: var(--gold);
}

.blog-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ─── Ornamental Divider ─── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px auto 36px;
}
.ornament-divider .od-line {
  width: 90px;
  height: 0.5px;
  background: var(--border-gold);
}
.ornament-divider .od-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ornament-divider .od-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ─── Category Filters ─── */
.cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
  margin-bottom: 52px;
}

.cat-btn {
  padding: 8px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  display: inline-block;
}

.cat-btn:hover {
  border-color: var(--gold);
  color: var(--deep-green);
  background: rgba(201,168,76,0.06);
}

.cat-btn.active {
  background: var(--deep-green);
  color: var(--gold);
  border-color: var(--deep-green);
}

/* ─── Blog Grid ─── */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-grid .blog-card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  min-width: 280px;
}

/* 1 card alone → full featured width */
.blog-grid .blog-card:first-child:last-child {
  flex: 0 0 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.blog-grid .blog-card:first-child:last-child .blog-card-img-wrap {
  height: 100%;
  min-height: 300px;
}

.blog-grid .blog-card:first-child:last-child .blog-card-img-wrap img {
  height: 100%;
}

.blog-grid .blog-card:first-child:last-child .blog-card-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 2 cards → each half width */
.blog-grid .blog-card:first-child:nth-last-child(2),
.blog-grid .blog-card:nth-child(2):last-child {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}

/* ─── Featured Card ─── */
.blog-featured {
  max-width: 1200px;
  margin: 0 auto 36px;
  padding: 0 24px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep-green);
  overflow: hidden;
  border: 0.5px solid rgba(201,168,76,0.2);
}

.featured-img-wrap {
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.75);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.featured-card:hover .featured-img-wrap img {
  filter: brightness(0.95) saturate(0.9);
  transform: scale(1.04);
}

.featured-card-body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.featured-card-body::before {
  content: '';
  position: absolute;
  top: 44px; left: 44px; right: 44px;
  height: 0.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.3;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.featured-badge {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  opacity: 0.85;
}

.featured-badge::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.featured-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 0.5px solid rgba(201,168,76,0.45);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-pale);
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.featured-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,236,212,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid rgba(201,168,76,0.18);
  padding-top: 18px;
}

.featured-date {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,236,212,0.38);
}

.featured-read {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.featured-read:hover { gap: 14px; }
.featured-read::after { content: '→'; font-size: 14px; }

/* ─── Standard Cards ─── */
.blog-card {
  background: var(--white);
  border: 0.5px solid var(--border-gold);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-green);
}

.blog-card-img-wrap {
  overflow: hidden;
  height: 220px;
  position: relative;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(0.8);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  filter: brightness(1) saturate(1);
  transform: scale(1.06);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(15,46,30,0.28) 100%);
}

.blog-card-body {
  padding: 26px 28px 22px;
}

.blog-cat-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(201,168,76,0.5);
  padding: 4px 12px;
  margin-bottom: 14px;
}

.blog-card-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-green);
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.blog-card-body p {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid var(--border-gold);
  padding-top: 14px;
}

.blog-date {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.7;
}

.read-more {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.read-more:hover { gap: 12px; }
.read-more::after { content: '→'; font-size: 13px; }

/* ─── Empty State ─── */
.no-posts {
  text-align: center;
  padding: 80px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ─── Bottom Ornament ─── */
.blog-footer-ornament {
  text-align: center;
  margin-top: 64px;
  padding: 0 20px;
}

.blog-footer-ornament .of-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.of-line {
  width: 60px;
  height: 0.5px;
  background: var(--border-gold);
}

.of-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.6;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .blog-grid .blog-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 860px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-img-wrap {
    min-height: 240px;
  }
  .featured-card-body {
    padding: 32px 28px;
  }
  .blog-h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    padding: 0 16px;
  }
  .blog-grid .blog-card,
  .blog-grid .blog-card:first-child:last-child,
  .blog-grid .blog-card:first-child:nth-last-child(2),
  .blog-grid .blog-card:nth-child(2):last-child {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: unset;
    display: block;
  }
  .blog-grid .blog-card:first-child:last-child .blog-card-img-wrap {
    height: 220px;
    min-height: unset;
  }
  .blog-grid .blog-card:first-child:last-child .blog-card-img-wrap img {
    height: 220px;
  }
  .blog-featured {
    padding: 0 16px;
  }
  .blog-h1 {
    font-size: 30px;
  }
  .featured-title {
    font-size: 22px;
  }
}
</style>
</head>
<body>

<?php
$headerFile = __DIR__ . '/includes/header.html';
if (file_exists($headerFile)) include $headerFile;
?>

<div class="blog-section">

  <!-- ── Header ── -->
  <div class="blog-header">
    <div class="blog-emblem">
      <div class="emblem-rule"></div>
      <div class="emblem-lozenge"></div>
      <div class="emblem-rule r"></div>
    </div>
    <p class="blog-eyebrow">Ayutirth Ayurveda &amp; Panchakarma</p>
    <h1 class="blog-h1">Ayurvedic Health <em>Journal</em></h1>
    <p class="blog-subtitle">Expert wisdom, treatment guides &amp; holistic wellness from our physicians</p>
  </div>

  <!-- ── Ornament ── -->
  <div class="ornament-divider">
    <div class="od-line"></div>
    <div class="od-dot"></div>
    <div class="od-diamond"></div>
    <div class="od-dot"></div>
    <div class="od-line"></div>
  </div>

  <!-- ── Category Filters ── -->
  <?php if (!empty($categories)): ?>
  <div class="cat-filters">
    <a href="/blog.php" class="cat-btn <?= !$cat ? 'active' : '' ?>">All Articles</a>
    <?php foreach ($categories as $c): ?>
    <a href="/blog.php?cat=<?= urlencode($c) ?>" class="cat-btn <?= $cat === $c ? 'active' : '' ?>"><?= htmlspecialchars($c) ?></a>
    <?php endforeach; ?>
  </div>
  <?php endif; ?>

  <?php if (empty($blogs)): ?>
    <div class="no-posts">No articles yet. Please check back soon.</div>

  <?php else: ?>

    <!-- ── Featured Post ── -->
    <?php if ($featuredBlog):
      $featImg = !empty($featuredBlog['featured_image'])
        ? htmlspecialchars($featuredBlog['featured_image'])
        : getCategoryFallbackImage($featuredBlog['category'] ?? '', $featuredBlog['title'] ?? '');
    ?>
    <div class="blog-featured">
      <div class="featured-card">
        <div class="featured-img-wrap">
          <img src="<?= $featImg ?>"
               alt="<?= htmlspecialchars($featuredBlog['title']) ?>"
               loading="eager"
               onerror="this.src='https://images.unsplash.com/photo-1471864190281-a93a3070b6de?w=700&q=80&fit=crop'">
        </div>
        <div class="featured-card-body">
          <div class="featured-badge">Featured Article</div>
          <?php if (!empty($featuredBlog['category'])): ?>
          <span class="featured-tag"><?= htmlspecialchars($featuredBlog['category']) ?></span>
          <?php endif; ?>
          <div class="featured-title"><?= htmlspecialchars($featuredBlog['title']) ?></div>
          <p class="featured-excerpt"><?= htmlspecialchars(substr($featuredBlog['excerpt'] ?: strip_tags($featuredBlog['content']), 0, 160)) ?>...</p>
          <div class="featured-footer">
            <span class="featured-date"><?= date('d M Y', strtotime($featuredBlog['created_at'])) ?></span>
            <a href="/blog-post.php?slug=<?= htmlspecialchars($featuredBlog['slug']) ?>" class="featured-read">Read Article</a>
          </div>
        </div>
      </div>
    </div>
    <?php endif; ?>

    <!-- ── Remaining Posts Grid ── -->
    <?php if (!empty($remainingBlogs)): ?>
    <div class="blog-grid">
      <?php foreach ($remainingBlogs as $blog):
        $imgSrc = !empty($blog['featured_image'])
          ? htmlspecialchars($blog['featured_image'])
          : getCategoryFallbackImage($blog['category'] ?? '', $blog['title'] ?? '');
      ?>
      <div class="blog-card">
        <div class="blog-card-img-wrap">
          <img src="<?= $imgSrc ?>"
               alt="<?= htmlspecialchars($blog['title']) ?>"
               loading="lazy"
               onerror="this.src='https://images.unsplash.com/photo-1471864190281-a93a3070b6de?w=700&q=80&fit=crop'">
          <div class="img-overlay"></div>
        </div>
        <div class="blog-card-body">
          <?php if (!empty($blog['category'])): ?>
          <span class="blog-cat-tag"><?= htmlspecialchars($blog['category']) ?></span>
          <?php endif; ?>
          <h2><?= htmlspecialchars($blog['title']) ?></h2>
          <p><?= htmlspecialchars(substr($blog['excerpt'] ?: strip_tags($blog['content']), 0, 120)) ?>...</p>
          <div class="blog-card-footer">
            <span class="blog-date"><?= date('d M Y', strtotime($blog['created_at'])) ?></span>
            <a href="/blog-post.php?slug=<?= htmlspecialchars($blog['slug']) ?>" class="read-more">Read More</a>
          </div>
        </div>
      </div>
      <?php endforeach; ?>
    </div>
    <?php endif; ?>

  <?php endif; ?>

  <!-- ── Bottom Ornament ── -->
  <div class="blog-footer-ornament">
    <div class="of-inner">
      <div class="of-line"></div>
      <span class="of-text">Ayutirth Ayurveda &amp; Panchakarma Hospital, Ahmedabad</span>
      <div class="of-line"></div>
    </div>
  </div>

</div><!-- /.blog-section -->

<?php
$footerFile = __DIR__ . '/includes/footer.html';
if (file_exists($footerFile)) include $footerFile;
?>

</body>
</html>