/* ============================================ */
/* CUSTOM CSS - ALL STYLES IN ONE PLACE */
/* ============================================ */

/* ========== GLOBAL STYLES ========== */
* {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
.bg-light {
  background-color: rgb(241 248 255) !important;
}
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Almarai", "Segoe UI", "Tahoma", "Arial", sans-serif;
  direction: rtl;
  text-align: right;
  max-width: 100%;
}

/* تحسين الأداء للأجهزة المحمولة */
@media (max-width: 768px) {
  * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

  body,
  html {
    overflow-x: hidden !important;
  }

  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

a,
button {
  transition: all 0.3s ease;
}

/* ========== ACCESSIBILITY ========== */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background-color: #f59e0b;
  padding: 0.3rem 0;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-link {
  color: #083987;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.top-bar-link:hover {
  color: #ffffff;
  background-color: rgba(28, 80, 138, 0.2);
}

/* ========== NAVBAR ========== */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.navbar.fixed-top {
  top: 30px;
}

/* Navbar always fixed for non-home pages */
body:not(.home-page) .navbar {
  position: fixed !important;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: #ffffff !important;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

body:not(.home-page) .navbar .nav-link {
  color: #083987 !important;
}

body:not(.home-page) .navbar .nav-link:hover {
  color: #f59e0b !important;
}

body:not(.home-page) .navbar .nav-link.active {
  color: #f59e0b !important;
}

body:not(.home-page) .navbar .logo-default {
  display: inline-block;
}

body:not(.home-page) .navbar .logo-white {
  display: none !important;
}

body:not(.home-page) .navbar-toggler {
  border-color: #083987;
}

body:not(.home-page) .navbar-toggler-icon {
  filter: none;
}

/* Navbar scrolled state for non-home pages - stay white */
body:not(.home-page) .navbar.scrolled {
  background-color: #ffffff !important;
}

body:not(.home-page) .navbar.scrolled .nav-link {
  color: #083987 !important;
}

body:not(.home-page) .navbar.scrolled .logo-default {
  display: inline-block;
}

body:not(.home-page) .navbar.scrolled .logo-white {
  display: none !important;
}

body:not(.home-page) .navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

/* Add padding to body for non-home pages to prevent content hiding under navbar */
body:not(.home-page) {
  padding-top: 127px;
}

/* Navbar scrolled state */
.navbar.scrolled {
  background-color: #083987 !important;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

.navbar.scrolled .nav-link {
  color: #ffffff !important;
}

.navbar.scrolled .nav-link:hover {
  color: #f59e0b !important;
}

.navbar.scrolled .nav-link.active {
  color: #f59e0b !important;
}

.navbar.scrolled .navbar-toggler {
  border-color: #ffffff;
}

.navbar.scrolled .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar.scrolled .logo-default {
  display: none;
}

.navbar.scrolled .logo-white {
  display: inline-block !important;
}

.navbar .nav-link {
  color: #083987 !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar .nav-link:hover {
  color: #f59e0b !important;
  transform: translateY(-2px);
}

.navbar .nav-link.active {
  color: #f59e0b !important;
  font-weight: 500;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #f59e0b;
  border-radius: 2px;
}

.navbar-brand img {
  height: 55px;
  transition: opacity 0.3s ease;
}

.navbar-brand .logo-white {
  display: none;
}

.navbar.scrolled .logo-default {
  display: none;
}

.navbar.scrolled .logo-white {
  display: inline-block;
}

.sidebar-toggle-btn {
  background: transparent;
  border: none;
  color: #f09433;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.sidebar-toggle-btn:hover {
  /* background: #083987; */
  color: #083987;
  transform: scale(1.05);
}

/* Scrolled navbar button colors */
.navbar.scrolled .sidebar-toggle-btn {
  border-color: #ffffff;
  color: #f09433;
}

.navbar.scrolled .sidebar-toggle-btn:hover {
  background: #ffffff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231c508a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== DROPDOWN MENU ========== */
/* Hide default dropdown arrow */
.dropdown-toggle::after {
  display: none;
}

/* Add custom arrow before text for RTL */
.dropdown-toggle::before {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: 0.15em;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-menu {
  background-color: #ffffff;
  border: 0.5px solid #f1f0f0;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
}

.dropdown-menu li {
  position: relative;
  text-align: center;
}

.dropdown-menu li:not(:last-child)::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background-color: #d0d0d0;
  margin: 0.5rem auto;
}

.dropdown-item {
  color: #083987;
  padding: 0.75rem 1rem;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: center;
  background-color: transparent;
}

.dropdown-item:hover {
  background-color: transparent;
  color: #f59e0b;
}

.dropdown-item:active {
  background-color: transparent;
  color: #083987;
}

.dropdown-item:focus {
  background-color: transparent;
  color: #083987;
}

/* Dropdown for scrolled navbar */
.navbar.scrolled .dropdown-menu {
  background-color: #ffffff;
  border: 0.5px solid #e6e6e6;
}

.navbar.scrolled .dropdown-item {
  color: #083987;
}

.navbar.scrolled .dropdown-item:hover {
  background-color: transparent;
  color: #f59e0b;
}

/* ========== SIDEBAR MENU ========== */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.sidebar-menu.active {
  right: 0;
}

.sidebar-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #083987 0%, #2c5282 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.sidebar-close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.sidebar-close-btn:hover {
  transform: rotate(90deg);
}

.sidebar-content {
  padding: 1.5rem;
}

.sidebar-menu-item {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-right: 3px solid transparent;
}

.sidebar-menu-item:hover {
  background: #f0f4f8;
  color: #083987;
  transform: translateX(-5px);
  border-right-color: #f59e0b;
}

.sidebar-menu-item.active {
  background: #e8f0f8;
  color: #083987;
  border-right-color: #083987;
  font-weight: 600;
}

.sidebar-menu-item i {
  color: #f59e0b;
  margin-left: 0.75rem;
  width: 20px;
  text-align: center;
}

/* ========== HERO SECTION ========== */
#hero {
  position: relative;
  overflow: hidden;
  margin-bottom: -200px;
  margin-top: 0;
  height: 61vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 115px 0 360px 0;
}

.hero-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-top: 0;
  letter-spacing: 0.5px;
}

.hero-marketing-section {
  margin-top: 60px;
}

.hero-marketing-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-marketing-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.btn-outline-light.hero-register-btn {
  border-radius: 4px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  color: #ffffff;
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* #hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */

@keyframes heroOverlayAnimation {
  0% {
    background: linear-gradient(
      110deg,
      rgba(64, 64, 64, 0.5) 0%,
      rgba(105, 105, 105, 0.4) 10%,
      rgba(169, 169, 169, 0.3) 20%,
      rgba(211, 211, 211, 0.35) 30%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(211, 211, 211, 0.35) 50%,
      rgba(169, 169, 169, 0.4) 60%,
      rgba(105, 105, 105, 0.4) 70%,
      rgba(64, 64, 64, 0.5) 80%,
      rgba(28, 80, 138, 0.6) 100%
    );
    background-size: 200% 200%;
    background-position: 0% 50%;
  }
  25% {
    background: linear-gradient(
      110deg,
      rgba(64, 64, 64, 0.5) 0%,
      rgba(105, 105, 105, 0.4) 10%,
      rgba(169, 169, 169, 0.3) 20%,
      rgba(211, 211, 211, 0.35) 30%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(211, 211, 211, 0.35) 50%,
      rgba(169, 169, 169, 0.4) 60%,
      rgba(105, 105, 105, 0.4) 70%,
      rgba(64, 64, 64, 0.5) 80%,
      rgba(28, 80, 138, 0.6) 100%
    );
    background-size: 200% 200%;
    background-position: 50% 50%;
  }
  50% {
    background: linear-gradient(
      110deg,
      rgba(64, 64, 64, 0.5) 0%,
      rgba(105, 105, 105, 0.4) 10%,
      rgba(169, 169, 169, 0.3) 20%,
      rgba(211, 211, 211, 0.35) 30%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(211, 211, 211, 0.35) 50%,
      rgba(169, 169, 169, 0.4) 60%,
      rgba(105, 105, 105, 0.4) 70%,
      rgba(64, 64, 64, 0.5) 80%,
      rgba(28, 80, 138, 0.6) 100%
    );
    background-size: 200% 200%;
    background-position: 100% 50%;
  }
  75% {
    background: linear-gradient(
      110deg,
      rgba(64, 64, 64, 0.5) 0%,
      rgba(105, 105, 105, 0.4) 10%,
      rgba(169, 169, 169, 0.3) 20%,
      rgba(211, 211, 211, 0.35) 30%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(211, 211, 211, 0.35) 50%,
      rgba(169, 169, 169, 0.4) 60%,
      rgba(105, 105, 105, 0.4) 70%,
      rgba(64, 64, 64, 0.5) 80%,
      rgba(28, 80, 138, 0.6) 100%
    );
    background-size: 200% 200%;
    background-position: 50% 100%;
  }
  100% {
    background: linear-gradient(
      110deg,
      rgba(64, 64, 64, 0.5) 0%,
      rgba(105, 105, 105, 0.4) 10%,
      rgba(169, 169, 169, 0.3) 20%,
      rgba(211, 211, 211, 0.35) 30%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(211, 211, 211, 0.35) 50%,
      rgba(169, 169, 169, 0.4) 60%,
      rgba(105, 105, 105, 0.4) 70%,
      rgba(64, 64, 64, 0.5) 80%,
      rgba(28, 80, 138, 0.6) 100%
    );
    background-size: 200% 200%;
    background-position: 0% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.search-input::placeholder {
  color: #999;
  font-weight: 400;
}

.search-wrapper:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* ========== BUTTONS ========== */
.btn-yellow {
  background-color: #f59e0b;
  transition: all 0.3s ease;
  color: #ffffff;
  height: 50px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-yellow:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #083987;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 80, 138, 0.3);
}

.btn-primary {
  background-color: #083987;
  border-color: #083987;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #083987;
  border-color: #083987;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 80, 138, 0.3);
}

.btn-outline-primary {
  border-color: #083987;
  color: #083987;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #083987;
  color: #fff;
  border-color: #083987;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 80, 138, 0.3);
}

/* ========== SECTIONS ========== */
.section-title h2 {
  color: #083987;
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.title-decoration {
  width: 80px;
  height: 4px;
  background: #f59e0b;
  margin: 0 auto;
  border-radius: 2px;
}

/* Vision Section Styles */
#vision-section {
  background: transparent;
  display: block !important;
  position: relative;
  margin-top: 0;
  z-index: 100;
  padding-top: 0 !important;
  padding-bottom: 3rem !important;
}

.vision-card-wrapper {
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.vision-card-row {
  height: 450px;
}

.vision-video-col {
  padding: 0;
}

.video-image-wrapper {
  cursor: pointer;
  min-height: 450px;
  position: relative;
}

.vision-video-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1.5px solid #ffffff;
  pointer-events: none;
  z-index: 5;
}

.vision-video-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(205 130 0 / 86%);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.play-button-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 90%;
}

.marketing-text-overlay {
  margin-bottom: 30px;
  padding: 0 20px;
}

.overlay-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
  line-height: 1.4;
}

.overlay-subtitle {
  font-size: 0.95rem;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.6;
}

.play-button-content i {
  font-size: 60px;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 15px;
}

.play-button-content span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  display: block;
}

@media (max-width: 991px) {
  .overlay-title {
    font-size: 1.5rem;
  }

  .overlay-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .overlay-title {
    font-size: 1.2rem;
  }

  .overlay-subtitle {
    font-size: 0.85rem;
  }

  .marketing-text-overlay {
    margin-bottom: 20px;
  }
}

.vision-tabs-col {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 450px;
}

.vision-tabs-border {
  border-bottom: 2px solid #ffffffff;
}

.vision-tab-content {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.vision-text {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}

.vision-list {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* Statistics Section Styles */
.stat-icon-color {
  font-size: 45px;
  color: #f59e0b;
}

.stat-title {
  color: #083987;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-number {
  color: #083987;
  font-weight: 500;
  font-size: 1.75rem;
}

/* Features Section Additional Styles */
.features-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  max-width: 800px;
  margin: 15px auto 0;
}

.feature-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* ========== STATISTICS ========== */
.stat-item {
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item:hover .stat-icon i {
  transform: scale(1.15) rotate(5deg);
  transition: transform 0.3s ease;
}

.stat-icon i {
  transition: all 0.3s ease;
}

/* ========== COURSES ========== */
.course-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
  height: 558px;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.course-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  border-radius: 2px 2px 0 0;
}

.course-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 2px 2px 0 0;
}

.course-card:hover .course-image {
  transform: scale(1.06);
}

.badge-free {
  position: absolute;
  top: 20px;
  left: 15px;
  background: #f59e0b;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 13px;
  z-index: 10;
}

.course-date {
  position: absolute;
  bottom: 245px;
  right: 20px;
  background: #083987;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 2px;
  text-align: center;
  z-index: 100;
  pointer-events: none;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transition: none !important;
  min-width: 75px;
}

.course-card:hover .course-date {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.date-day {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2px;
}

.date-month {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.2;
}

.course-content {
  padding: 25px;
  padding-top: 55px;
  max-height: 280px;
}

.course-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-title {
  color: #083987;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
  /* line-height: 1.4; */
  line-height: normal;
  /* min-height: 60px; */
  max-height: 20px;
  overflow: hidden;
  transition: color 0.3s ease;
}

.course-card:hover .course-title {
  color: #083987;
}

.course-location {
  color: #666;
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.course-location i {
  color: #083987;
  font-size: 14px;
}

.course-department {
  color: #666;
  font-size: 13px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.course-department i {
  color: #083987;
  font-size: 14px;
}

.course-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-footer .btn-more-info {
  width: 100%;
  text-align: center;
}

.badge-available {
  position: absolute;
  top: 20px;
  left: 92px;
  background: #05962eff;
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  z-index: 10;
  display: inline-block;
}

.badge-unavailable {
  background: #c02618;
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  display: inline-block;
}

.btn-more-info {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-more-info:hover {
  color: #083987;
  transform: translateX(-5px);
}

.btn-available {
  background: #05962eff;
  color: #ffffff;
  border: none;
  padding: 4px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-unavailable {
  background: #c02618;
  color: #ffffff;
  border: none;
  padding: 4px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn-available:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(16, 185, 129, 0.4);
}

/* ========== VISION TABS ========== */
#visionTabs .nav-link {
  color: #6c757d;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
}

#visionTabs .nav-link:hover {
  color: #083987 !important;
  border-bottom-color: #083987 !important;
}

#visionTabs .nav-link.active {
  color: #f59e0b !important;
  border-bottom-color: #f59e0b !important;
  background: transparent !important;
}

#visionTabs .nav-link.active::after {
  display: none !important;
}

.video-image-wrapper:hover .video-overlay {
  background-color: rgba(54, 58, 65, 0.81) !important;
}

.video-image-wrapper:hover .play-button-content i {
  font-size: 90px !important;
}

.video-overlay-link {
  text-decoration: none;
  display: block;
}

/* ========== WORKSHOPS ========== */
/* #workshops {
  background: #f8f9fa;
} */

/* ========== FEATURES ========== */
#features {
  height: 780px;
  overflow: hidden;
  position: relative;
}

/* Pattern Background for Features Section */
#features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("pattren.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}

#features > .row {
  position: relative;
  z-index: 1;
}

