.custom-notice-bar {
  background-color: #324A6C;
  display: flex;
  align-items: stretch; /* ✅ Ensures full height alignment */
  min-height: 50px;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.notice-label {
  width: 15%;
  min-width: 100px; /* Prevent breaking on very small screens */
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  background-color: #FDBB11;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap; /* ✅ Prevents breaking into two lines */
}

.notice-marquee {
  width: 85%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 0 10px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 15s linear infinite;
  font-size: 16px;
  font-weight: bold;
  color: #FDBB11;
  line-height: 1;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .notice-label {
    width: auto;
    min-width: 80px;
    font-size: 13px;
    padding: 0 6px;
  }

  .notice-marquee {
    width: calc(100% - 80px); /* Dynamically adjusts based on label width */
  }

  .marquee-content {
    font-size: 13px;
  }
}







/* Course Title */

  /* Title Style */
.course-title-custom {
  background-color: #324A6C;
  color: #fff;
  width: 314px; /* Fixed width for all titles */
  height: 50px;  /* Fixed height */
  line-height: 50px; /* Vertically center text */
  display: inline-block;
  text-align: center;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-title-custom:hover {
  background-color: #FDBB11;
  color: #003f87; /* Optional: text color change on hover */
}


.course-meta-custom {
  display: flex;
  flex-wrap: nowrap; /* Keeps items in a single row */
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: row;
  align-items: center;
}

.course-meta-custom li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8f8f8;
  padding: 10px 20px;
  border-radius: 10px;
  min-width: 140px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.meta-label {
  font-size: 13px;
  font-weight: 600;
  color: #324A6C;
  margin-bottom: 3px;
  text-transform: uppercase;
  text-align: center;
}

.meta-value {
  font-size: 14px;
  font-weight: 600;
  color: #BD423B;
  text-align: center;
}


/* Responsive Adjustments */
@media (max-width: 576px) {
  .course-title-custom {
    width: 287px;
    height: 45px;
    font-size: 15px;
    line-height: 45px;
  }
  .course-meta-custom {
    gap: 10px;
    overflow-x: auto; /* Optional: horizontal scroll for very small screens */
  }

  .course-meta-custom li {
    width: 140px; /* Still fixed */
    min-height: 75px;
    padding: 8px 10px;
  }

  .meta-label,
  .meta-value {
    font-size: 12px;
  }

}


/* Course Details */

.course-info-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* key line for gap */
}

.info-box {
  flex: 1 1 calc(50% - 10px); /* two boxes per row with space */
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border-left: 5px solid #BD423B;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 10px 15px;
}

.info-icon {
  font-size: 36px;
  color: #324A6C;
  margin-right: 15px;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-weight: 700;
  font-size: 14px;
  color: #BD423B;
}

.info-data {
  font-size: 16px;
  color: #324A6C;
}

/* ✅ Responsive: full width on mobile */
@media (max-width: 767px) {
  .info-box {
    flex: 1 1 100%;
  }
}

 .single-service img {
  width: 100%; /* Full width */
  height: auto; /* Maintain aspect ratio */
  max-height: 60vh; /* Limit height to 60% of viewport height */
  object-fit: cover; /* Crop slightly to fit */
  border-radius: 10px;
}


/* Faculty */

.team-members:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(50, 74, 108, 0.25);
}

.team-thumb {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #BD423B;
  border-radius: 8px 8px 0 0;
}

.team-thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.team-thumb:hover img {
  transform: scale(1.05);
}

.team-overlay {
  background: rgb(201 186 160 / 40%); /* Transparent dark blue */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Header CSS */

 @media only screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 6px;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Background colors */
.bg-facebook { background-color: #3b5998; }
.bg-instagram { background-color: #e1306c; }
.bg-youtube { background-color: #ff0000; }
.bg-linkedin { background-color: #0077b5; }
.bg-whatsapp { background-color: #25D366; }


.text-theme-colored3 {
    color: #BD423B !important;
}

.about-img {
  height: 688px;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
}

/* On small screens, reduce height for better view */
@media (max-width: 767px) {
  .about-img {
    height: 300px;
  }
}

.position-relative {
  position: relative;
}

.author-label {
  position: absolute;
  bottom: 15px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent background */
  padding: 6px 12px;
  
}

.author-label li {
  margin: 0;
  list-style: none;
}

/* Scrollable dropdown */
.scrollable-dropdown {
  max-height: 300px; /* Adjust height as needed */
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar style */
.scrollable-dropdown::-webkit-scrollbar {
  width: 8px;
}

.scrollable-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.scrollable-dropdown::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scrollable-dropdown::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.card-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .fa-shield {
    margin-top: 30px !important;
  }
}

.custom-testimonial .thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid white;
    flex-shrink: 0;
  }

  .custom-testimonial .thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50% !important;
    display: block !important;
    transition: all 0.3s ease;
  }

  /* Ordered list with custom numbers */
.custom-numbered-list {
  counter-reset: custom-counter;
  margin-left: 1.5em;
  padding-left: 0;
}

.custom-numbered-list li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.5em;
}

.custom-numbered-list li::before {
  content: counter(custom-counter) ". ";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: bold;
}

/* Unordered list with custom bullets (optional) */
.custom-bullet-list {
  margin-left: 1.5em;
  padding-left: 0;
}

.custom-bullet-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}

.custom-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
  font-size: 1.2em;
  line-height: 1;
}

.custom-description {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Base Table Styles */
.custom-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ccc;
}

/* Table Header */
.custom-description thead {
  background-color: #324A6C;
  color: white;
}

.custom-description thead th {
  padding: 12px 15px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #fff; /* White border between ths */
}

/* Title Row (merged th) */
.custom-description thead tr:first-child th {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #FDBB11;
  border: 1px solid #fff;
  color: black;
}

/* Table Body */
.custom-description tbody td {
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  word-break: break-word;
  text-align: center;
}

/* Hover Effect */
.custom-description tbody tr:hover {
  background-color: #f1f7ff;
}

/* Yellow Color Implementation */

.header-top {
    border-bottom: 2px solid #FDBB11;
}

#footer {
    border-top: 2px solid #FDBB11;
}

.section-3{
  border-top: 2px solid #FDBB11;
  border-bottom: 2px solid #FDBB11;
}

.footer-about {
  background: #FDBB11;
  color: black;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-about:hover {
  background: #FDBB11; /* Dark blue hover background */
  color: black;      /* White text on hover */
}

.trades img{

  border-bottom: 3px solid #FDBB11;
}
