/* =========================================================
   CGSSBN WordPress Theme - Main Stylesheet
   Clean, Fast, Responsive Design System
   ========================================================= */

:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --primary-light: #eff6ff;
  --accent: #ea580c;
  --accent-light: #fff7ed;
  --success: #16a34a;
  --success-light: #f0fdf4;
  --danger: #dc2626;
  --dark: #0f172a;
  --text: #334155;
  --text-muted: #64748b;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-focus: #3b82f6;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
  --container-width: 1200px;
  --font-main: 'Mukta', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= CLEAN HEADER ================= */
.site-header {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

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

.custom-logo-link img,
.custom-logo {
  display: block;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo {
  padding: 8px 18px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.brand-logo:hover {
  background: linear-gradient(135deg, var(--primary-dark), #1d4ed8);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
  transform: translateY(-1px);
}

.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-info h1,
.brand-info .site-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 0;
}

.brand-info .site-title a {
  color: var(--primary-dark);
}

.brand-info p,
.brand-info .site-description {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Navigation */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: block;
  padding: 7px 13px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark);
  border-radius: 6px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
  background: var(--primary-light);
  color: var(--primary);
}

/* Dropdowns */
.main-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 6px 0;
  z-index: 110;
  flex-direction: column;
}

.main-nav li:hover > ul {
  display: flex;
}

.main-nav ul ul a {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 0;
}

.header-search-btn {
  background: #f1f5f9;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}

.header-search-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

/* ================= PORTAL INTRO BANNER (COLORED) ================= */
.portal-intro-banner {
  padding: 16px 0 4px;
}

.intro-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.intro-title {
  font-size: 24px;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 7px;
  line-height: 1.35;
}

.intro-title .brand-highlight {
  color: #1d4ed8;
  background: #eff6ff;
  padding: 3px 12px;
  border-radius: 6px;
  border: 1px solid #bfdbfe;
  display: inline-block;
  font-weight: 800;
  font-size: 23px;
}

.intro-title .title-divider {
  color: #f59e0b;
  margin: 0 6px;
}

.intro-title .title-full {
  color: #0f172a;
}

.intro-subtitle {
  font-size: 14.5px;
  color: #0369a1;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .portal-intro-banner {
    padding: 12px 0 4px;
  }

  .intro-box {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .intro-title {
    font-size: 18.5px;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  .intro-title .brand-highlight,
  .intro-title .title-divider {
    display: none !important;
  }

  .intro-title .title-full {
    display: block;
    font-size: 18.5px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    margin: 0;
  }

  .intro-subtitle {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 6px;
  }
}

/* ================= 4-BOX QUICK ACTIONS ================= */
.quick-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.quick-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  border-top: 4px solid #2563eb;
  text-decoration: none;
}

.quick-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
  background: #dbeafe;
  border-color: #93c5fd;
}

.quick-box.accent-orange {
  background: #fff7ed;
  border-color: #fed7aa;
  border-top-color: #ea580c;
}
.quick-box.accent-orange:hover {
  background: #ffedd5;
  border-color: #fdba74;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.15);
}

.quick-box.accent-green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  border-top-color: #16a34a;
}
.quick-box.accent-green:hover {
  background: #dcfce7;
  border-color: #86efac;
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.15);
}

.quick-box.accent-purple {
  background: #faf5ff;
  border-color: #e9d5ff;
  border-top-color: #8b5cf6;
}
.quick-box.accent-purple:hover {
  background: #f3e8ff;
  border-color: #d8b4fe;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.15);
}

.quick-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.quick-box.accent-orange .quick-icon { color: var(--accent); }
.quick-box.accent-green .quick-icon { color: var(--success); }
.quick-box.accent-purple .quick-icon { color: #7c3aed; }

.quick-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.25;
}

