html, body {
  height: 100%;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 
               'Segoe UI', Roboto, Arial, sans-serif;
}

/* SEO Section Text Fix */
.seo-content,
.seo-content p,
.seo-content h2,
.seo-content h3,
.seo-content h4,
.seo-content li,
.seo-content strong {
    color: #212529 !important;  /* Bootstrap dark text */
}

/* Links color */
.seo-content a {
    color: #0d6efd !important;
}

/* Accordion button text fix */
.accordion-button {
    color: #212529 !important;
}



body {
  background: #f2f6f6;
  color: #222;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 3px solid #1c7578;
  position: sticky;
  top: 0;
  z-index: 999;
}

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

/* BRAND */
.brand {
  display: flex;
  align-items: center;
}

.logo-icon {
/*   background: #1c7578; */
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.logo-icon img {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
    margin: 12px 0px 0px -16px;
}

.brand-text h1 {
  font-size: 22px;
  color: #1c7578;
  margin: 0;
}

.brand-text span {
  font-size: 12px;
  color: #555;
}

/* NAV */
.main-nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.main-nav a:hover {
  color: #1c7578;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #1c7578;
  left: 0;
  bottom: -5px;
  transition: .3s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .brand-text h1 {
    font-size: 18px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }
}


/* NOTICE */
.notice {
  background: #ffeb3b;
  padding: 10px;
  text-align: center;
  font-weight: 600;
}

/* HERO */
.hero {
  margin: 40px auto;
  text-align: center;
}

.hero h2 {
  font-size: 30px;
  color: #1c7578;
}

.hero p {
  margin: 15px 0;
}

.btn {
  background: #1c7578;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.card {
  color: #fff;
  padding: 18px;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0,0,0,.15);
  transition: transform .3s;
}

.card:hover {
  transform: translateY(-5px);
}

.red { background: #e53935; }
.green { background: #43a047; }
.blue { background: #1e88e5; }
.orange { background: #fb8c00; }

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(0,0,0,.1);
}

.box h3 {
  margin-bottom: 10px;
  color: #1c7578;
}

.box ul {
  list-style: none;
}

.box li {
  padding: 6px 0;
  border-bottom: 1px dashed #ccc;
}

.box a {
  display: inline-block;
  margin-top: 10px;
  color: #1c7578;
  font-weight: bold;
  text-decoration: none;
}

/* SEO */
.seo {
  background: #fff;
  margin: 40px auto;
  padding: 25px;
  border-radius: 10px;
}

/* FOOTER */
.footer {
  background: #1c7578;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cards,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 24px;
  }
}
.motivation {
  background: linear-gradient(135deg, #1c7578, #249ea3);
  color: #fff;
  padding: 30px;
  margin: 40px auto;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

.motivation h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.motivation p {
  font-size: 18px;
  margin-bottom: 8px;
  font-style: italic;
}

.motivation span {
  font-size: 14px;
  opacity: 0.9;
}



.contact-page h3 {
  margin-top: 25px;
  color: #1c7578;
}

.contact-page p {
  line-height: 1.7;
}



.policy-page h1 {
  margin-bottom: 20px;
}

.policy-page h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #1c7578;
}

.policy-page ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-page li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.policy-page p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.disclaimer-page h1 {
  margin-bottom: 20px;
}

.disclaimer-page p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

#force-footer{
	display:none;
}


/* contact page  */

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #1c7578, #249ea3);
  color: #fff;
  padding: 45px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 15px;
  opacity: 0.95;
}

/* BREADCRUMB */
.breadcrumb {
  margin-bottom: 10px;
  font-size: 13px;
}

.breadcrumb a {
  color: #e0f2f2;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 5px;
  color: #d0eeee;
}

/* CONTACT PAGE */
.contact-page h3 {
  margin-top: 25px;
  color: #1c7578;
}

.contact-page p {
  line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 24px;
  }
}

/* conatct page end */

