/*
Theme Name: IJMSRCI Simple Theme
Theme URI: https://www.ijmsrci.com
Author: IJMSRCI Editorial Team
Description: Clean simple theme for International Journal of Medical Sciences, Research & Clinical Insights. Styled exactly like ijmedri.com.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ijmsrci-simple
*/

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
#site-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  line-height: 1.3;
  max-width: 220px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: #555;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #000; }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  min-width: 200px;
  padding: 6px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 100;
}
.nav-dropdown:hover .drop-menu { display: block; }
.drop-menu a {
  display: block;
  padding: 8px 18px;
  color: #555;
  font-size: 13px;
  border-radius: 0;
}
.drop-menu a:hover { color: #000; background: #f9f9f9; }
.nav-publish-btn {
  background: #222 !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 3px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  margin-left: 8px;
  transition: background 0.2s !important;
}
.nav-publish-btn:hover { background: #000 !important; color: #fff !important; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a1a2e;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1600&q=80');
  opacity: 0.18;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 700px;
}
.hero-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  border: 2px solid rgba(255,255,255,0.2);
}
.hero-logo-svg {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  background: #fff;
  border-radius: 50%;
  padding: 14px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.hero-cert {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-cert strong { color: #fff; }
.hero-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.hero-publish-btn {
  display: inline-block;
  background: #fff;
  color: #1a1a2e;
  padding: 13px 36px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.2s;
  border: 2px solid #fff;
}
.hero-publish-btn:hover { background: transparent; color: #fff; }

/* ── PAGE WRAP ── */
.page-wrap { max-width: 900px; margin: 0 auto; padding: 0 32px; }

/* ── SECTION ── */
.content-section { padding: 64px 0; border-bottom: 1px solid #eee; }
.content-section:last-child { border-bottom: none; }
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  font-style: italic;
}
.section-title em { font-style: italic; }
.section-text {
  color: #444;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}
.section-text strong { color: #111; font-weight: 700; }
.section-text em { font-style: italic; }
.learn-more-btn {
  display: inline-block;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
  margin-top: 8px;
  transition: all 0.2s;
}
.learn-more-btn:hover { color: #000; border-color: #000; }

/* TWO COLUMN LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col-img {
  border-radius: 6px;
  overflow: hidden;
}
.two-col-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
}
.img-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #f0f4f8, #dde8e6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
}

/* ── FEE LIST ── */
.fee-list { margin: 12px 0 16px 20px; }
.fee-list li {
  color: #444;
  font-size: 15px;
  margin-bottom: 8px;
  list-style: disc;
}
.fee-list li strong { color: #111; }

/* ── NUMBERED LIST ── */
.num-list { margin: 12px 0 16px 0; counter-reset: num; }
.num-list li {
  counter-increment: num;
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.num-list li::before {
  content: counter(num) '.';
  font-weight: 700;
  font-size: 16px;
  color: #111;
  flex-shrink: 0;
  min-width: 20px;
}
.num-list li .li-title { font-weight: 700; color: #111; margin-bottom: 4px; font-size: 15px; }
.num-list li .li-text { color: #555; font-size: 14px; line-height: 1.7; }
.bullet-list { margin: 12px 0 16px 20px; }
.bullet-list li { color: #444; font-size: 15px; margin-bottom: 8px; list-style: disc; }
.bullet-list li strong { color: #111; }

/* ── CONTACT FORM ── */
.contact-heading { font-size: 28px; font-weight: 700; color: #111; margin-bottom: 8px; }
.contact-sub { color: #666; font-size: 15px; margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 560px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; color: #333; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #333; }
.form-group textarea { height: 110px; resize: vertical; }
.submit-btn {
  background: #222;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  align-self: flex-start;
}
.submit-btn:hover { background: #000; }

/* ── FOOTER ── */
#site-footer {
  background: #f9f9f9;
  border-top: 1px solid #eee;
  padding: 56px 0 28px;
}
.footer-wrap { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.footer-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.footer-logo-wrap { text-align: center; margin: 16px 0 28px; }
.footer-logo-wrap img { width: 90px; height: 90px; object-fit: contain; margin: 0 auto; border-radius: 50%; background: #fff; padding: 8px; border: 1px solid #eee; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-col-title { font-size: 12px; font-weight: 700; color: #111; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.footer-col a { display: block; color: #666; font-size: 13px; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: #111; }
.footer-col p { color: #666; font-size: 13px; }
.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 12px;
  line-height: 1.7;
}

/* ── PAGE CONTENT ── */
#inner-page { padding: 56px 0; }
#inner-page .entry-title { font-size: 32px; font-weight: 700; color: #111; margin-bottom: 24px; font-style: italic; }
#inner-page .entry-content p { color: #444; font-size: 15px; line-height: 1.9; margin-bottom: 14px; }
#inner-page .entry-content h2 { font-size: 22px; color: #111; margin: 28px 0 12px; font-style: italic; }
#inner-page .entry-content h3 { font-size: 18px; color: #222; margin: 20px 0 8px; }
#inner-page .entry-content ul { padding-left: 22px; margin-bottom: 14px; }
#inner-page .entry-content ul li { color: #444; font-size: 15px; margin-bottom: 6px; list-style: disc; }
#inner-page .entry-content strong { color: #111; font-weight: 700; }
#inner-page .entry-content a { color: #333; text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .footer-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 48px 20px; }
  #hero { min-height: 70vh; }
  .page-wrap { padding: 0 20px; }
  .footer-wrap { padding: 0 20px; }
}
