:root {
  --brand-color-primary: #1a237e;
  --brand-color-secondary: #4b7a8c;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --brand-color-small-detail: #d92437;
  --gray: rgba(255, 255, 255, 0.6);
  --dark-color: #343a40;
  --gray-dark: rgb(114, 113, 113);
}

/* Blue Top Bar */
.top-bar {
  background-color: #1a237e;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

/* Icon Navigation Bar */
.icon-navbar {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.desktop-navigation {
  transition: all 0.3s ease-in-out;
}

.icon-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-nav-item {
  position: relative;
  margin: 0 15px;
  text-align: center;
}

.icon-nav-product-item {
  position: relative;
  margin: 0 15px;
  text-align: center;
}

.icon-nav-link {
  color: #333;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-nav-icon {
  font-size: 24px;
  margin-bottom: 5px;
  color: #1a237e;
}

.icon-nav-text {
  font-size: 14px;
  font-weight: 500;
}

.product-subcategory {
  width: 260px;
  background: #1a237e;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
  gap: 5px;
  padding: 15px 15px;
  border-radius: 20px;
}

.product-menu-container {
  display: none;
  gap: 5px;
}

.product-menu-container.active {
  display: flex;
  flex-wrap: wrap;
}

.sub-product-card.card.active {
  background-color: #fff;
  color: #000;
}

.sub-product-card.card {
  width: 100%;
  padding: 5px;
  background-color: #1a237e;
  cursor: pointer;
  color: #fff;
}

.sub-product-card.card .title {
  font-weight: 500;
}

.sub-product-card.card span {
  font-weight: 400;
}

/* Dropdown Menu */
.icon-dropdown {
  position: absolute;
  top: 100%;
  left: 325%;
  transform: translateX(-50%);
  background: white;
  width: auto;
  padding: 17px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  gap: 25px;
  justify-content: space-evenly;
}

.product-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 1000px;
  padding: 12px 0;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  gap: 0;
  justify-content: space-evenly;
}

.icon-nav-item:hover .icon-dropdown {
  opacity: 1;
  visibility: visible;
}

.icon-nav-product-item:hover .product-dropdown {
  opacity: 1;
  visibility: visible;
}

.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: white; /* or your navbar background color */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* optional shadow */
  transition: all 0.3s ease;
}

