/* GLOBAL TEXT */
*{
	margin: 0;
	padding: 0;
}
body {
  background-color: #f8f9fa;
  font-family: "Georgia", serif;
}

/* Common text size */
.common-text {
  font-size: 18px;
  text-align: justify;
  color: #444;
}

/* Cards */
.card {
  border-radius: 10px;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* Highlight boxes hover */
.box-hover {
  transition: transform 0.3s ease;
}
.box-hover:hover {
  transform: scale(1.05);
}

/* Maroon color */
.bg-maroon {
  background-color: #660000 !important;
}

/* Links */
ul li a {
  font-family: "Georgia", serif;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
ul li a:hover {
  color: #cc0000 !important;
  font-style: italic;
  text-decoration: underline;
}
/* Homepage FAQ only */
.homepage_faq {
    max-width: 1200px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 8px;
    background-color: #f4f8ff; 
}

.homepage_faq h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #003366;
    font-size: 26px;
    font-weight: bold;
}

.faq_item {
    margin-bottom: 12px;
}

.faq_question {
    width: 100%;
    padding: 14px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #ddd;
    text-align: left;
    cursor: pointer;
    color: #222;
    font-size: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.faq_question:hover {
    background-color: #eaf2ff;
}

.faq_answer {
    display: none;
    padding: 12px;
    background: #ffffff;
    border-left: 3px solid #007bff;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}
/* Section spacing */
.section-box {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}

/* Job Search Section */
.job-search-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
}

.job-search-header {
  background: #212529; /* dark */
  color: #fff;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 15px;
}

.job-search-content p {
  font-size: 18px;
  color: #555;
  text-align: justify;
  line-height: 1.7;
}

.job-search-content ul {
  padding-left: 20px;
  color: #333;
  line-height: 1.8;
  font-size: 18px;
}

.job-search-content ul li {
  margin-bottom: 8px;
}
.category-font{
	font-size: 22px;
	font-weight: bold;
}

/* Animated underline heading */
.section-title {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 6px;
}

/* animated line */
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: #0d6efd;

  transform: scaleX(0);
  transform-origin: left;
  animation: lineMove 3.5s ease-in-out infinite;
}

/* animation */
@keyframes lineMove {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .common-text {
    font-size: 16px;
  }

  ul li a {
    font-size: 15px;
  }
	.job-search-header {
    font-size: 16px;
  }

  .job-search-content p,
  .job-search-content ul {
    font-size: 15px;
	text-align: justify;
  }
}