/* ===== CSS Custom Properties ===== */
:root {
  --primary-blue: #0CAED6;
  --primary-dark: #0a8fb0;
  --primary-yellow: #C5B82F;
  --yellow-dark: #a89c28;
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --light-bg: #f4f8fb;
  --white: #ffffff;
  --text-color: #333333;
  --text-muted: #6c757d;
  --gradient-blue: linear-gradient(135deg, #0CAED6, #0a8fb0);
  --gradient-yellow: linear-gradient(135deg, #C5B82F, #e0d24a);
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-blue);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

img {
  max-width: 100%;
  height: auto;
}


section {
  padding: 80px 0;
}


.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-yellow);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 15px;
}

/* ===== Site Header ===== */
.site-header {
  background: #0F2E3D;
  padding: 20px 0 20px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  z-index: 1050;
  border-bottom: 3px solid var(--primary-yellow);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 95px;
  transition: var(--transition);
}

.header-right {
  text-align: right;
  flex: 1;
}

.header-right .contact-info {
  margin-bottom: 8px;
  padding-top: 5px;
}

.header-right .contact-info a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-left: 20px;
  transition: var(--transition);
  font-weight: 500;
}

.header-right .contact-info a:hover {
  color: var(--primary-yellow);
}

.header-right .contact-info i {
  color: var(--primary-yellow);
  margin-right: 5px;
}

/* ===== Navbar (inside header) ===== */
.site-header .navbar {
  background: transparent;
  box-shadow: none;
  padding: 0;
  z-index: 1050;
  border-bottom: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-yellow);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-yellow) !important;
}

ul.navbar-nav li.nav-item:last-child a{
/*padding-right:0 !important;*/
background: var(--primary-yellow) !important; border-radius: 20px; padding: 8px 28px !important;
}
ul.navbar-nav li.nav-item:last-child a:hover{color:#fff !important;}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-hover);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 8px;
  border-top: 3px solid var(--primary-blue);
  animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 8px 20px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary-blue);
  padding-left: 25px;
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 6px 10px;
}

.navbar-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.25);
}

/* ===== Hero Carousel ===== */
.hero-carousel {
  position: relative;
  padding-top: 0;
}

.hero-carousel .carousel-item {
  height: 85vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(12, 174, 214, 0.5));
}

.hero-carousel .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: left;
  max-width: 650px;
}

.hero-carousel .carousel-caption h1 {
  font-size: 3rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-carousel .carousel-caption p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn-primary-custom {
  background: var(--gradient-yellow);
  color: var(--dark);
  border: none;
  padding: 14px 35px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 184, 47, 0.4);
  color: var(--dark);
  background: var(--gradient-yellow);
}

.btn-blue-custom {
  background: var(--gradient-blue);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-blue-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12, 174, 214, 0.35);
  color: var(--white);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  margin: 0 15px;
  backdrop-filter: blur(5px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary-blue);
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
}

.carousel-indicators .active {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
}

/* ===== Welcome Section ===== */
.welcome-section {
  background: var(--white);
}

.welcome-section .welcome-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.welcome-section .welcome-text .highlight {
  color: var(--primary-yellow);
}

.welcome-section .welcome-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.welcome-section .welcome-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.welcome-section .welcome-img img {
  border-radius: 15px;
  transition: var(--transition);
}

.welcome-section .welcome-img::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: var(--primary-yellow);
  border-radius: 10px;
  z-index: -1;
}

.welcome-section .welcome-img::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  border-radius: 10px;
  z-index: -1;
}

/* ===== Services Section ===== */
.services-section {
  background: var(--light-bg);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(12, 174, 214, 0.1);
}

.service-card .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .icon-box {
  background: var(--gradient-blue);
}

.service-card .icon-box i {
  font-size: 2rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.service-card:hover .icon-box i {
  color: var(--white);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-card ul.text-start {
  list-style-type: none;
}

.service-card ul.text-start li {
  background: url(../images/arrow.png) no-repeat 0 7px;
  padding-left: 11px;
}


/* ===== Ongoing Programme Section ===== */
.programme-section {
  background: var(--white);
  position: relative;
}

.programme-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 30px;
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition);
  margin-bottom: 20px;
}

.programme-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(5px);
}

.programme-card h5 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.programme-card .badge-custom {
  background: var(--gradient-yellow);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* ===== Gallery Section ===== */
.gallery-section {
  background: var(--light-bg);
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 174, 214, 0.8), rgba(26, 26, 46, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--white);
}

/* ===== Footer Section ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer h5 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-yellow);
  border-radius: 2px;
}

.footer .footer_logo_sec img {
  height: 105px;
}

.footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links li a i {
  color: var(--primary-yellow);
  margin-right: 10px;
  font-size: 0.7rem;
}

.footer-links li a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.footer .contact-info-footer li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .contact-info-footer li i {
  color: var(--primary-yellow);
  margin-right: 12px;
  margin-top: 0;
  font-size: 1rem;
}

.footer .contact-info-footer li span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== Copyright Section ===== */
.copyright {
  background: var(--dark);
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Page Banner (Inner Pages) ===== */
.page-banner {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(12, 174, 214, 0.7)),
    url('../images/banner-bg.jpg') center/cover no-repeat;
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.page-banner .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-banner .breadcrumb-item a {
  color: var(--primary-yellow);
  font-weight: 500;
}

.page-banner .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Inner Page Content ===== */
.page-content {
  padding: 80px 0;
}

.page-content h2 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.page-content h3 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.page-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 15px;
}