#features .features-left {
  background: linear-gradient(130deg, #083987 0%, #012772 100%);
  padding: 45px 60px;
  height: 100%;
  position: relative;
}

#features .features-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

#features .features-subtitle {
  color: #ffffff;
  font-size: 14px;
}

.feature-box {
  padding: 30px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  height: 100%;
}

.feature-box i {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.feature-box p {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.feature-box:hover i {
  transform: scale(1.2);
}

#features .features-image-wrapper {
  position: relative;
  height: 780px;
  padding: 0;
}

#features .features-image-container {
  position: relative;
  width: 100%;
  height: 780px;
}

#features .features-image {
  width: 100%;
  height: 773px;
  object-fit: cover;
  display: block;
}

#features .features-image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid #ffffff;
  pointer-events: none;
}

/* ========== EVENTS ========== */

.event-card {
  background: #083987;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 200px;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.event-card .event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card .row {
  height: 100%;
  margin: 0;
}

.event-card .row > div {
  height: 100%;
  padding: 0;
}

.event-card .event-content {
  padding: 25px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.event-card .event-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.event-card .event-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 14px;
}

.event-card .event-info i {
  color: #ffffff;
  font-size: 16px;
  width: 25px;
  margin-right: 10px;
}

.event-card .btn-read-more {
  background: rgb(255 255 255 / 0%);
  color: #ffffff;
  border: 0.5px solid #c8c8c8;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.event-card .btn-read-more i {
  transition: transform 0.3s ease;
}

.event-card .btn-read-more:hover {
  background: #f59e0b;
  color: #ffffff;
  border: none;
  transform: translateY(-2px);
}

.event-card .btn-read-more:hover i {
  transform: translateX(-3px);
}

/* ========== ONLINE COURSES SLIDER ========== */
#online-courses {
  background: #ffffff;
}

.online-course-slide {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.online-course-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    94deg,
    rgba(2, 40, 101, 0) 0%,
    rgba(13, 55, 125, 1) 68%,
    rgba(0, 29, 75, 1) 100%
  );
}

/* Different gradient for hot topics slider */
#seminars .online-course-slide::before {
  background: linear-gradient(
    94deg,
    rgba(2, 40, 101, 0) 0%,
    rgba(13, 55, 125, 1) 68%,
    rgba(0, 29, 75, 1) 100%
  );
}

/* Different gradient for seminars slider at bottom */
#seminars-bottom .online-course-slide::before {
  background: linear-gradient(
    94deg,
    rgba(2, 40, 101, 1) 0%,
    rgba(3, 42, 104, 0.87) 6%,
    rgba(13, 55, 125, 0.45) 44%,
    rgba(0, 29, 75, 0.84) 100%
  );
}

.online-course-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 40px;
}

.online-course-content h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
}

.online-course-divider {
  width: 80px;
  height: 3px;
  background: #f59e0b;
  margin: 0 auto 25px;
}