.quick-box.accent-orange .quick-title { color: #9a3412; }
.quick-box.accent-green .quick-title { color: #14532d; }
.quick-box.accent-purple .quick-title { color: #581c87; }

.quick-desc {
  font-size: 12px;
  color: #475569;
  font-weight: 500;
}

/* ================= MAIN CONTENT LAYOUT ================= */
.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.main-grid.full-width {
  grid-template-columns: 1fr;
}

/* Sticky Right Sidebar for Desktop */
.main-grid > aside,
.main-grid > div > aside,
aside.widget-area,
.widget-area {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  align-self: start;
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  overflow: hidden;
}

.section-header {
  padding: 13px 18px;
  background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 100%);
  border-bottom: 2px solid #1d4ed8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header h2,
.section-header h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 5px 14px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
}

.view-all:hover {
  background: #f59e0b;
  color: #0f172a;
  border-color: #f59e0b;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Job List Items */
.job-list {
  list-style: none;
}

.job-item {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s ease;
}

.job-item:last-child {
  border-bottom: none;
}

.job-item:hover {
  background: #f8fafc;
}

.job-main h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.job-main h3 a {
  color: var(--dark);
}

.job-main h3 a:hover {
  color: var(--primary);
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.tag-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
}

.tag-badge.last-date {
  background: var(--accent-light);
  color: var(--accent);
}

.btn-apply {
  background: var(--primary);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
}

.btn-apply:hover {
  background: var(--primary-dark);
}

/* ================= 15-POINT POST DETAIL LAYOUT ================= */
.post-header {
  padding: 28px 36px 20px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.post-breadcrumbs,
.rank-math-breadcrumb,
.rank-math-breadcrumb p,
.rank-math-breadcrumb * {
  font-size: 11.5px !important;
}

.post-breadcrumbs,
.rank-math-breadcrumb,
.rank-math-breadcrumb p {
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 5px;
}

.rank-math-breadcrumb a,
.post-breadcrumbs a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  font-size: 11.5px !important;
}

.rank-math-breadcrumb a:hover,
.post-breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.rank-math-breadcrumb .separator,
.post-breadcrumbs .separator {
  color: #94a3b8;
  margin: 0 1px;
  font-size: 11px !important;
}

.rank-math-breadcrumb .last,
.post-breadcrumbs .last,
.post-breadcrumbs span:last-child {
  color: #475569;
  font-weight: 500;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: bottom;
  font-size: 11.5px !important;
}

.post-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.post-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 4px;
}

.post-featured-image {
  margin: 0 0 22px 0;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: #f8fafc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-featured-image img,
.post-featured-image .featured-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.post-content,
.entry-content {
  padding: 32px 36px;
  background: #ffffff;
  font-size: 16.5px;
  line-height: 1.8;
  color: #334155;
}

.post-content h2,
.entry-content h2 {
  font-size: 22px;
  color: var(--primary-dark);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

.post-content h3,
.entry-content h3 {
  font-size: 18px;
  color: var(--dark);
  margin: 24px 0 12px;
  font-weight: 700;
}

.post-content h4,
.entry-content h4 {
  font-size: 16px;
  color: var(--dark);
  margin: 20px 0 10px;
  font-weight: 700;
}

.post-content p,
.entry-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

.post-content ol,
.entry-content ol {
  margin: 16px 0 24px 0;
  padding-left: 28px;
  list-style: decimal;
}

.post-content ul,
.entry-content ul {
  margin: 16px 0 24px 0;
  padding-left: 28px;
  list-style: disc;
}

.post-content li,
.entry-content li {
  margin-bottom: 10px;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}

.post-content ol ol,
.post-content ul ul,
.entry-content ol ol,
.entry-content ul ul {
  margin: 8px 0 12px;
  padding-left: 22px;
}

/* Table Style */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.custom-table th,
.custom-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.custom-table th {
  background: #f1f5f9;
  font-weight: 700;
  color: var(--dark);
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table tr:hover td {
  background: #fafafa;
}

/* Action Links Table */
.links-table td {
  font-weight: 600;
}

.btn-link-action {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  color: #fff !important;
}

.btn-link-green { background: #16a34a; }
.btn-link-green:hover { background: #15803d; }
.btn-link-blue { background: #2563eb; }
.btn-link-blue:hover { background: #1d4ed8; }
.btn-link-red { background: #dc2626; }
.btn-link-red:hover { background: #b91c1c; }

/* Checklist */
.check-list {
  list-style: none;
  margin: 12px 0 20px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

/* Callout Box */
.callout-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0 24px;
  text-align: justify;
  text-justify: inter-word;
}

.callout-box.info {
  background: var(--primary-light);
  border-left-color: var(--primary);
}

/* ================= AD SLOTS ================= */
.ad-slot-container {
  margin: 20px 0;
  text-align: center;
  overflow: hidden;
  clear: both;
}

.ad-slot-container.header-ad { margin: 10px 0 20px; }
.ad-slot-container.sidebar-ad { margin: 0 0 24px; }

/* ================= FOOTER & DISCLAIMER ================= */
.site-footer {
  background: var(--footer-bg, #0f172a);
  color: var(--footer-text, #94a3b8);
  padding: 40px 0 20px;
  margin-top: 40px;
  border-top: 4px solid var(--footer-border, var(--primary));
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 18px !important;
  }

  .footer-col-about {
    grid-column: 1 / -1 !important;
  }

  .footer-col-categories {
    grid-column: 1 / 2 !important;
  }

  .footer-col-legal {
    grid-column: 2 / 3 !important;
  }

  .footer-col-contact {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 650px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 14px !important;
  }

  .footer-col-about {
    grid-column: 1 / -1 !important;
  }

  .footer-col-categories {
    grid-column: 1 / 2 !important;
  }

  .footer-col-legal {
    grid-column: 2 / 3 !important;
  }

  .footer-col-contact {
    grid-column: 1 / -1 !important;
  }
  
  .footer-col h3 {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

  .footer-links li {
    margin-bottom: 7px !important;
    font-size: 13px !important;
  }
}

.footer-brand-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #f59e0b; /* Full-width golden underline across text */
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-col ul,
.footer-links {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col li,
.footer-links li {
  list-style: none !important;
  list-style-type: none !important;
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--footer-link, #cbd5e1);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* Contact Us Details List (Screenshot Style) */
.footer-contact-list {
  list-style: none;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--footer-text, #cbd5e1);
  line-height: 1.8;
}

.footer-contact-list li {
  margin-bottom: 6px;
}

.footer-contact-list strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact-list a {
  color: var(--footer-link, #cbd5e1);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

/* Circular Social Icons Strip (Exact Screenshot Style) */
.footer-social-circle-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.footer-social-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  box-sizing: border-box;
}

.footer-social-circle svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

.footer-social-circle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.footer-social-circle.social-facebook:hover { background: #1877F2; color: #ffffff; }
.footer-social-circle.social-whatsapp:hover { background: #25D366; color: #ffffff; }
.footer-social-circle.social-linkedin:hover { background: #0A66C2; color: #ffffff; }
.footer-social-circle.social-youtube:hover  { background: #FF0000; color: #ffffff; }
.footer-social-circle.social-telegram:hover { background: #229ED9; color: #ffffff; }
.footer-social-circle.social-twitter:hover  { background: #000000; color: #ffffff; }
.footer-social-circle.social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
}

.footer-custom-links {
  color: var(--footer-link, #cbd5e1);
  line-height: 1.6;
}

.legal-disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: var(--radius);
  color: #cbd5e1;
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.6;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.copyright-bar .copyright-link {
  color: #38bdf8;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.copyright-bar .copyright-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.copyright-bar .copyright-text {
  color: #e2e8f0;
  font-weight: 700;
}

/* ================= POST SOCIAL JOIN BANNERS (EXACT IMAGE 2) ================= */
.cgssbn-social-join-stack,
.cgssbn-social-join-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 20px 0 !important;
  width: 100% !important;
  clear: both !important;
}

.social-join-card {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 8px 14px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  width: 100% !important;
  transition: all 0.2s ease-in-out !important;
}

.social-join-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.social-join-icon,
.social-join-left svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.social-join-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.2 !important;
}

.social-join-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 16px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  text-align: center !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
  transition: all 0.2s ease !important;
}

/* WhatsApp Box - Exact Image 2 */
.social-join-card.join-whatsapp {
  border: 1.5px solid #22c55e !important;
  background: #ffffff !important;
}

.social-join-card.join-whatsapp:hover {
  background: #f0fdf4 !important;
}

.social-join-card.join-whatsapp .social-join-icon,
.social-join-card.join-whatsapp svg {
  color: #22c55e !important;
  fill: currentColor !important;
}

.social-join-card.join-whatsapp .social-join-btn {
  background: #22c55e !important;
}

.social-join-card.join-whatsapp:hover .social-join-btn {
  background: #16a34a !important;
}

/* Telegram Box - Exact Image 2 */
.social-join-card.join-telegram {
  border: 1.5px solid #0ea5e9 !important;
  background: #ffffff !important;
}

.social-join-card.join-telegram:hover {
  background: #f0f9ff !important;
}

.social-join-card.join-telegram .social-join-icon,
.social-join-card.join-telegram svg {
  color: #0ea5e9 !important;
  fill: currentColor !important;
}

.social-join-card.join-telegram .social-join-btn {
  background: #0ea5e9 !important;
}

.social-join-card.join-telegram:hover .social-join-btn {
  background: #0284c7 !important;
}

/* Responsive Controls */
@media (max-width: 992px) {
  .main-grid { grid-template-columns: 1fr; gap: 16px; }
  .quick-boxes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  main.container {
    margin-top: 10px !important;
  }

  .mobile-menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 12px 16px;
  }
  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 6px; }
  .main-nav ul ul { position: static; box-shadow: none; border: none; padding-left: 14px; }
  .header-inner { flex-wrap: wrap; padding: 10px 0; }

  /* Mobile Single Post Spacing Optimization */
  .section-card {
    border-radius: 8px;
    margin-bottom: 14px;
  }

  .post-header {
    padding: 16px 14px 12px;
  }

  .post-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .post-meta-strip {
    gap: 8px 12px;
    font-size: 12px;
    padding-bottom: 0;
  }

  .post-content,
  .entry-content {
    padding: 14px 14px 18px;
    font-size: 15.5px;
    line-height: 1.65;
  }

  .post-content h2,
  .entry-content h2 {
    font-size: 18px;
    margin: 20px 0 10px;
    padding-bottom: 6px;
  }

  .cgssbn-social-join-stack,
  .cgssbn-social-join-grid {
    margin: 12px 0 16px !important;
    gap: 8px !important;
  }

  .social-join-card {
    padding: 7px 10px !important;
  }

  .social-join-title {
    font-size: 14.5px !important;
  }

  .social-join-btn {
    padding: 5px 12px !important;
    font-size: 12.5px !important;
  }
}

@media (max-width: 768px) {
  .quick-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0;
  }

  .quick-box {
    padding: 12px 10px;
    gap: 10px;
    border-radius: 8px;
  }

  .quick-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
    border-radius: 8px;
  }

  .quick-title {
    font-size: 14.5px;
  }

  .quick-desc {
    font-size: 11.5px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  
  main.container {
    margin-top: 8px !important;
  }

  .quick-boxes {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin: 12px 0 !important;
  }

  .quick-box {
    padding: 10px 8px !important;
    gap: 8px !important;
    border-radius: 8px !important;
    border-top-width: 3px !important;
  }

  .quick-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 18px !important;
    border-radius: 6px !important;
  }

  .quick-title {
    font-size: 13.5px !important;
    line-height: 1.25 !important;
  }

  .quick-desc {
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin-top: 2px !important;
  }

  .job-item { flex-direction: column; align-items: flex-start; }
  .btn-apply { width: 100%; text-align: center; margin-top: 8px; }
  
  .post-header {
    padding: 14px 12px 10px;
  }

  .post-title {
    font-size: 18.5px;
    margin-bottom: 8px;
  }

  .post-content,
  .entry-content {
    padding: 12px 12px 16px;
    font-size: 15px;
  }
  
  .custom-table th,
  .custom-table td {
    padding: 8px 10px;
    font-size: 13.5px;
  }
}
