/* ************************************ Header CSS Code Start */
/* === General Body === */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff !important;
  color: #000000;
}
p{
    text-align: justify;
}
/* === Header & Footer === */
.header-gradient,
.footer-gradient,
.mobile-topbar {
  background-color: #ffffff !important;
  border-bottom: 2px solid #0000001a;
}
.header-gradient{
  border-top: 5px solid #ffc107;
  border-bottom: 5px solid red;
}

#mobileSidebar{
  /* background: linear-gradient(45deg, red, #ffc107); */
  background: #fff;
  transition: 10s ease;
}
#mobileSidebar .nav{
  text-align: center;
}
#mobileSidebar .nav-item{
      box-shadow: 2.0px 1px 10px .5px #ffffff52;
    margin: 10px 0 0;
}
#mobileSidebar .nav-link{
  color: white;
  border-top: 2px solid red;
  border-bottom: 2px solid rgb(255, 0, 0);
  border-radius: 10px;
  padding: 10px;
}

.header-gradient h1,
.header-gradient .nav-link,
.mobile-topbar span,
.mobile-bottombar a {
  font-weight: bold;
  color: #000000 !important;
}

/* === Nav Links === */
.nav-link {
  color: #000000 !important;
  transition: color 0.3s ease-in-out;
}
.nav-link:hover {
  color: #555555 !important;
}

/* === Mobile Bottom Bar === */
.mobile-bottombar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
  border-top: 1px solid #0000002b;
  z-index: 1000;
}
.mobile-bottombar a {
  color: #000000;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
}
.mobile-bottombar i {
  font-size: 18px;
  display: block;
}
.mobile-bottombar a:hover {
  color: #555555;
}

/* === Sidebar (Mobile) === */
.sidebar {
  position: fixed;
  top: 55px;
  left: 0;
  width: 75%;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 1rem;
  display: none;
  z-index: 1050;
  transition: 10s ease;
  overflow-y: auto;
}
.sidebar.active {
  display: block;
}
.sidebar .nav-link {
  color: #ffffff;
  padding: 0.75rem 0;
  font-weight: 500;
}
.sidebar .nav-link:hover {
  color: #555555;
}

/* === Headings & Emphasis === */
h1, h2, h3, h4, h5 {
  color: #000000;
}
.lead {
  color: #333333;
}

/* === Responsive Fixes === */
@media (min-width: 768px) {
  .mobile-topbar,
  .mobile-bottombar {
    display: none !important;
  }
}
/* ************************************ CSS Code End */

/* ************************************ Index CSS Code Start */
/* === Announcement Section === */
#announcement marquee {
  font-size: 1rem;
  padding: 0.5rem 0;
}

/* === Job Slider Section === */
.job-scroll {
  white-space: nowrap;
  scroll-behavior: smooth;
}
.min-width-job {
  min-width: 250px;
  max-width: 250px;
  background-color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.min-width-job:hover {
  transform: translateY(-4px);
}
/* ************************************ CSS Code End */

/* ************************************ CSS Code Start */
/* ************************************ CSS Code End */

/* ************************************ Blog CSS Code Start */
/* === Blog Page Styling === */
.blog-slider {
  scroll-behavior: smooth;
  white-space: nowrap;
}

.min-width-blog {
  min-width: 250px;
  max-width: 250px;
  background-color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.min-width-blog:hover {
  transform: translateY(-5px);
}

.blog-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

.blog-card p {
  line-height: 1.4;
  max-height: 3.2em;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 576px) {
  .min-width-blog {
    min-width: 85%;
  }
}

/* ************************************ CSS Code End */

/* ************************************ Contact CSS Code Start */
#contact-page {
  background-color: #fff;
}

#contact-page form input,
#contact-page form textarea {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}

#contact-page form input:focus,
#contact-page form textarea:focus {
  border-color: #000;
  outline: none;
  box-shadow: none;
}
/* ************************************ CSS Code End */