.online-course-info {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.online-course-info i {
  margin: 0 5px;
  color: #f59e0b;
}

.btn-course-read-more {
  background: #f59e0b;
  color: #ffffff;
  border: none;
  padding: 8px 30px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.btn-course-read-more i {
  transition: transform 0.3s ease;
}

.btn-course-read-more:hover {
  background: #ffffff;
  color: #083987;
  transform: translateY(-2px);
}

.btn-course-read-more:hover i {
  transform: translateX(-3px);
}

.btn-more-info {
  background: transparent;
  color: #083987;
  border: none;
  padding: 15px 0;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-more-info:hover {
  color: #f09433;
  transform: translateX(-5px);
}

.btn-more-info i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-more-info:hover i {
  transform: translateX(-5px);
}

.online-courses-slider {
  position: relative;
}

.online-courses-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  right: 0;
  pointer-events: none;
}

.online-courses-slider .owl-nav button {
  background: #f59e0b !important;
  color: #083987 !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.online-courses-slider .owl-nav button.owl-prev {
  right: -25px;
}

.online-courses-slider .owl-nav button.owl-next {
  left: -25px;
}

.online-courses-slider .owl-nav button:hover {
  background: #f59e0b !important;
}

.online-courses-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.online-courses-slider .owl-dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.online-courses-slider .owl-dot.active {
  background: #083987;
  width: 30px;
  border-radius: 10px;
}

/* ========== FOOTER ========== */
footer {
  background-color: #083987;
  padding-top: 4rem;
}

footer h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f59e0b;
  text-decoration: none;
}

.contact-address {
  font-size: 0.95rem;
}

.contact-address p {
  margin-bottom: 0.75rem;
}

.contact-address a {
  transition: color 0.3s ease;
}

.contact-address a:hover {
  color: #f59e0b;
  text-decoration: none;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255);
  border-radius: 4px;
  color: #f09433;
  text-align: center;
  line-height: 36px;
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #f59e0b;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== FAQ SECTION ========== */
#faq {
  padding: 4rem 0;
}

#faq .section-title h2 {
  color: #083987;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.accordion {
  --bs-accordion-border-radius: 2px;
  --bs-accordion-border-color: #e0e0e0;
}

.accordion-item {
  border: 1px solid #dadada;
  border-radius: 2px !important;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(205, 205, 205, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background-color: #ffffff;
  color: #083987;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border: none;
  direction: rtl;
  text-align: right;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #e0e0e0;
}

.accordion-button:not(.collapsed) {
  background-color: #f59e0b;
  color: #ffffff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button::after {
  margin-left: 0;
  margin-right: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23184ca0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 14px 18px;
  background-color: #ffffff;
  color: #333333;
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid #e0e0e0;
}

.accordion-collapse {
  border: none;
}

/* ========== UTILITIES ========== */
.text-primarys {
  color: #083987;
}

.bg-primary-gradient {
  background: linear-gradient(135deg, #083987 0%, #2c6ba8 100%);
}

.text-accent {
  color: #f59e0b;
}

.border-accent {
  border-color: #f59e0b;
}

/* ========== MARKETING BANNER ========== */
.marketing-banner {
  min-height: 300px;
  display: flex;
  align-items: center;
}

.marketing-banner .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f59e0b;
  color: #ffffff;
}

.marketing-banner .btn-outline-light:hover {
  background: #ffffff;
  color: #083987;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hero section button styles */
#hero .btn-outline-light:hover {
  background: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
  transform: translateY(-3px);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  #features {
    height: auto !important;
  }

  #features .features-left {
    padding: 40px 30px !important;
    height: auto !important;
  }

  #features .features-image-wrapper {
    height: 400px !important;
  }

  #features .features-image-container {
    height: 400px !important;
  }

  #features .features-image {
    height: 400px !important;
  }

  .feature-box {
    padding: 20px 12px !important;
  }

  .course-title {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background: #ffffff;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar .nav-link {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar .nav-link:last-child {
    border-bottom: none;
  }

  .navbar .nav-link.active::after {
    display: none;
  }

  #hero {
    min-height: 65vh !important;
    padding: 140px 0 280px 0 !important;
    margin-bottom: -210px !important;
    background-attachment: scroll !important;
  }

  .hero-title {
    font-size: 36px !important;
  }

  .hero-title span {
    font-size: 26px !important;
  }

  .sidebar-menu {
    width: 300px;
    right: -300px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 0.25rem 0;
  }

  .top-bar-content {
    gap: 0.75rem;
  }

  .top-bar-link {
    font-size: 0.75rem;
    padding: 0.15rem 0.4rem;
  }

  .navbar.fixed-top {
    top: 30px;
  }

  #hero {
    min-height: 10vh !important;
    padding: 120px 0 260px 0 !important;
    margin-bottom: -190px !important;
    background-attachment: scroll !important;
  }

  .hero-title {
    font-size: 28px !important;
  }

  .hero-title span {
    font-size: 20px !important;
  }

  .search-container {
    max-width: 95% !important;
    padding: 0 10px;
  }

  .search-input {
    font-size: 14px !important;
  }

  .search-wrapper {
    padding: 6px 15px !important;
  }

  .search-wrapper i {
    font-size: 18px !important;
    margin-right: 8px !important;
  }

  .section-title h2 {
    font-size: 1.8rem !important;
  }

  .vision-card-wrapper {
    margin: 0 10px;
  }

  .video-image-wrapper {
    min-height: 300px !important;
  }

  .video-image-wrapper img {
    height: 300px !important;
  }

  .play-button-content i {
    font-size: 55px !important;
  }

  .play-button-content span {
    font-size: 16px !important;
  }

  #visionTabs .nav-link {
    font-size: 16px !important;
    padding: 10px 15px !important;
  }

  .stat-item {
    padding: 15px 10px !important;
  }

  .stat-item h5 {
    font-size: 0.9rem !important;
  }

  .stat-item h2 {
    font-size: 1.8rem !important;
  }

  .stat-icon i {
    font-size: 45px !important;
  }

  .course-card {
    margin-bottom: 25px;
  }

  .course-title {
    font-size: 17px !important;
    min-height: auto;
  }

  .course-location {
    font-size: 14px !important;
  }

  .course-footer {
    justify-content: center;
  }

  .course-footer .btn-more-info {
    width: 100%;
    text-align: center;
  }

  .marketing-banner .banner-title {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }

  .marketing-banner .banner-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
  }

  .marketing-banner .btn {
    font-size: 1rem !important;
    padding: 11px 28px !important;
  }

  .marketing-banner .banner-buttons {
    gap: 0.8rem !important;
  }

  /* Hero Register Button - Mobile */
  .btn-outline-light.hero-register-btn {
    border-color: #083987 !important;
    color: #083987 !important;
    background: transparent !important;
  }

  .btn-outline-light.hero-register-btn:hover {
    background: #f59e0b !important;
    color: #ffffff !important;
    border-color: #f59e0b !important;
  }
  .hero-title {
    color: #083987 !important;
  }
  footer {
    padding: 2rem 0 !important;
  }

  footer .col-lg-3,
  footer .col-lg-2,
  footer .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center !important;
  }

  footer h6 {
    font-size: 0.9rem !important;
  }

  footer .contact-address,
  footer .footer-links {
    font-size: 0.8rem !important;
  }

  .social-icons {
    justify-content: center !important;
  }

  .social-icons a {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
  }

  footer img {
    height: 35px !important;
  }

  .sidebar-menu {
    width: 280px;
    right: -280px;
  }

  /* Instructions Section Mobile */
  #instructions .section-title h2 {
    font-size: 1.6rem !important;
  }

  .instructions-carousel-wrapper {
    padding: 0 !important;
  }

  .instruction-card {
    margin: 0 10px;
  }

  .instruction-icon {
    height: 200px !important;
  }

  .instruction-content {
    padding: 20px 15px !important;
    min-height: 150px !important;
  }

  .instruction-content h4 {
    font-size: 15px !important;
  }

  .instruction-content p {
    font-size: 13px !important;
  }

  /* Workshops Section Mobile */
  #workshps {
    padding: 2rem 0 !important;
  }

  /* Attachments Section Mobile */
  #attachments .section-title h2 {
    font-size: 1.6rem !important;
  }

  .pdf-card {
    padding: 20px 15px !important;
  }

  .pdf-icon-wrapper {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 15px !important;
  }

  .pdf-icon {
    width: 70px !important;
    height: 70px !important;
  }

  .pdf-title {
    font-size: 1rem !important;
  }

  .pdf-description {
    font-size: 0.85rem !important;
  }

  /* Events Section Mobile */
  .event-card {
    margin-bottom: 20px;
  }

  .event-card .row > div {
    min-height: auto !important;
  }

  .event-image {
    height: 180px !important;
  }

  .event-content {
    padding: 20px 15px !important;
  }

  .event-title {
    font-size: 16px !important;
  }

  /* FAQ Section Mobile */
  #faq {
    padding: 2rem 0 !important;
  }

  .accordion-button {
    font-size: 15px !important;
    padding: 15px !important;
  }

  .accordion-body {
    font-size: 14px !important;
    padding: 15px !important;
  }
}

