/* Page Banner Common Styles */
.page-banner {
  width: 100%;
  height: 60vh;
  position: relative;
  background-color: #0f172a;
  background-image: linear-gradient(-45deg, #020617, #1e1b4b, #172554, #0f172a);
  background-size: 400% 400%;
  opacity: 1;
  animation: gradientBG 15s ease infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.page-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.page-banner .banner-content {
  text-align: center;
  z-index: 2;
  padding: 0 2rem;
}

.page-banner .banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

@media screen and (max-width: 767px) {
  .page-banner .banner-title {
    font-size: 2.5rem;
  }
}

.page-banner .banner-subtitle {
  font-size: 1.5rem;
  color: #e2e8f0;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
  .page-banner .banner-subtitle {
    font-size: 1.1rem;
  }
}

.page-banner .scroll-hint {
  position: absolute;
  bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.page-banner .scroll-hint:hover {
  color: #fff;
  transform: translateY(-5px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.page-banner .scroll-hint span {
  font-size: 0.9rem;
  margin-right: 0.5rem;
  letter-spacing: 1px;
}

.page-banner .scroll-hint .arrow-down {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

@media screen and (max-width: 767px) {
  .content-wrapper {
    padding: 2rem 1rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.section-header .section-line {
  width: 60px;
  height: 4px;
  background: #3b82f6;
  margin: 0 auto;
  border-radius: 2px;
}

/* About Page Styles */
.about-page {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  background-color: #f8fafc;
  min-height: 100vh;
}

.company-intro {
  margin-bottom: 6rem;
}

.company-intro .intro-container {
  display: flex;
  justify-content: center;
}

.company-intro .intro-text {
  max-width: 900px;
  text-align: center;
}

.company-intro .intro-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 2;
  text-align: justify;
}

.company-intro .intro-desc p {
  margin-bottom: 1.5rem;
}

.workspace-section {
  margin-bottom: 6rem;
}

.workspace-section .workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media screen and (max-width: 767px) {
  .workspace-section .workspace-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.workspace-section .workspace-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
  cursor: pointer;
}

.workspace-section .workspace-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.workspace-section .workspace-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}

.workspace-section .workspace-item .overlay span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.workspace-section .workspace-item:hover img {
  transform: scale(1.1);
}

.workspace-section .workspace-item:hover .overlay {
  opacity: 1;
}

.workspace-section .workspace-item:hover .overlay span {
  transform: translateY(0);
}

.clients-section {
  margin-bottom: 6rem;
}

.clients-section .clients-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
  /* Fade effect on sides */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.clients-section .clients-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding-left: 2rem; /* Initial padding */
  /* Animation defined in JS or defaults here if we had double content initially. 
     We will use JS to duplicate content, so we need the animation here assuming duplication. */
  animation: scrollLeft 80s linear infinite;
}

.clients-section .clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-section .client-card {
  width: 280px; /* Fixed width for carousel */
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
  /* box-sizing: border-box added to prevent width issue in some browsers if not global */
  box-sizing: border-box;
}

.clients-section .client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: #93c5fd;
}

.clients-section .client-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-section .client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.clients-section .client-info {
  text-align: center;
}

.clients-section .client-name {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.clients-section .client-sub {
  font-size: 0.8rem;
  color: #94a3b8;
}

.honor-section {
  margin-bottom: 4rem;
}

/* Products Page Styles */
.products-page {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  background-color: #f8fafc;
  min-height: 100vh;
}

.products-section {
  margin-bottom: 4rem;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .products-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #93c5fd;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-card .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image-wrapper .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-image-wrapper .img-overlay span {
  color: #fff;
  border: 1px solid #fff;
  padding: 0.5em 1.5em;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.product-image-wrapper:hover .product-img {
  transform: scale(1.1);
}

.product-image-wrapper:hover .img-overlay {
  opacity: 1;
}

.product-card .product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title-link {
  text-decoration: none;
}

.product-card .product-title {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
  transition: color 0.2s;
}

.product-card:hover .product-title {
  color: #3b82f6;
}

.product-card .product-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
  text-align: justify;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.product-actions button {
  flex: 1;
  padding: 0.6em 0;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.btn-primary {
  background: #3b82f6;
  color: #fff;
  border: 1px solid #3b82f6;
}

.btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.btn-outline {
  background: transparent;
  color: #3b82f6;
  border: 1px solid #3b82f6;
}

.btn-outline:hover {
  background: #eff6ff;
}

.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
  /* Hidden by default, toggled via JS */
  display: none;
}

.qr-modal.active {
  display: flex;
}

.qr-modal .qr-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 320px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: slideUp 0.3s ease;
}

.qr-modal .qr-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qr-modal .qr-header span {
  font-weight: 600;
  color: #1e293b;
}

.qr-modal .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.qr-modal .close-btn:hover {
  color: #ef4444;
}

.qr-modal .qr-body {
  padding: 2rem;
  text-align: center;
}

.qr-modal .qr-body img {
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
}

.qr-modal .qr-body p {
  color: #64748b;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Jobs Page Styles */
.jobs-page {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  background-color: #f8fafc;
  min-height: 100vh;
}

.talent-concept {
  margin-bottom: 5rem;
}

.talent-concept .concept-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .talent-concept .concept-content {
    grid-template-columns: 1fr;
  }
}

.concept-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.concept-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #93c5fd;
}

.concept-card .concept-icon {
  /* Previously font-size: 3rem; - Overridden by new appended styles for SVG, but keeping here for reference or cleanup */
  margin-bottom: 1.5rem;
}

.concept-card h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.concept-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: justify;
}

.concept-card a {
  color: #3b82f6;
  text-decoration: none;
}
.concept-card a:hover {
  text-decoration: underline;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.job-card.is-expanded {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.job-card .job-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .job-card .job-header {
    padding: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.job-header .job-title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-header .job-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.job-header .job-tags {
  display: flex;
  gap: 0.5rem;
}

.job-header .tag {
  font-size: 0.85rem;
  padding: 0.2em 0.6em;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 4px;
}

.job-header .job-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

@media screen and (max-width: 767px) {
  .job-header .job-action {
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.8rem;
  }
}

.job-header .arrow-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.job-header .arrow-icon.rotated {
  transform: rotate(-135deg);
}

.job-body {
  padding: 0 2rem 2rem 2rem;
  border-top: 1px solid #f1f5f9;
  animation: slideDown 0.3s ease-out;
  display: none; /* Initially hidden */
}

@media screen and (max-width: 767px) {
  .job-body {
    padding: 0 1.2rem 1.5rem 1.2rem;
  }
}

.job-body .job-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #e2e8f0;
}

@media screen and (max-width: 767px) {
  .job-body .job-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.job-info-grid .info-item {
  font-size: 0.95rem;
  color: #334155;
}

.job-info-grid .info-item span {
  color: #94a3b8;
  margin-right: 0.5rem;
}

.job-detail-section {
  margin-bottom: 1.5rem;
}

.job-detail-section h4 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.job-detail-section ul {
  list-style: none;
  padding: 0;
}

.job-detail-section li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.job-detail-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}

.job-body .job-footer {
  margin-top: 2rem;
  text-align: center;
}

.job-body .apply-btn {
  display: inline-block;
  padding: 0.8em 3em;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.job-body .apply-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px -1px rgba(59, 130, 246, 0.4);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Page Styles */
.contact-page {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  background-color: #f8fafc;
  min-height: 100vh;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media screen and (max-width: 767px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #93c5fd;
}

.info-card .icon-box {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.info-card .info-text h3 {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.info-card .info-text p {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.4;
}

.info-card .info-text p a {
  color: #3b82f6;
  text-decoration: none;
}
.info-card .info-text p a:hover {
  text-decoration: underline;
}

.map-section {
  height: 100%;
  min-height: 400px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .map-container {
    min-height: 300px;
  }
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.map-container:hover img {
  transform: scale(1.05);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.map-container .map-pc {
  display: block;
}

.map-container .map-app {
  display: none;
}

@media screen and (max-width: 767px) {
  .map-container .map-pc {
    display: none;
  }
  .map-container .map-app {
    display: block;
  }
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.map-overlay span {
  background: #fff;
  color: #1e293b;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Financial / Dynamic Page */
.pic-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4rem 0;
  box-sizing: border-box;
  gap: 2rem;
}

.pic-container img {
  width: 50%; /* PC default */
  height: auto;
  object-fit: contain;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.pic-container img:hover {
  transform: scale(1.02);
}

@media screen and (max-width: 767px) {
  .pic-container {
    padding: 2rem 0;
    gap: 1rem;
  }
  
  .pic-container img {
    width: 90%; /* Mobile width */
  }
}
.honor-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60vh;
  position: relative;
  padding: 0 2rem;
}

.honor-carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 1rem;
}

.honor-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  align-items: center;
}

.honor-item {
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  flex-shrink: 0;
  width: 16.666%; /* Default to 6 items on PC */
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  padding: 0 5px;
}

.honor-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.honor-item:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.nav-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
}

.nav-btn:hover:not(:disabled) {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  color: #3b82f6;
}

.nav-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.nav-btn:disabled {
  background-color: #f1f5f9;
  box-shadow: none;
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.nav-btn .arrow-icon {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.8;
  color: #64748b;
  transition: color 0.3s ease;
}

.nav-btn:hover .arrow-icon {
  color: #3b82f6;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .honor-carousel-container {
    height: 40vh;
    padding: 0;
  }
  .honor-item {
    width: 100%; /* 1 item on mobile */
  }
  .nav-btn {
    width: 2.2rem;
    height: 2.2rem;
  }
  .nav-btn .arrow-icon {
    width: 0.9rem;
    height: 0.9rem;
  }
}


/* Financial / Dynamic Page */


/* Financial Page Header Blur */
.topBackground {
  overflow: hidden;
  position: relative;
  height: 300px; /* Reduced height from 400px */
}

.topBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topBackground img.blur-bg {
  filter: blur(6px) brightness(0.8); /* Reduced blur, adjusted brightness */
  transform: scale(1.05); /* Avoid blurry edges, scale down slightly since blur is less */
}


/* Concept Icon SVG Styles */
.concept-card .concept-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  width: 4rem;
  background: #eff6ff;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.concept-card .svg-icon {
  width: 2rem;
  height: 2rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.concept-card:hover .svg-icon {
  transform: scale(1.1);
}


/* Contact Icon SVG Styles */
.icon-box .svg-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

.info-card:hover .icon-box .svg-icon {
  transform: scale(1.1);
}