.dropdown-item {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-item {
  width: 200px;
  height: 125px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px !important;
  flex-direction: column !important;
  color: #000 !important;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.dropdown-item:hover {
  box-shadow: 0 2px 0 rgba(26, 35, 126);
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* Right side buttons */
.nav-buttons {
  display: flex;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .icon-navbar {
    padding: 10px 0;
  }
  .icon-nav-item {
    margin: 0 10px;
  }

  .icon-nav-product-item {
    margin: 0 10px;
  }
}

.mobile-navigation {
  justify-content: space-between;
  display: none;
  z-index: 999;
  align-items: center;
  width: 100%;
  background-color: #fff;
  padding: 5px;
  height: auto;
}

.mobile-navigation.sticky {
  position: fixed;
  top: 0;
}

.mobile-navigation img {
  height: 47px;
}

.mobile-menu img {
  height: 65px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #000;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #fff;
  color: #000;
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 1000;
  transition: all 0.6s ease;
  overflow: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  right: 0;
  transition: all 0.6s ease;
  z-index: 999999;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.close-menu {
  font-size: 30px;
  cursor: pointer;
}

/* Menu Items */
.menu-items {
  list-style: none;
  padding: 0;
}

.menu-items li {
  margin: 15px 0;
}

.menu-items li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.menu-items li a:hover {
  color: var(--brand-color-primary);
}

.has-submenu ul.submenu {
  list-style: none;
  padding-left: 20px;
  display: none;
  transition: all 0.3s ease;
}

.has-submenu.open ul.submenu {
  display: block;
  transition: all 0.3s ease;
}

.has-submenu a span {
  font-size: 20px;
}

/* Close Menu Icon */
#closeMenu {
  font-size: 28px;
  cursor: pointer;
}

.menu-items li {
  margin: 15px 0;
  position: relative; /* For positioning the "+" sign */
}

.menu-items li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between; /* Make space between text and "+" */
  align-items: center;
}

/* Submenu toggle styles for child submenu */
.has-submenu-child a span {
  font-size: 20px;
  color: #fff;
  margin-left: 10px;
}

/* Submenu is hidden by default */
.submenu-child {
  display: none;
  padding-left: 20px;
  transition: all 0.3s ease;
}

/* Submenu visible when parent has 'open' class */
.has-submenu-child.open .submenu-child {
  display: block;
}

.has-submenu-child a span {
  font-size: 20px;
}

.has-submenu-child.open a span {
  color: var(--brand-color-secondary);
}

/* Tab Buttons */
.tab-buttons,
.tab-buttons-guide {
  display: flex;
  justify-content: space-around;
  background-color: inherit; /* Use your existing background color */
  padding: 10px;
}

.tab-btn,
.tab-btn-guide {
  background-color: inherit; /* Use your existing background color */
  color: inherit; /* Use the existing color */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn-guide.active {
  border-bottom: 2px solid var(--brand-color-secondary); /* Match the active state to your design */
}

.tab-btn:not(.active):hover,
.tab-btn-guide:not(.active):hover {
  color: var(--brand-color-secondary); /* A soft hover effect */
}

/* Tab Content */
.tab-content,
.tab-content-guide {
  padding: 20px;
  background-color: inherit; /* Use your existing background color */
  color: inherit; /* Use your existing text color */
}

.tab-panel,
.tab-panel-guide {
  display: none;
  transform: translateY(50px);
  transition: all 3s ease;
}

.tab-panel.active,
.tab-panel-guide.active {
  display: block;
  transform: translateY(0);
}

.nav-logo-mobile {
  transition: all 0.3s ease-in-out;
}

.footer-icon {
  color: var(--brand-color-primary);
  background-color: transparent;
  height: 32px;
  width: 32px;
  padding: 8px;
  border: 1px solid var(--brand-color-primary);
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background-color: #000;
  color: #fff;
}

.social-media {
  gap: 10px;
}

@media (max-width: 600px) {
  .desktop-navigation {
    display: none;
  }

  .top-bar .icons {
    display: none;
  }

  .mobile-navigation {
    display: flex !important;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-items li a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .desktop-navigation {
    display: none;
  }

  .top-bar .icons {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-navigation {
    display: flex !important;
  }

  .menu-items li a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
}

.notice-section {
  background-color: #e74c3c; /* Red background */
  color: white;
  padding: 10px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.notice-section a {
  color: white;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.notice-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.notice-label {
  font-weight: bold;
  margin-right: 15px;
  white-space: nowrap;
}

.notice-marquee {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
}

.notice-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollNotice 60s linear infinite;
}

.notice-item {
  display: inline-block;
  margin-right: 40px;
}

.notice-item i {
  margin-right: 8px;
}

.close-notice {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  margin-left: 15px;
  padding: 0 5px;
}

.close-notice:hover {
  opacity: 0.8;
}

@keyframes scrollNotice {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Hidden state */
.notice-section.hidden {
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
}

/* Slider Container */
.coop-slider {
  position: relative;
  width: 100%;
  height: 70vh;

  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.65, 0, 0.35, 1);
  transform: scale(1.05);
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Video Slide */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vw; /* 100vw would crop on tall screens */
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Image Slide */
.image-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slide Overlay */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end; /* align content to bottom */
  padding: 0 10% 40px; /* bottom padding */
}

/* Slide Content */
.slide-content {
  max-width: 600px;
  color: white;
  transform: translateX(-50px);
  transform: translateY(-50px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.32, 0, 0.67, 0) 0.3s;
  /* No top/bottom margin or padding needed here */
}

.slide.active .slide-content {
  transform: translateX(0);
  opacity: 1;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.32, 0, 0.67, 0) 0.4s;
  opacity: 0;
}

.slide.active .slide-title {
  transform: translateY(0);
  opacity: 1;
}

.slide-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.32, 0, 0.67, 0) 0.6s;
  opacity: 0;
}

.slide.active .slide-desc {
  transform: translateY(0);
  opacity: 1;
}

.slide-btn {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.32, 0, 0.67, 0) 0.8s;
  opacity: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide.active .slide-btn {
  transform: translateY(0);
  opacity: 1;
}

.slide-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Controls - MOVED TO BOTTOM LEFT */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.control-btn i {
  color: white;
  font-size: 1.2rem;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Dots Navigation - MOVED TO BOTTOM CENTER */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.dot.active {
  background: white;
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Skip Video Button */
.skip-video {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 10;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
}

.skip-video:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .slide-title {
    font-size: 2.5rem;
  }

  .slide-desc {
    font-size: 1rem;
  }

  .slide-overlay {
    padding: 0 5%;
  }

  .slider-controls {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .slide-content {
    max-width: 100%;
  }

  .slider-controls {
    bottom: 15px;
    left: 15px;
  }

  .slider-dots {
    bottom: 25px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }

  .skip-video {
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}

.slide-title {
  font-size: 2.2rem;
}

.help-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.help-header {
  text-align: center;
  margin-bottom: 30px;
}

.help-title {
  font-size: 2rem;
  color: var(--brand-color-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.help-subtitle {
  color: var(--brand-color-primary);
  font-size: 1rem;
}

.help-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.help-link {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  text-decoration: var(--brand-color-primary);
}

.help-link:hover {
  background: #e8f4fd;
  border-color: var(--brand-color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.help-link i {
  font-size: 1.5rem;
  color: var(--brand-color-primary);
  margin-bottom: 10px;
}

.help-link span {
  display: block;
  font-weight: 500;
  color: var(--brand-color-primary);
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
  padding-right: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-color-primary);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--brand-color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.search-btn:hover {
  background: #2980b9;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .help-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .help-links {
    grid-template-columns: 1fr;
  }
}

.products-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-color-primary);
  margin-bottom: 15px;
}

.section-subtitle {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.product-tabs .nav-link {
  color: var(--brand-color-primary);
  font-weight: 500;
  padding: 12px 25px;
  border: none;
  position: relative;
  margin: 0 5px;
  transition: all 0.3s;
}

.product-tabs .nav-link.active {
  color: var(--secondary-color);
  background: transparent;
}

.product-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: var(--secondary-color);
}

.product-tabs .nav-link:hover {
  color: var(--secondary-color);
}

.tab-content {
  margin-top: 40px;
}

.product-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  height: 100%;
  background: white;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 200px;
  object-fit: cover;
}

.product-body {
  padding: 25px;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--brand-color-primary);
}

.product-desc {
  color: #7f8c8d;
  margin-bottom: 20px;
  min-height: 60px;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.btn-learn {
  background: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-learn:hover {
  background: var(--accent-color);
  color: white;
}

.btn-apply {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-apply:hover {
  background: #c0392b;
  color: white;
}

/* Animation classes */
.animate-fadeIn {
  animation: fadeIn 0.8s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.csr-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-color-primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
}

.section-description {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.csr-initiatives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.csr-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.csr-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.csr-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.csr-content {
  padding: 25px;
}

.csr-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--brand-color-primary);
}

.csr-description {
  color: #7f8c8d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.csr-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.csr-link:hover {
  color: #2980b9;
}

.csr-link i {
  margin-left: 5px;
  transition: all 0.3s;
}

.csr-link:hover i {
  transform: translateX(5px);
}

.highlight-box {
  background: var(--brand-color-primary);
  color: white;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.highlight-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--secondary-color);
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.highlight-text {
  margin-bottom: 0;
  line-height: 1.6;
}

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

  .section-description {
    font-size: 1rem;
  }

  .csr-initiatives {
    grid-template-columns: 1fr;
  }
}

.offers-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.section-header {
  margin-bottom: 40px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brand-color-primary);
  margin-bottom: 0;
}

.offer-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.offer-image {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.offer-badge {
  background: var(--secondary-color);
  color: white;
  padding: 8px 15px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 15px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.offer-image-container {
  position: relative;
}

.offer-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.offer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--brand-color-primary);
}

.offer-subtitle {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.offer-date {
  color: #7f8c8d;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.offer-date i {
  margin-right: 8px;
}

.offer-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.offer-link {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.offer-link i {
  margin-left: 5px;
  transition: all 0.3s;
}

.offer-link:hover i {
  transform: translateX(3px);
}

.notice-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.notice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.notice-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--brand-color-primary);
}

.notice-date {
  color: #7f8c8d;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.notice-date i {
  margin-right: 8px;
}

.notice-link {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.notice-link i {
  margin-left: 5px;
  transition: all 0.3s;
}

.notice-link:hover i {
  transform: translateX(3px);
}

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

  .offer-title {
    font-size: 1.1rem;
  }

  .offer-image {
    height: 150px;
  }
}

.about-loan-section {
  padding: 80px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-color-primary);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s;
}

.feature-item:hover {
  background: #f8f9fa;
  transform: translateY(-5px);
}

.feature-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.feature-label {
  font-size: 1rem;
  color: #7f8c8d;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-statement {
  background: var(--brand-color-primary);
  color: white;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.mission-statement:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--secondary-color);
}

.mission-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }
}

