.home-hero {
  width: 100%;
  height: 800px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 147px 270px;
  box-sizing: border-box;
  text-align: left;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
  pointer-events: none;
}

.hero-eyebrow,
.hero-headline,
.hero-desc,
.hero-features,
.hero-buttons {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: #fff;
  font-size: 26px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
}

.hero-headline {
  max-width: 950px;
  color: #fff;
  font-size: 65px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.hero-desc {
  max-width: 750px;
  color: #fff;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 24px;
  text-align: left;
}

.hero-features {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-text {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 229px;
  height: 52px;
  border-radius: 26px;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #fff;
  color: #212121;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: rgba(33, 33, 33, 0.85);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.home-about {
  width: 100%;
  padding: 80px 278px;
  background-color: #ffffff;
  background-image: url("../assets/images/about/section_bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 164px;
  box-sizing: border-box;
  scroll-margin-top: 130px;
}

.home-about-img {
  width: 578px;
  height: 578px;
  background: url("../assets/images/home/home_about.jpg") center/cover no-repeat;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.home-about-content {
  width: 613px;
}

.home-about-title {
  color: #131d45;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 50px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.home-about-text {
  color: #515050;
  font-family: "Merriweather", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

/* Business Verticals */
.home-verticals {
  width: 100%;
  padding: 60px 267px;
  background-color: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.home-verticals-header {
  text-align: center;
}

.home-verticals-title {
  color: #131d45;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.home-verticals-summary {
  color: #515050;
  font-family: "Merriweather", serif;
  font-size: 26px;
  font-weight: 400;
}

.vertical-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.vertical-preview-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vertical-preview-card:hover {
  cursor: pointer;
}

.vertical-preview-card:hover .vertical-logo-box {
  background: #fdfdfd;
}

.vertical-logo-box {
  width: 320px;
  aspect-ratio: 29/26;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.vertical-logo-box div {
  width: 100%;
  height: 100%;
  background-size: contain !important;
  background-position: center !important;
}

.vertical-preview-title {
  color: #212121;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px 0;
  min-height: 72px; /* Align titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-preview-category {
  color: #797979;
  font-family: "Merriweather", serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 12px 0;
}

.vertical-preview-desc {
  color: #515050;
  text-align: center;
  font-family: "Merriweather", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 250px;
  min-height: 72px; /* Align description text */
}

.home-innovation {
  width: 100%;
  padding: 60px 220px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  gap: 11px;
}

.innovation-title {
  color: #131d45;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.innovation-summary {
  color: #515050;
  font-family: "Merriweather", serif;
  font-size: 26px;
  text-align: center;
  margin: 0;
}

.innovation-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1377px;
}

.innovation-card {
  max-width: 442px;
  width: 100%;
  min-height: 547px;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 32px;
  background: white;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.innovation-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.innovation-card:hover .quote-icon {
  transform: translateY(-2px);
}

.innovation-card-header {
  display: flex;
  align-items: start;
  margin-bottom: 24px;
}

.quote-icon {
  width: 58px;
  height: 58px;
  opacity: 0.25;
  background: url("../assets/icons/common/quotes.webp") center/cover no-repeat;
  transition: all 0.4s ease;
}

.category-tag {
  height: 32px;
  padding: 0 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  margin-left: 20px;
  display: flex;
  align-items: center;
  color: #212121;
  font-family: "Merriweather";
  font-size: 16px;
}

.action-card-title {
  color: #212121;
  font-family: "Source Sans Pro";
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 4px;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.action-card-location {
  color: #515050;
  font-family: "Merriweather";
  font-size: 16px;
  margin-bottom: 32px;
  min-height: 24px;
}

.impact-badge {
  width: 100%;
  height: 50px;
  background: #212121;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Source Sans Pro";
  font-weight: 600;
  margin-bottom: 24px;
  transition: background 0.3s ease;
  cursor: default;
}

.innovation-footer {
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.home-services {
  position: relative;
  width: 100%;
  padding-bottom: 80px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background: url("../assets/images/home/section_bg.webp") center/cover
    no-repeat;
  pointer-events: none;
}

.services-container {
  position: relative;
  z-index: 10;
  width: 1377px;
  padding-top: 66px;
}

.service-card {
  width: 442px;
  height: 535px;
  border: 1px solid rgba(33, 33, 33, 0.25);
  background: white;
  padding: 32px 45px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
  border-color: rgba(33, 33, 33, 0.35);
}

.service-icon-box {
  width: 94px;
  height: 92px;
  border: 1px solid rgba(31, 33, 94, 0.25);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-icon-box img {
  transition: all 0.3s ease;
  border-radius: 30px;
}

.pillar-title {
  color: #212121;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.pillar-text {
  color: #515050;
  font-family: "Merriweather", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 24px 0;
  min-height: 120px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  color: #515050;
  font-family: "Merriweather", serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  line-height: 28px;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #515050;
  border-radius: 50%;
}
@media (max-width: 1440px) {
  .home-hero {
    height: 750px;
    min-height: 700px;
  }
  .hero-slide {
    padding: 140px 60px 60px;
  }
  .hero-headline {
    width: 100%;
    font-size: 56px;
  }
  .hero-desc {
    width: 80%;
  }
  .home-about {
    padding: 80px 60px;
    gap: 80px;
  }
}

@media (max-width: 1024px) {
  .home-hero {
    height: 700px;
    min-height: 650px;
  }
  .hero-slide {
    padding: 130px 40px 60px;
  }
  .hero-headline {
    font-size: 44px;
    margin-bottom: 20px;
  }
  .hero-desc {
    width: 100%;
    font-size: 16px;
  }
  .home-about {
    padding: 60px 40px;
    flex-direction: column;
    gap: 40px;
  }
  .home-about-img {
    width: 100%;
    height: 400px;
  }
  .home-about-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .home-hero {
    height: 85vh;
    min-height: 600px;
    background: #000;
  }
  .hero-slide {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .hero-headline {
    font-size: 32px;
    font-weight: 800;
    width: 100%;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: "Source Sans Pro", sans-serif;
    text-align: center;
  }
  .hero-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
  }
  .feature-item {
    gap: 12px;
  }
  .feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .feature-check svg {
    width: 12px;
    height: 12px;
    stroke: #000 !important;
  }
  .feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-align: left;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    gap: 16px;
    margin-top: 0;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .btn {
    width: 100%;
    height: 56px;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 700;
    padding: 0 30px;
  }
  .btn svg {
    width: 20px;
    height: 20px;
  }
  .home-about {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .hero-features {
    gap: 12px;
    margin-bottom: 30px;
  }
  .feature-text {
    font-size: 15px;
  }
  .btn {
    height: 52px;
  }
}

@media (max-width: 1440px) {
  .home-verticals {
    padding: 60px 60px;
  }
  .vertical-cards-container,
  .innovation-cards,
  .services-container {
    width: 100%;
    gap: 40px;
  }
  .innovation-card,
  .service-card {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .home-verticals {
    padding: 60px 40px;
  }

  .home-verticals-title,
  .innovation-title {
    font-size: 40px;
  }

  .home-verticals-summary,
  .innovation-summary {
    font-size: 20px;
  }

  .vertical-cards-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .vertical-preview-card {
    min-width: 300px;
    flex: 1 1 300px;
  }

  .vertical-preview-title,
  .vertical-preview-desc {
    min-height: auto;
  }

  .home-innovation {
    padding: 60px 40px;
  }
  .innovation-cards,
  .pillars-grid {
    flex-direction: column;
    align-items: center;
  }
  .innovation-card,
  .service-card {
    width: 100%;
    height: auto;
    max-width: 600px;
  }
  .action-card-title,
  .action-card-location {
    min-height: auto;
  }

  .services-container {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  /* Business Verticals */
  .home-verticals {
    padding: 40px 20px;
  }
  .home-verticals-title,
  .innovation-title {
    font-size: 26px;
  }
  .home-verticals-summary,
  .innovation-summary {
    font-size: 15px;
    line-height: 24px;
  }
  .vertical-cards-container {
    gap: 30px;
  }
  .vertical-preview-card {
    min-width: 100%;
  }
  .vertical-logo-box {
    width: 100%;
  }
  .vertical-preview-title {
    font-size: 20px;
    min-height: auto;
  }

  /* Innovation Section */
  .home-innovation {
    padding: 40px 20px;
  }
  .action-card-title {
    font-size: 24px;
    min-height: auto;
  }
  .innovation-cards {
    width: 100%;
    gap: 30px;
  }
  .innovation-footer {
    margin-top: 40px;
  }
  .action-card-location {
    margin-bottom: 20px;
  }
  .impact-badge {
    height: 48px;
    font-size: 14px;
  }

  /* Services Section */
  .services-container {
    padding: 40px 20px;
    width: 100%;
  }
  .pillar-title {
    font-size: 20px;
    min-height: auto;
  }
  .pillar-text {
    font-size: 15px;
    min-height: auto;
  }
  .service-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .home-verticals,
  .home-innovation,
  .services-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .innovation-card,
  .service-card {
    padding: 24px 20px;
  }
  .vertical-logo-box {
    padding: 15px;
  }
}