/* latest jobs */
/* JOB ARCHIVE */
.job-archive {
  margin: 50px auto;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.job-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.job-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.job-card h2 a {
  color: #1c7578;
  text-decoration: none;
}

.job-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* BUTTON */
.job-btn {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  background: #1c7578;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

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

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

.job-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

/* IMAGE */
.job-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.job-content {
  padding: 18px;
}

.job-content h2 {
  font-size: 17px;
  margin-bottom: 8px;
}

.job-content h2 a {
  color: #1c7578;
  text-decoration: none;
}

.job-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.job-btn {
  display: inline-block;
  margin-top: 12px;
  background: #1c7578;
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

.coming-soon {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  max-width: 500px;
  margin: 60px auto;
}

.coming-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.coming-soon h2 {
  color: #1c7578;
  margin-bottom: 10px;
}

.coming-soon p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* latest job end */

/* blogs section */
.latest-posts {
  margin: 60px auto;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
  position: relative;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Hamesha 3 columns */
  gap: 25px;
}

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

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


.post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
}

.post-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.post-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.post-content {
  padding: 15px;
  text-align: left;
}

.post-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
}

.post-content p {
  font-size: 14px;
  color: #555;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #e63946;
  font-weight: bold;
  font-size: 14px;
}
/* blog section */

/* single page blog */
/* ===== BLOG PAGE LAYOUT ===== */
.blogDetailpage {
  padding: 60px 0;
  background: #f8f9fb;
}

.blogDetailwrap {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

/* ===== LEFT SIDE BLOG CONTENT ===== */
.BlogDetailBox {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 30px;
}

.BlogDetailBox h2 {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #1a1a1a;
}

.BlogDetailBox p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

.BlogDetailBox h2 strong {
  font-size: 22px;
  display: block;
  margin-top: 30px;
  color: #0d1b2a;
}

.BlogDetailBox ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.BlogDetailBox ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* ===== FEATURED IMAGE ===== */
.imgwrapper {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.imgwrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* ===== DATE ===== */
.DateDiv {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

/* ===== RIGHT SIDEBAR ===== */
.BlogDetailRhs {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.recentPostWidget {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.recentPostWidget h4 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* ===== RECENT POSTS LIST ===== */
.postwidgetflex {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: center;
}

.postwidgetflex .imgwrapper {
  width: 90px;
  height: 70px;
  flex-shrink: 0;
}

.postwidgetflex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.recentpostcontent p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.recentpostcontent a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.recentpostcontent a:hover {
  color: #e63946;
}

/* ===== INNER BANNER ===== */
.InnerBanner {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  padding: 60px 0;
  color: #fff;
  text-align: center;
}

.InnerBanner h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

/* ===== FOOTER SPACING FIX ===== */
footer {
  margin-top: 60px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .blogDetailwrap {
    grid-template-columns: 1fr;
  }

  .BlogDetailRhs {
    position: relative;
    top: auto;
  }
}

/* ===== COMMENTS SECTION ===== */
#comments {
  margin-top: 50px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#comments h2,
#comments h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* Individual Comment */
.comment {
  list-style: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.comment-body {
  display: flex;
  gap: 15px;
}

.comment-author img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.comment-content {
  flex: 1;
}

.comment-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

.comment-meta a {
  color: #777;
  text-decoration: none;
}

.comment-content p {
  margin: 8px 0;
  line-height: 1.7;
}

/* Reply Button */
.reply a {
  font-size: 13px;
  color: #e63946;
  text-decoration: none;
  font-weight: 500;
}

.reply a:hover {
  text-decoration: underline;
}

/* Comment Form */
.comment-respond {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #f1f1f1;
}

.comment-respond h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  font-size: 14px;
}

.comment-form textarea {
  min-height: 120px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #e63946;
  outline: none;
  box-shadow: 0 0 0 2px rgba(230,57,70,0.1);
}

/* Submit Button */
.comment-form .submit {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.comment-form .submit:hover {
  background: #c72c3b;
}

/* single poage blog  */


/* homepage footer content  */
.seo-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  font-size: 15px;
  line-height: 1.8;
}

.seo-link {
  display: block;
  background: #f1f3f5;
  padding: 6px 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  transition: 0.3s;
}

.seo-link:hover {
  background: #e63946;
  color: #fff;
}
/* homepage footer content */

.updates h2{
	color:#1c7578;
}

/* 🔔 Breaking News Ticker */
.notice-bar {
  background: linear-gradient(90deg, #d90429, #ef233c);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
  font-weight: 500;
  font-size: 14px;
}

.notice-track {
  display: inline-block;
  padding-left: 100%;
  animation: scrollTicker 20s linear infinite;
}

.notice-track span {
  margin-right: 70px;
}

.notice-bar i {
  color: #ffd60a;
}

@keyframes scrollTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.notice-bar:hover .notice-track {
  animation-play-state: paused;
}