@media (max-width: 576px) {
  #hero {
    min-height: 50vh !important;
    padding: 100px 0 230px 0 !important;
    margin-bottom: -170px !important;
  }

  .hero-title {
    font-size: 22px !important;
    margin-top: 15px !important;
  }

  .hero-title span {
    font-size: 16px !important;
  }

  .search-container {
    max-width: 100% !important;
    padding: 0 10px;
  }

  .search-input {
    font-size: 13px !important;
    padding: 8px 0 !important;
  }

  .search-wrapper {
    padding: 5px 12px !important;
    border-radius: 25px !important;
  }

  .search-wrapper i {
    font-size: 16px !important;
    margin-right: 6px !important;
  }

  .navbar-brand img {
    height: 40px !important;
  }

  #visionTabs .nav-link {
    padding: 8px 12px !important;
    font-size: 14px !important;
  }

  .tab-content p,
  .tab-content ul {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .vision-card-wrapper .row {
    height: auto !important;
  }

  .video-image-wrapper {
    min-height: 250px !important;
  }

  .video-image-wrapper img {
    height: 250px !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .play-button-content i {
    font-size: 50px !important;
  }

  .play-button-content span {
    font-size: 14px !important;
    padding: 0 15px;
  }

  .btn-primary,
  .btn-outline-primary {
    font-size: 14px !important;
    padding: 10px 25px !important;
  }

  .title-decoration {
    width: 60px !important;
    height: 3px !important;
  }

  .stat-item h5 {
    font-size: 0.8rem !important;
  }

  .stat-item h2 {
    font-size: 1.5rem !important;
  }

  .stat-icon i {
    font-size: 40px !important;
  }

  #features {
    height: auto !important;
  }

  #features .row.g-0 {
    flex-direction: column-reverse;
  }

  #features .col-lg-7,
  #features .col-lg-5 {
    min-height: auto !important;
  }

  #features .features-left {
    padding: 30px 20px !important;
    height: auto !important;
  }

  #features .features-title {
    font-size: 1.3rem !important;
  }

  #features .features-subtitle {
    font-size: 12px !important;
  }

  #features .features-image-wrapper {
    height: 300px !important;
  }

  #features .features-image-container {
    height: 300px !important;
  }

  #features .features-image {
    height: 300px !important;
  }

  .feature-box {
    padding: 12px 8px !important;
  }

  .feature-box i {
    font-size: 28px !important;
    margin-bottom: 8px !important;
  }

  .feature-box p {
    font-size: 13px !important;
  }

  .feature-box p:first-of-type {
    font-size: 14px !important;
  }

  .feature-box p:last-of-type {
    font-size: 11px !important;
  }

  .course-footer {
    justify-content: center;
  }

  .course-footer .btn-more-info {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
  }

  .badge-available {
    top: 15px;
    left: 75px;
    padding: 4px 14px;
    font-size: 11px;
  }

  .badge-free {
    top: 15px;
    left: 15px;
    padding: 4px 14px;
    font-size: 11px;
  }

  .course-title {
    font-size: 15px !important;
  }

  .course-image-wrapper {
    height: 200px !important;
  }

  .course-image {
    height: 200px !important;
    object-fit: cover !important;
  }

  .section-title h2 {
    font-size: 1.6rem !important;
  }

  .marketing-banner {
    padding: 2.5rem 1rem !important;
  }

  .marketing-banner .banner-title {
    font-size: 1.5rem !important;
  }

  .marketing-banner .banner-subtitle {
    font-size: 0.95rem !important;
  }

  .marketing-banner .btn {
    font-size: 0.9rem !important;
    padding: 10px 25px !important;
    width: 100%;
    max-width: 250px;
  }

  .marketing-banner .banner-buttons {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .event-title {
    font-size: 16px !important;
  }

  .event-info {
    font-size: 13px !important;
  }

  .online-course-content h2,
  .online-course-content h3 {
    font-size: 1.3rem !important;
  }

  .online-course-info {
    font-size: 12px !important;
  }

  /* Instructions Small Screen */
  .instruction-icon {
    height: 180px !important;
  }

  .instruction-content {
    padding: 15px 12px !important;
    min-height: 130px !important;
  }

  .instruction-content h4 {
    font-size: 14px !important;
  }

  .instruction-content p {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  /* Attachments Small Screen */
  .pdf-card {
    padding: 15px 12px !important;
  }

  .pdf-icon-wrapper {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 12px !important;
  }

  .pdf-icon {
    width: 60px !important;
    height: 60px !important;
  }

  .pdf-title {
    font-size: 0.95rem !important;
  }

  .pdf-description {
    font-size: 0.8rem !important;
  }

  /* Better button sizing */
  .btn-more-info {
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
  }

  /* Contact page mobile */
  .clc-contact-card,
  .clc-register-card {
    padding: 20px 15px !important;
  }

  /* Online courses slider */
  .online-course-slide {
    min-height: 300px !important;
  }

  .online-course-content {
    padding: 20px !important;
  }

  /* Seminars */
  #seminars-bottom .section-title h2 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 20px !important;
  }

  .hero-title span {
    font-size: 15px !important;
  }

  .search-wrapper {
    padding: 4px 10px !important;
  }

  .stat-item {
    padding: 8px 5px !important;
  }

  .stat-item h5 {
    font-size: 0.7rem !important;
  }

  .stat-item h2 {
    font-size: 1.3rem !important;
  }

  .stat-icon i {
    font-size: 32px !important;
  }

  .marketing-banner .banner-title {
    font-size: 1.3rem !important;
  }

  .marketing-banner .banner-subtitle {
    font-size: 0.85rem !important;
  }

  .marketing-banner .btn {
    font-size: 0.8rem !important;
    padding: 8px 18px !important;
  }

  .section-title h2 {
    font-size: 1.3rem !important;
  }

  .navbar-brand img {
    height: 35px !important;
  }

  .top-bar-link {
    font-size: 0.7rem !important;
  }

  /* Very small screens adjustments */
  .instruction-icon {
    height: 160px !important;
  }

  .instruction-content {
    padding: 12px 10px !important;
    min-height: 120px !important;
  }

  .instruction-content h4 {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }

  .instruction-content p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .pdf-icon-wrapper {
    width: 50px !important;
    height: 50px !important;
  }

  .pdf-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .pdf-title {
    font-size: 0.9rem !important;
  }

  .pdf-description {
    font-size: 0.75rem !important;
  }

  .course-date {
    bottom: 160px !important;
    right: 15px !important;
    width: 55px !important;
    height: 55px !important;
    font-size: 11px !important;
    padding: 8px 10px !important;
  }

  .date-day {
    font-size: 18px !important;
  }

  .date-month {
    font-size: 10px !important;
  }

  .feature-box p:first-of-type {
    font-size: 12px !important;
  }

  .feature-box p:last-of-type {
    font-size: 10px !important;
  }

  .btn-more-info {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
  }

  #visionTabs .nav-link {
    padding: 6px 8px !important;
    font-size: 12px !important;
  }

  .accordion-button {
    font-size: 13px !important;
    padding: 12px !important;
  }

  .accordion-body {
    font-size: 12px !important;
    padding: 12px !important;
  }

  .event-content {
    padding: 15px 10px !important;
  }

  .event-title {
    font-size: 14px !important;
  }

  .event-info {
    font-size: 11px !important;
  }
}

/* ========== CATEGORY HERO SECTION ========== */
#category-hero {
  position: relative;
  overflow: hidden;
  margin-top: -5px;
  height: 35vh;
  /* min-height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.category-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.category-hero-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(28, 80, 138, 0.85) 0%,
    rgba(24, 76, 160, 0.75) 25%,
    rgba(30, 136, 168, 0.7) 50%,
    rgba(24, 76, 160, 0.75) 75%,
    rgba(28, 80, 138, 0.85) 100%
  ); */
  z-index: 1;
}

.category-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.category-search-container {
  max-width: 650px;
  position: relative;
}

.category-search-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  padding: 2px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.category-search-wrapper:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.category-search-wrapper i {
  color: #f59e0b;
  font-size: 22px;
  margin-left: 15px;
}

.category-search-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  color: #333;
  background: transparent;
  padding: 10px 0;
  font-weight: 400;
}

.category-search-input::placeholder {
  color: #999;
  font-weight: 300;
}

.category-hero-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.category-content-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
/* Responsive Design for Category Hero */
@media (max-width: 768px) {
  #category-hero {
    height: 45vh;
    min-height: 350px;
    margin-top: 90px;
    padding: 60px 0;
  }

  .category-hero-title {
    font-size: 28px;
    margin-top: 25px;
  }

  .category-search-wrapper {
    padding: 10px 20px;
  }

  .category-search-wrapper i {
    font-size: 18px;
    margin-left: 10px;
  }

  .category-search-input {
    font-size: 14px;
    padding: 8px 0;
  }

  .category-search-container {
    max-width: 100%;
  }

  /* FAQ Section Responsive */
  .accordion-button {
    font-size: 13px;
    padding: 10px 14px;
  }

  .accordion-body {
    padding: 12px 14px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #category-hero {
    height: 40vh;
    min-height: 300px;
  }

  .category-hero-title {
    font-size: 22px;
  }

  .category-search-input::placeholder {
    font-size: 13px;
  }
}