/* Team Section Styles */
.team-section {
  padding: 60px 0;
}

.team-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid var(--accent-color);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
}

.team-position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-bio {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.team-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-link {
  color: var(--primary-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  transition: all 0.3s;
}

.team-link:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.footer-section {
  background-color: var(--brand-color-primary);
  color: #fff;
  padding: 60px 0 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-heading {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #e74c3c;
}

.footer-about {
  color: #b3b3b3;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

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

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: #e74c3c;
  margin-right: 10px;
  margin-top: 3px;
}

.footer-contact span {
  color: #b3b3b3;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #e74c3c;
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 15px;
  margin-top: 40px;
}

.copyright {
  color: #b3b3b3;
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-legal a {
  color: #b3b3b3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-legal {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .footer-bottom .row > div {
    text-align: center;
  }
}

/* Unique Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  padding: 15px 0;
  margin-bottom: 30px;
  position: relative;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: -1;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  background-color: white;
  border-radius: 20px;
  margin-right: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.breadcrumb-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item.active {
  background-color: var(--primary-color);
  color: white;
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 15px;
  color: var(--dark-color);
  font-weight: bold;
}

.breadcrumb-icon {
  margin-right: 8px;
  font-size: 1.1em;
}

h1,
h2,
h3 {
  color: white;
}

h1 {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  margin-top: 20px;
}

h2 {
  margin-top: 30px;
  color: var(--primary-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  background-color: var(--light-color);
  font-weight: bold;
  color: var(--dark-color);
}

tr:hover {
  background-color: rgba(41, 128, 185, 0.05);
}

.divider {
  border-top: 2px dashed #bdc3c7;
  margin: 30px 0;
  position: relative;
}

.divider::after {
  content: "§";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0 10px;
  color: var(--accent-color);
  font-size: 1.2em;
}

.note {
  font-style: italic;
  color: #7f8c8d;
  font-size: 0.9em;
}

.highlight {
  background-color: #fffde7;
  position: relative;
}

.highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
}

.selected {
  background-color: rgba(41, 128, 185, 0.1);
  outline: 2px solid var(--primary-color);
}

/* Currency symbol animation */
.currency-symbol {
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