/* ===== CEO Section ===== */
.ceo-section .ceo-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.ceo-section .ceo-image img {
  border-radius: 15px;
}

.ceo-message {
  position: relative;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 15px;
  border-left: 4px solid var(--primary-blue);
}

.ceo-message::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary-yellow);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: Georgia, serif;
}

/* ===== Achievement Cards ===== */
.achievement-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
  border-left: 4px solid var(--primary-yellow);
  transition: var(--transition);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.achievement-card .year {
  display: inline-block;
  background: var(--gradient-blue);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.achievement-card h5 {
  color: var(--dark);
  margin-bottom: 10px;
}

.achievement-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Growth / Stats Section ===== */
.stat-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.stat-card .stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-card .stat-icon i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  font-weight: 800;
}

.stat-card p {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1rem;
}

/* ===== BOD Table ===== */
.bod-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 25px;
  height: 100%;
}

.bod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.bod-card .bod-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 4px solid var(--primary-blue);
  box-shadow: var(--shadow);
}

.bod-card .bod-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bod-card h5 {
  color: var(--dark);
  margin-bottom: 5px;
}

.bod-card p {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Interest Rate Table ===== */
.rate-table {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rate-table .table {
  margin: 0;
}

.rate-table .table thead {
  background: var(--gradient-blue);
}

.rate-table .table thead th {
  color: var(--white);
  padding: 15px 20px;
  font-weight: 600;
  border: none;
  font-size: 0.95rem;
  background: none;
}

.rate-table .table tbody td {
  padding: 14px 20px;
  border-color: var(--light-bg);
  font-size: 0.95rem;
  vertical-align: middle;
}

.rate-table .table tbody tr:hover {
  background: var(--light-bg);
}

/* ===== Notice Section ===== */
.notice-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-blue);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
}

.notice-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-hover);
}

.notice-card .notice-date {
  min-width: 80px;
  background: var(--gradient-blue);
  color: var(--white);
  text-align: center;
  padding: 12px 10px;
  border-radius: 10px;
  margin-right: 20px;
}

.notice-card .notice-date .day {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.notice-card .notice-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}

.notice-card .notice-content h5 {
  color: var(--dark);
  margin-bottom: 8px;
}

.notice-card .notice-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== Contact Section ===== */
.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.15rem rgba(12, 174, 214, 0.15);
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info-box {
  background: var(--gradient-blue);
  border-radius: 15px;
  padding: 35px;
  color: var(--white);
  height: 100%;
}

.contact-info-box h4 {
  color: var(--white);
  margin-bottom: 30px;
}

.contact-info-box .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-box .info-item i {
  font-size: 1.3rem;
  margin-right: 15px;
  margin-top: -5px;
  color: var(--primary-yellow);
}

.contact-info-box .info-item span {
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== Gallery Lightbox ===== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
  background: none;
  border: none;
}

.lightbox-close:hover {
  color: var(--primary-yellow);
  transform: rotate(90deg);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--gradient-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* ===== Membership / Deposit / Loan Cards ===== */
.benefit-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 25px;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.benefit-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-card .icon-circle i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.benefit-card h5 {
  color: var(--dark);
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Animations ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Styles ===== */
@media (max-width: 991.98px) {
  .hero-carousel .carousel-item {
    height: 70vh;
    min-height: 400px;
  }

  .hero-carousel .carousel-caption h1 {
    font-size: 2rem;
  }

  .hero-carousel .carousel-caption p {
    font-size: 1rem;
  }

  .hero-carousel .carousel-caption {
    max-width: 100%;
    padding: 0 30px;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .page-banner {
    padding: 100px 0 50px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .header-wrapper {
    flex-wrap: wrap;
  }

  .header-logo {
    flex: 0 0 auto;
  }

  .header-right {
    flex: 1 1 100%;
    text-align: left;
    margin-top: 10px;
  }

  .header-right .contact-info {
    text-align: right;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 10px;
    border: 1px solid #eee;
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    margin-top: 0;
    border-top: none;
    padding-left: 15px;
  }
}

@media (max-width: 767.98px) {
  .hero-carousel .carousel-item {
    height: 60vh;
    min-height: 350px;
  }

  .hero-carousel .carousel-caption h1 {
    font-size: 1.6rem;
  }

  .top-header .contact-info a {
    font-size: 0.8rem;
    margin-left: 10px;
  }

  .header-logo img {
    height: 40px;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .page-content {
    padding: 50px 0;
  }

  .footer {
    padding: 40px 0 15px;
  }

  .stat-card h3 {
    font-size: 2rem;
  }

  .notice-card {
    flex-direction: column;
  }

  .notice-card .notice-date {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-carousel .carousel-caption h1 {
    font-size: 1.3rem;
  }

  .btn-primary-custom {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
  }
}