/* ========== POST PAGE STYLES ========== */
.post-page-section {
  min-height: 100vh;
  padding-top: 30px;
}

.post-single-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.post-main-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.post-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.post-badges .badge {
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.badge-available {
  background-color: #05962e;
  color: #ffffff;
}

.badge-free {
  background-color: #f59e0b;
  color: #ffffff;
}

.post-header-content {
  padding: 30px 40px 20px;
}

.post-main-title {
  color: #083987;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.post-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.post-meta-info {
  padding: 20px 40px;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-item i {
  color: #083987;
  font-size: 18px;
}

.meta-text {
  display: flex;
  flex-direction: column;
}

.meta-label {
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.post-share-section {
  padding: 25px 40px;
  border-bottom: 1px solid #e9ecef;
}

.share-title {
  color: #184ca0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #184ca0;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  background-color: #f59e0b;
}

.share-btn.twitter,
.share-btn.facebook,
.share-btn.whatsapp,
.share-btn.linkedin,
.share-btn.instagram,
.share-btn.telegram {
  background-color: #184ca0;
}

.share-btn.twitter:hover,
.share-btn.facebook:hover,
.share-btn.whatsapp:hover,
.share-btn.linkedin:hover,
.share-btn.instagram:hover,
.share-btn.telegram:hover {
  background-color: #f59e0b;
}

.post-full-content {
  padding: 30px 40px 40px;
  color: #444;
  font-size: 16px;
  line-height: 1.9;
}

.post-full-content p {
  margin-bottom: 20px;
}

.post-full-content h2,
.post-full-content h3,
.post-full-content h4 {
  color: #083987;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Sidebar Styles */
.related-links-widget {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 25px;
}

.widget-title-blue {
  color: #083987;
  padding: 0;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 25px 0;
  text-align: center;
  background: transparent;
}

.related-links-list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-link-item {
  display: block;
  padding: 12px 20px;
  color: #083987;
  text-decoration: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: #ecf1f5;
  border-radius: 2px;
  text-align: center;
}

.related-link-item i {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related-link-item:hover {
  background-color: #083987;
  color: #ffffff;
  transform: translateY(-2px);
}

.related-link-item:hover i {
  opacity: 1;
}

.related-link-item.active {
  background-color: #083987;
  color: #ffffff;
}

.related-link-item.active i {
  opacity: 1;
}

.related-link-item.active:hover {
  background-color: #f09433;
  color: #ffffff;
  transform: translateY(-2px);
}

.related-articles-widget {
  background: #184ca0;
  border-radius: 2px;
  padding: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.related-articles-widget .widget-title-blue {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.related-articles-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-article-card {
  display: flex;
  gap: 15px;
  background: #ffffff;
  border-radius: 2px;
  padding: 12px;
  transition: all 0.3s ease;
  border: 0.5px solid transparent;
}

.related-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-article-image {
  width: 100px;
  min-height: 100px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  align-self: stretch;
}

.related-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-article-card:hover .related-article-image img {
  transform: scale(1.05);
}

.related-article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.related-article-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.related-article-title a {
  color: #184ca0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-article-title a:hover {
  color: #f59e0b;
}

.related-article-description {
  font-size: 11px;
  color: #4b5563;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-article-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.related-article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
}

.related-article-meta .meta-item i {
  color: #184ca0;
  font-size: 13px;
  width: 16px;
}

.related-article-meta .meta-item span {
  font-size: 12px;
}

/* Gallery Styles */
.post-gallery {
  padding: 0 40px 40px;
}

.gallery-title {
  color: #083987;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.gallery-item {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Attachments Styles */
.post-attachments {
  padding: 0 40px 40px;
}

.post-attachments-section {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-top: 30px;
}

.attachments-title {
  color: #083987;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.attachments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.attachment-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  color: #083987;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.attachment-card:hover {
  background-color: #083987;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(8, 57, 135, 0.2);
  border-color: #083987;
}

.attachment-card:hover .attachment-icon i {
  color: #ffffff !important;
}

.attachment-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attachment-info {
  flex: 1;
  min-width: 0;
}

.attachment-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.attachment-desc {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.attachment-card:hover .attachment-desc {
  color: rgba(255, 255, 255, 0.8);
}

.attachment-action {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.attachments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.attachment-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background-color: #f8f9fa;
  border-radius: 2px;
  color: #083987;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.attachment-item:hover {
  background-color: #083987;
  color: #ffffff;
  transform: translateX(-5px);
}

.attachment-item i:first-child {
  font-size: 20px;
}

.attachment-item i:last-child {
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 991px) {
  .post-main-image {
    height: 300px;
  }

  .attachments-grid {
    grid-template-columns: 1fr;
  }

  .post-attachments-section {
    padding: 20px;
  }

  .post-header-content,
  .post-meta-info,
  .post-share-section,
  .post-full-content,
  .post-gallery,
  .post-attachments {
    padding-left: 25px;
    padding-right: 25px;
  }

  .post-main-title {
    font-size: 26px;
  }

  .post-meta-info {
    gap: 20px;
  }

  .related-links-widget {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .post-page-section {
    padding-top: 100px;
  }

  .post-main-image {
    height: 250px;
  }

  .post-main-title {
    font-size: 22px;
  }

  .post-description {
    font-size: 15px;
  }

  .post-meta-info {
    flex-direction: column;
    gap: 15px;
  }

  .share-buttons {
    justify-content: center;
  }

  .related-article-image {
    width: 100px;
    height: 75px;
  }

  .related-article-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .post-main-image {
    height: 200px;
  }

  .post-badges {
    top: 10px;
    left: 10px;
    gap: 5px;
  }

  .post-badges .badge {
    padding: 4px 12px;
    font-size: 12px;
  }

  .post-header-content,
  .post-meta-info,
  .post-share-section,
  .post-full-content,
  .post-gallery,
  .post-attachments {
    padding-left: 15px;
    padding-right: 15px;
  }

  .post-main-title {
    font-size: 20px;
  }

  .meta-item {
    font-size: 13px;
  }

  .share-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* ========================================= */
/* CONTACT PAGE STYLES */
/* ========================================= */
.clc-contact-page {
  padding: 50px 0;
}

.clc-contact-card {
  background: white;
  border-radius: 2px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.clc-contact-card h3 {
  color: #083987;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f59e0b;
}

.clc-contact-card .form-group label {
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.clc-contact-card .form-control {
  border: 0.5px solid #e0e0e0;
  border-radius: 2px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s;
}

.clc-contact-card .form-control:focus {
  border-color: #083987;
  box-shadow: 0 0 0 0.2rem rgba(8, 57, 135, 0.15);
}

.clc-submit-btn {
  background: #083987;
  color: white !important;
  border: none;
  padding: 12px 40px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  margin-top: 10px;
}

.clc-submit-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.clc-info-section h2 {
  color: #083987;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.clc-info-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.clc-info-box {
  background: white;
  border: 0.5px solid #e1e1e1;
  border-radius: 2px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s;
  text-align: center;
}

.clc-info-box:hover {
  border-color: #f59e0b;
  box-shadow: 0 5px 20px rgba(8, 57, 135, 0.15);
  transform: translateY(-3px);
}

.clc-info-box .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #083987 0%, #0a4aa8 100%);
  border-radius: 50%;
  margin-bottom: 15px;
}

.clc-info-box .icon i {
  color: white;
  font-size: 24px;
}

.clc-info-box h4 {
  color: #083987;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.clc-info-box p {
  margin-bottom: 8px;
  color: #555;
}

.clc-info-box a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s;
}

.clc-info-box a:hover {
  color: #083987;
}

.clc-social-section {
  background: white;
  padding: 30px;
  margin-top: 30px;
}

.clc-social-section h3 {
  color: #083987;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.clc-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.clc-social-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  /* border: 0.5px solid #083987; */
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
  color: #083987;
  background: white;
  min-width: 155px;
}

.clc-social-links li a:hover {
  /* background: #F59E0B; */
  border-color: #f59e0b;
  color: #f59e0b;
  transform: translateY(-2px);
}

.clc-social-links li a i {
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #083987;
  color: white !important;
  border-radius: 50%;
  transition: all 0.3s;
  flex-shrink: 0;
}

.clc-social-links li a:hover i {
  background: #f09433;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .clc-contact-card,
  .clc-info-section {
    margin-bottom: 30px;
  }

  .clc-social-links {
    flex-direction: column;
  }

  .clc-social-links li a {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================= */
/* REGISTER PAGE STYLES */
/* ========================================= */
.clc-register-page {
  padding: 50px 0;
  min-height: 100vh;
}

.clc-register-card {
  background: white;
  border-radius: 2px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.register-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f59e0b;
}

.register-header h2 {
  color: #083987;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.register-header p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.clc-register-card .form-group {
  margin-bottom: 25px;
}

.clc-register-card .form-group label {
  color: #083987;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.clc-register-card .form-group label i {
  color: #083987;
  font-size: 18px;
}

.clc-register-card .form-control {
  border: 0.5px solid #e0e0e0;
  border-radius: 2px;
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s;
}

.clc-register-card .form-control:focus {
  /* border-color: #083987; */
  box-shadow: 0 0 0 0.5px #f09433;
  background: white;
}

.clc-register-card select.form-control {
  cursor: pointer;
}

.clc-register-btn {
  background: #083987;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.clc-register-btn:hover {
  background: #f59e0b;
  transform: translateY(-3px);
}

.clc-register-btn i {
  font-size: 20px;
}

.clc-info-note {
  background: white;

  border-radius: 2px;
  padding: 20px 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.clc-info-note i {
  color: #083987;
  font-size: 24px;
  margin-top: 3px;
  flex-shrink: 0;
}

.clc-info-note p {
  color: #555;
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 768px) {
  .clc-register-card {
    padding: 25px 20px;
  }

  .register-header h2 {
    font-size: 24px;
  }

  .register-header p {
    font-size: 14px;
  }

  .clc-register-btn {
    font-size: 16px;
    padding: 12px 30px;
  }

  .clc-info-note {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================ */
/* ATTACHMENTS/PDF SECTION STYLES */
/* ============================================ */
.attachments-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.attachments-swiper {
  overflow: hidden;
  padding: 20px 10px;
}

.pdf-card-link {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.pdf-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 2px solid transparent;
  cursor: pointer;
}

.pdf-card-link:hover .pdf-card {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 40px rgba(28, 80, 138, 0.15); */
  border-color: none;
}

.pdf-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.pdf-card-link:hover .pdf-icon-wrapper {
  transform: scale(1.05);
}

.pdf-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.pdf-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c508a;
  margin-bottom: 15px;
  line-height: 1.5;
  transition: color 0.3s ease;
  /* Max 2 lines with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.5rem;
  width: 100%;
}

.pdf-card-link:hover .pdf-title {
  color: #f09433;
}

.pdf-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  /* Max 2 lines with ellipsis - max-height: 45px */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 45px;
  width: 100%;
}

.pdf-card .btn-more-info {
  pointer-events: none;
}

.attachments-swiper-button-next,
.attachments-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
}

.attachments-swiper-button-next:hover,
.attachments-swiper-button-prev:hover {
  background: #1c508a;
  border-color: #1c508a;
  box-shadow: 0 6px 20px rgba(28, 80, 138, 0.3);
}

.attachments-swiper-button-next i,
.attachments-swiper-button-prev i {
  font-size: 1.3rem;
  color: #1c508a;
  transition: color 0.3s ease;
}

.attachments-swiper-button-next:hover i,
.attachments-swiper-button-prev:hover i {
  color: #ffffff;
}

.attachments-swiper-button-next {
  left: 0;
}

.attachments-swiper-button-prev {
  right: 0;
}

@media only screen and (max-width: 991px) {
  .attachments-carousel-wrapper {
    padding: 0 50px;
  }

  .attachments-swiper-button-next,
  .attachments-swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .attachments-carousel-wrapper {
    padding: 0;
  }

  .attachments-swiper-button-next,
  .attachments-swiper-button-prev {
    display: none;
  }

  .pdf-card {
    padding: 25px 20px;
  }

  .pdf-title {
    font-size: 1rem;
    min-height: auto;
  }

  .pdf-description {
    font-size: 0.9rem;
    min-height: auto;
  }

  .pdf-icon {
    width: 80px;
    height: 80px;
  }

  .pdf-icon-wrapper {
    width: 80px;
    height: 80px;
  }
}

/* ============================================ */
/* INSTRUCTIONS SECTION STYLES */
/* ============================================ */

/* Pattern Background for Instructions Section */
#instructions {
  position: relative;
  overflow: hidden;
}

#instructions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("pattren.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

#instructions > .container {
  position: relative;
  z-index: 1;
}

.instructions-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.instructions-swiper {
  overflow: hidden;
  padding: 30px 10px 50px;
}

.instruction-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid transparent;
}

.instruction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.instruction-icon {
  width: 100%;
  height: 280px;
  margin-bottom: 0;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.instruction-card:hover .instruction-icon {
  transform: scale(1);
}

.instruction-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instruction-card:hover .instruction-icon img {
  transform: scale(1.06);
}

.instruction-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: right;
  min-height: 200px;
}

.instruction-content h4 {
  font-size: 17px;
  font-weight: 500;
  color: #083987;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.instruction-card:hover .instruction-content h4 {
  color: #083987;
}

.instruction-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Swiper Pagination */
.instructions-pagination {
  position: relative;
  bottom: 0 !important;
  margin-top: 30px;
}

.instructions-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.instructions-pagination .swiper-pagination-bullet-active {
  background: #1c508a;
  width: 30px;
  border-radius: 6px;
}

/* Navigation Buttons */
.instructions-swiper-button-next,
.instructions-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #1c508a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(28, 80, 138, 0.3);
  transition: all 0.3s ease;
}

.instructions-swiper-button-next:hover,
.instructions-swiper-button-prev:hover {
  background: #f09433;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
}

.instructions-swiper-button-next i,
.instructions-swiper-button-prev i {
  font-size: 1.2rem;
  color: #ffffff;
}

.instructions-swiper-button-next {
  left: 0;
}

.instructions-swiper-button-prev {
  right: 0;
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .instructions-carousel-wrapper {
    padding: 0 50px;
  }

  .instructions-swiper-button-next,
  .instructions-swiper-button-prev {
    width: 45px;
    height: 45px;
  }

  .instruction-card {
    height: 480px;
    padding: 40px 30px;
  }

  .instruction-icon {
    width: 150px;
    height: 150px;
  }

  .instruction-content h4 {
    font-size: 1.3rem;
  }

  .instruction-content p {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .instructions-carousel-wrapper {
    padding: 0;
  }

  .instructions-swiper-button-next,
  .instructions-swiper-button-prev {
    display: none;
  }

  .instruction-card {
    padding: 35px 25px;
    height: 420px;
  }

  .instruction-icon {
    width: 120px;
    height: 120px;
  }

  .instruction-content h4 {
    font-size: 1.2rem;
  }

  .instruction-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* ========== DEPARTMENT STRUCTURE TIMELINE ========== */
.dept-structure-section {
  padding: 80px 0;
  position: relative;
}

.dept-timeline-container {
  /* max-width: 1000px; */
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

/* Vertical line on the left */
.dept-timeline-container::before {
  content: "";
  position: absolute;
  right: 50px;
  top: 0;
  width: 2px;
  height: 87%;
  background: #083c8cba;
}

.dept-timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  padding-right: 80px;
}

.dept-timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.dept-timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.dept-timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.dept-timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Circle dot on timeline */
.dept-timeline-dot {
  position: absolute;
  right: 22px;
  top: 30px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 3px solid #083987;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(8, 57, 135, 0.1);
}

.dept-timeline-item:nth-child(even) .dept-timeline-dot {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.dept-timeline-item:hover .dept-timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(8, 57, 135, 0.15);
}

.dept-timeline-item:nth-child(even):hover .dept-timeline-dot {
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15);
}

/* Date/Title box */
.dept-timeline-header {
  min-width: 270px;
  background: linear-gradient(135deg, #083987 0%, #0a4ba3 100%);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.dept-timeline-item:nth-child(even) .dept-timeline-header {
  background: linear-gradient(135deg, #f59e0b 0%, #f7a920 100%);
  border-color: #f59e0b;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dept-timeline-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dept-timeline-item:nth-child(even) .dept-timeline-header:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Content box */
.dept-timeline-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 25px;
}

.dept-timeline-text {
  flex: 1;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 2px;
  border: 2px solid #fafafa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.dept-timeline-text:hover {
  border-color: #083987;
  transform: translateX(-5px);
}

.dept-timeline-item:nth-child(even) .dept-timeline-text:hover {
  border-color: #f59e0b;
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.15);
}

.dept-timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: #083987;
  margin-bottom: 10px;
  font-family: "Source Serif Pro", serif;
}

.dept-timeline-item:nth-child(even) .dept-timeline-title {
  color: #f59e0b;
}

.dept-timeline-descr {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  text-align: justify;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .dept-timeline-container::before {
    right: 20px;
  }

  .dept-timeline-item {
    padding-right: 60px;
  }

  .dept-timeline-dot {
    right: 12px;
  }

  .dept-timeline-header {
    min-width: 200px;
    font-size: 16px;
    padding: 15px 20px;
  }

  .dept-timeline-text {
    padding: 20px 25px;
  }
}

@media (max-width: 768px) {
  .dept-timeline-item {
    flex-direction: column;
    gap: 20px;
    padding-right: 50px;
  }

  .dept-timeline-content {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .dept-timeline-header {
    width: 100%;
    min-width: auto;
  }

  .dept-timeline-text {
    width: 100%;
  }

  /* Healthcare Section - Tablet */
  #healthcare-section .row {
    gap: 0;
  }

  .single-health-care-card {
    margin-bottom: 100px !important;
  }

  .health-card-courses {
    margin-top: 0 !important;
  }

  .health-care-content {
    width: 90% !important;
    right: 5% !important;
    left: 5% !important;
    padding: 20px !important;
  }

  .health-care-content h3 {
    font-size: 18px;
  }

  .health-care-content p {
    font-size: 14px;
  }

  .read-more-btn {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .dept-structure-section {
    padding: 50px 0;
  }

  .dept-timeline-container::before {
    right: 15px;
  }

  .dept-timeline-item {
    padding-right: 40px;
    margin-bottom: 40px;
  }

  .dept-timeline-dot {
    right: 7px;
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .dept-timeline-header {
    font-size: 14px;
    padding: 10px 15px;
  }

  .dept-timeline-title {
    font-size: 15px;
  }

  .dept-timeline-descr {
    font-size: 13px;
    line-height: 1.6;
  }

  .dept-timeline-text {
    padding: 15px 18px;
  }

  /* Healthcare Section - Mobile */
  .single-health-care-card {
    margin-bottom: 120px !important;
  }

  .health-card-campus,
  .health-card-courses {
    height: 350px !important;
  }

  .health-care-content {
    padding: 15px !important;
  }

  .health-care-content h3 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  .health-care-content p {
    font-size: 13px !important;
    margin-bottom: 12px !important;
  }

  .read-more-btn {
    font-size: 13px !important;
  }
}

/* ============================================ */
/* HEALTHCARE SECTION STYLES */
/* ============================================ */

/* Single Health Care Card */
.single-health-care-card {
  position: relative;
  overflow: visible;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 335px;
  margin-bottom: 80px;
}

/* Campus Card - Taller to extend down */
.health-card-campus {
  height: 450px;
}

/* Courses Card - Default height with top margin */
.health-card-courses {
  height: 450px;
  margin-top: 130px;
}

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

.single-health-care-card .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.single-health-care-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.single-health-care-card:hover .img img {
  transform: scale(1.05);
}

/* Health Care Content */
.health-care-content {
  position: absolute;
  background-color: #f09433;
  padding: 20px;
  border-radius: 2px;
  box-shadow: 0 0px 8px rgb(0 0 0 / 17%);
  width: 420px;
  height: 200;
  right: 100px;
  left: 20px;
}

/* Campus Card - Content half outside bottom */
.health-content-campus {
  bottom: -60px;
}

/* Courses Card - Content half outside top */
.health-content-courses {
  top: -60px;
}

.health-care-content h5 {
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.health-care-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
  .single-health-care-card {
    height: 400px;
  }

  .health-care-content {
    padding: 20px;
    width: 85%;
    right: 7.5%;
    left: 7.5%;
  }

  .health-care-content h3 {
    font-size: 19px;
  }

  .health-care-content p {
    font-size: 14px;
  }

  .read-more-btn {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #healthcare-section .row {
    gap: 0;
  }

  .single-health-care-card {
    margin-bottom: 100px !important;
  }

  .health-card-campus {
    height: 400px !important;
  }

  .health-card-courses {
    height: 400px !important;
    margin-top: 0 !important;
  }

  .health-care-content {
    width: 88% !important;
    right: 6% !important;
    left: 6% !important;
    padding: 18px !important;
  }

  .health-content-campus {
    bottom: -50px !important;
  }

  .health-content-courses {
    top: -50px !important;
  }

  .health-care-content h3 {
    font-size: 17px !important;
    margin-bottom: 12px !important;
  }

  .health-care-content p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
  }

  .read-more-btn {
    font-size: 13px !important;
  }
}

@media (max-width: 576px) {
  .single-health-care-card {
    margin-bottom: 130px !important;
  }

  .health-card-campus,
  .health-card-courses {
    height: 330px !important;
  }

  .health-care-content {
    padding: 14px !important;
    width: 90% !important;
    right: 5% !important;
    left: 5% !important;
  }

  .health-content-campus {
    bottom: -55px !important;
  }

  .health-content-courses {
    top: -55px !important;
  }

  .health-care-content h3 {
    font-size: 15px !important;
    margin-bottom: 10px !important;
  }

  .health-care-content p {
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
  }

  .read-more-btn {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }

  .read-more-btn i {
    margin-right: 5px !important;
  }
}

/* ========== STATISTICS PAGE STYLES ========== */
.statistics-page {
  padding: 40px 0;
  min-height: 70vh;
}

.statistics-title {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.statistics-title i {
  color: #f59e0b;
  margin-left: 10px;
}

.statistics-subtitle {
  color: #7f8c8d;
  font-size: 16px;
  margin-bottom: 30px;
}

.chart-card {
  background: white;
  border-radius: 2px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.chart-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.chart-card-icon {
  font-size: 48px;
  color: #f59e0b;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.chart-card:hover .chart-card-icon {
  transform: scale(1.1);
  color: #083987;
}

.chart-card-title {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-card-type {
  display: inline-block;
  background: #e8f4f8;
  color: #f59e0b;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.no-charts-message {
  text-align: center;
  padding: 60px 20px;
  color: #95a5a6;
}

.no-charts-message i {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
}

.no-charts-message p {
  font-size: 18px;
  margin: 0;
}

.chart-view-header {
  margin-bottom: 30px;
}

.btn-back {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-back:hover {
  background: #083987;
}

.btn-back i {
  margin-left: 8px;
}

.chart-view-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.chart-view-title {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

.chart-canvas-container {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px;
}

.chart-data-table {
  margin-top: 40px;
}

.chart-data-table h4 {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
}

.chart-data-table table {
  width: 100%;
  background: white;
}

.chart-data-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
  padding: 12px;
}

.chart-data-table td {
  padding: 10px;
  color: #555;
}

.years-filter {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.years-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.year-btn {
  background: white;
  color: #2c3e50;
  border: 2px solid #e0e0e0;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.year-btn:hover {
  background: #f59e0b;
  color: white;
  border-color: #f59e0b;
  transform: translateY(-2px);
}

.year-btn.active {
  background: #f59e0b;
  color: white;
  border-color: #f59e0b;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
  .chart-card {
    margin-bottom: 20px;
  }

  .statistics-title {
    font-size: 22px;
  }

  .chart-canvas-container {
    padding: 10px;
  }
}

/* ========== ACTSINGUP (VOLUNTEER REGISTRATION) STYLES ========== */
.volunteer-work-info .card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.volunteer-work-info .card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.volunteer-work-info .card-text {
  color: #555;
  line-height: 1.6;
}

.volunteer-work-info p {
  font-size: 0.95rem;
  color: #333;
}

.volunteer-work-info i {
  margin-right: 5px;
}

/* بطاقات الأعمال التطوعية */
.volunteer-work-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.volunteer-work-card .card {
  border: none;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.volunteer-work-card:hover .card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #f59e0b;
}

.volunteer-work-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.volunteer-work-card .work-details p {
  font-size: 0.9rem;
  color: #555;
}

.volunteer-work-card .work-details i {
  margin-left: 8px;
  font-size: 1rem;
}

/* تصميم الكارت الجديد */
.work-details-grid {
  text-align: center;
  min-height: 100px;
}

.work-details-grid .icons-row,
.work-details-grid .titles-row,
.work-details-grid .values-row {
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
  margin-bottom: 0px;
}

.work-details-grid .detail-item {
  flex: 1;
  text-align: center;
  padding: 0px;
}

.work-details-grid .icons-row i {
  font-size: 1.8rem;
  margin: 0;
}

.work-details-grid .titles-row strong {
  font-size: 0.85rem;
  color: #333;
  display: block;
}

.work-details-grid .values-row span {
  font-size: 0.9rem;
  color: #555;
  display: block;
}

.volunteer-work-card .btn-primary {
  width: 100%;
  font-weight: 600;
}

/* تلوين جميع الأيقونات */
.clc-register-page i.fas,
.clc-register-page i.far {
  color: #f59e0b;
}

.volunteer-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.volunteer-back-header {
  margin-bottom: 30px;
}

.btn-volunteer-back {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-volunteer-back:hover {
  background: #083987;
  color: white;
  text-decoration: none;
}

.btn-volunteer-back i {
  margin-left: 8px;
}
.submit-btn {
  background: #083987;
  color: white !important;
  border: none;
  padding: 7px 40px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
}
.submit-btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

/* ========== HUMAN TEAM PAGE STYLES ========== */
/* Team Stats Styling */
.team-stats .stat-icon-color {
  font-size: 28px;
  color: #f59e0b;
}

.team-stats .stat-item {
  padding: 15px;
  transition: transform 0.3s ease;
}

.team-stats .stat-item:hover {
  transform: translateY(-5px);
}

.team-stats .stat-title {
  color: #083987;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

.team-stats .stat-number {
  color: #083987;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
}

/* About Team Image Styling */
.about-team-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  max-width: 645px;
  margin: 0 auto;
}

.about-team-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.about-team-image:hover img {
  transform: scale(1.05);
}

.team-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(10 61 112) 0%,
    rgb(0 43 112 / 70%) 50%,
    rgb(6 51 117 / 84%) 100%
  );
  z-index: 2;
  transition: all 0.3s ease;
}

.about-team-image:hover .team-image-overlay {
  background: linear-gradient(
    135deg,
    rgb(56 56 56) 0%,
    rgb(3 3 4 / 70%) 50%,
    rgb(19 26 37 / 84%) 100%
  );
}

/* Marketing Text Overlay for About Team Image */
.about-team-image .marketing-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 90%;
  padding: 0 20px;
}

.about-team-image .marketing-text-overlay h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
  line-height: 1.4;
}

.about-team-image .marketing-text-overlay p {
  font-size: 18px;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
  margin: 0;
  font-weight: 500;
}

.team-image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 90%;
}

.team-image-text h3 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
  line-height: 1.4;
}

.team-image-text p {
  font-size: 20px;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
  margin: 0;
  font-weight: 500;
}

/* Modern Tabs Styling */
.modern-tabs-container {
  background: #fff;
  border-radius: 2px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#visionMissionTabs .nav-link {
  color: #6c757d;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  transition: all 0.3s ease;
}

#visionMissionTabs .nav-link:hover {
  color: #083987 !important;
  border-bottom-color: #083987 !important;
}

#visionMissionTabs .nav-link.active {
  color: #f59e0b !important;
  border-bottom-color: #f59e0b !important;
  background: transparent !important;
}

#visionMissionTabs .nav-link.active::after {
  display: none !important;
}

.modern-tab-content-card {
  background: #fff;
  border-radius: 2px;
  padding: 40px;
  animation: fadeIn 0.5s ease;
}

.tab-content-body p.lead {
  color: #555;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding: 12px 0;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-list li i {
  font-size: 20px;
}

.mission-card {
  background: #f8f9fa;
  border-radius: 2px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover {
  background: #f4f4f4db;
  transform: translateY(-5px);
}

.mission-card i {
  font-size: 40px;
  margin-bottom: 15px;
}

.mission-card h5 {
  color: #184ca0;
  font-weight: 700;
  margin-bottom: 10px;
}

.mission-card p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

/* Activity Section with Pattern Background */
#activities-section {
  position: relative;
}

#activities-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("pattren.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

#activities-section > .container {
  position: relative;
  z-index: 1;
}

/* Activity Cards */
.activity-card {
  background: #fff;
  border-radius: 2px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.activity-icon {
  width: 50px;
  height: 50px;
  background: #083987;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.activity-icon i {
  font-size: 32px;
  color: #fff;
}

.activity-card h4 {
  color: #184ca0;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.activity-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.activity-stats {
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.activity-stats span {
  color: #28a745;
  font-weight: 600;
  font-size: 14px;
}

.activity-stats i {
  margin-left: 5px;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgb(8 57 135 / 0%) 0%,
    rgb(8 57 135 / 45%) 100%
  );
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(
    to bottom,
    rgb(62 70 82 / 0%) 0%,
    rgb(5 38 90) 100%
  );
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-content h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}

.gallery-content p {
  color: #f0f0f0;
  margin: 0;
  font-size: 14px;
}

/* Registration Form */
.team-registration-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.modern-input {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 18px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.modern-input:focus {
  border-color: #184ca0;
  box-shadow: 0 0 0 0.2rem rgba(24, 76, 160, 0.15);
  outline: none;
}

.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label i {
  font-size: 16px;
}

.btn-register-team {
  background: linear-gradient(135deg, #184ca0, #1e88a8);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 50px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(24, 76, 160, 0.3);
}

.btn-register-team:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 76, 160, 0.4);
}

.registration-note {
  background: #e7f3ff;
  border-right: 4px solid #184ca0;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.registration-note i {
  font-size: 28px;
  color: #184ca0;
}

.registration-note p {
  margin: 0;
  color: #184ca0;
  font-weight: 500;
  font-size: 15px;
}

/* Image Section with Registration Form */
.image-with-form-section {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 300px;
  overflow: visible;
  position: relative;
}

.image-with-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("pattren.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.image-with-form-section .row {
  position: relative;
}

.full-image-container {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.full-image-container img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.image-text-overlay {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  color: #ffffff;
  z-index: 10;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.image-text-overlay h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.image-text-overlay p {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  opacity: 0.95;
}

/* Registration Form Card */
.registration-form-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 40px 50px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  right: 10%;
  transform: translateY(75%);
  width: 50%;
  max-width: 980px;
  z-index: 20;
}

.form-card-title {
  color: #0a3d70;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.form-input-white {
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-input-white:focus {
  border-color: #0a3d70;
  box-shadow: 0 0 0 3px rgba(10, 61, 112, 0.1);
  background: #ffffff;
  outline: none;
}

.form-input-white::placeholder {
  color: #999;
}

.btn-send-request {
  background: #f59e0b;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  padding: 7px 369px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-send-request:hover {
  background: #012772;
  transform: translateY(-2px);
}

/* Human Team Responsive */
@media (max-width: 768px) {
  #visionMissionTabs .nav-link {
    padding: 10px 20px;
    font-size: 14px;
  }

  .modern-tab-content-card {
    padding: 25px;
  }

  .team-registration-card {
    padding: 25px;
  }

  .btn-register-team {
    padding: 12px 30px;
    font-size: 16px;
  }

  .activity-card {
    padding: 20px;
  }

  .gallery-item {
    height: 250px;
  }

  .about-team-image {
    max-width: 100%;
  }

  .about-team-image img {
    height: 300px;
  }

  .about-team-image .marketing-text-overlay h2 {
    font-size: 20px;
  }

  .about-team-image .marketing-text-overlay p {
    font-size: 14px;
  }

  .team-image-text h3 {
    font-size: 28px;
  }

  .team-image-text p {
    font-size: 16px;
  }

  .image-with-form-section {
    padding-bottom: 350px;
  }

  .full-image-container {
    height: 400px;
  }

  .full-image-container img {
    height: 400px;
  }

  .image-text-overlay {
    left: 5%;
  }

  .image-text-overlay h2 {
    font-size: 32px;
  }

  .image-text-overlay p {
    font-size: 18px;
  }

  .registration-form-card {
    width: 95%;
    right: 2.5%;
    padding: 30px 25px;
    transform: translateY(75%);
  }

  .form-card-title {
    font-size: 22px;
  }
}

/* ============================================ */
/* TEAM COMMITTEE SECTION STYLES */
/* ============================================ */

.team-member-card {
  transition: transform 0.3s ease;
  padding: 20px;
}

.team-member-card:hover {
  transform: translateY(-10px);
}

.member-image-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #f59e0b;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-member-card:hover .member-image-wrapper {
  border-color: #0a3d70;
  transform: scale(1.05);
}

.member-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  color: #0a3d70;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.member-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.member-contact i {
  color: #f59e0b;
  font-size: 16px;
}

.member-contact a {
  color: #6c757d;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.member-contact a:hover {
  color: #0a3d70;
}

/* Responsive Design */
@media (max-width: 768px) {
  .member-image-wrapper {
    width: 160px;
    height: 160px;
    border-width: 4px;
  }

  .member-name {
    font-size: 18px;
  }

  .member-contact {
    flex-direction: column;
    gap: 5px;
  }

  .member-contact a {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .member-image-wrapper {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }

  .member-name {
    font-size: 16px;
  }

  .team-member-card {
    padding: 15px;
  }
}

/* ========== HUMANTEAM GALLERY STYLES ========== */
.gallery-item-square {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item-square:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(6 47 114 / 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item-square:hover .gallery-overlay-blue {
  opacity: 1;
}

.gallery-overlay-blue .gallery-content {
  text-align: center;
  color: white;
  padding: 15px;
}

.gallery-overlay-blue .gallery-content h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.gallery-overlay-blue .gallery-content p {
  font-size: 12px;
  margin: 0;
}

/* Modal Styles */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
  color: #bbb;
}

#modalCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 50px;
}

@media screen and (max-width: 768px) {
  .gallery-item-square {
    width: 150px;
    height: 150px;
  }

  .modal-content {
    max-width: 98%;
    max-height: 85vh;
  }

  .image-modal {
    padding-top: 30px;
  }
}

/* ========== FAQ SECTION ========== */
#faq {
  padding: 4rem 0;
}

#faq .section-title h2 {
  color: #083987;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.accordion {
  --bs-accordion-border-radius: 2px;
  --bs-accordion-border-color: #e0e0e0;
}

.accordion-item {
  border: 1px solid #dadada;
  border-radius: 2px !important;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(205, 205, 205, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background-color: #ffffff;
  color: #083987;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 18px;
  border: none;
  direction: rtl;
  text-align: right;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #e0e0e0;
}

.accordion-button:not(.collapsed) {
  background-color: #f59e0b;
  color: #ffffff;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.accordion-button::after {
  margin-left: 0;
  margin-right: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23184ca0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 14px 18px;
  background-color: #ffffff;
  color: #333333;
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid #e0e0e0;
}

.accordion-collapse {
  border: none;
}

/* Section Title with Label */
.sums-lable3-1 {
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background: linear-gradient(135deg, #184ca0 0%, #3b82f6 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sums-lable3-1:before {
  content: '📚';
  font-size: 2em;
}

.inline-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.inline-content .text-content h2 {
  margin: 0;
  color: #184ca0;
  font-weight: bold;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-100 {
  padding-top: 100px;
}

@media (max-width: 768px) {
  .sums-lable3-1 {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }

  .sums-lable3-1:before {
    font-size: 1.5em;
  }

  .inline-content .text-content h2 {
    font-size: 1.5rem;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .pb-70 {
    padding-bottom: 40px;
  }
}
