/* Hero Section */
.hero {
  min-height: 60vh;
  position: relative;
  background-image: url("../img/bg5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 134, 234, 0.2);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Brand Value Section */
#brand-value .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

#brand-value .section-title p {
  font-size: 14px;
  margin: 0;
}

.brand-value-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 15px;
  /* padding: 40px 0; */
}

.value-card::before {
  display: none;
}

.value-card:hover::before {
  display: none;
}

.value-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0f86ea;
}

#brand-value .value-card.advantage-1 .value-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

#brand-value .value-card.advantage-2 .value-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#brand-value .value-card.advantage-3 .value-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#brand-value .value-card.advantage-4 .value-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#brand-value .value-card.advantage-2 .value-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#brand-value .value-card.advantage-3 .value-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#brand-value .value-card.advantage-4 .value-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.value-card {
  /* background: #ffffff; */
  border-radius: 20px;
  padding: 15px 10px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  width: calc(25% - 12.5px);
  /* max-width: 300px; */
  text-align: center;
}



.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #4a90e2);
  z-index: 1;
  transition: width 0.4s ease;
}

.value-card:hover::before {
  width: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
  /* width: 60px; */
  /* height: 60px; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
  color: #0f86ea;
}

.value-icon i {
  font-size: 32px;
  font-weight: 700;
}

#brand-value .value-card .value-icon {
  /* background: #4facfe; */
}


.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.value-card p {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .value-card {
    width: calc(33.333% - 20px);
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .value-card {
    width: calc(50% - 15px);
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .value-card {
    width: 100%;
    max-width: 100%;
  }
}

/* Platforms Section */
#platforms .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

#platforms .section-title p {
  font-size: 14px;
  margin: 0;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.platform-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #4a90e2);
  z-index: 1;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.platform-card-header {
  display: flex;
  gap: 15px;
  padding: 25px;
  justify-content: center;
  /* background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%); */
}

.platform-logo-box {
  /* padding: 20px 30px; */
  border-radius: 12px;
  text-align: center;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.platform-logo-img {
  max-width: 80px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.platform-logo-box:hover .platform-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.platform-card-body {
  padding: 0px 25px 25px 25px;
  text-align: center;
}

.platform-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.platform-card-body p {
  font-size: 15px;
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
}

/* Solutions Section */
#solutions .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

#solutions .section-title p {
  font-size: 14px;
  margin: 0;
}

.solutions-visual {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero h2 {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  #brand-value .section-title h2,
  #platforms .section-title h2,
  #solutions .section-title h2 {
    font-size: 28px;
  }

  #brand-value .section-title p,
  #platforms .section-title p,
  #solutions .section-title p {
    font-size: 16px;
  }

  .value-card {
    padding: 30px 25px;
    width: calc(50% - 10px);
    max-width: 500px;
  }

  .value-card h3 {
    font-size: 20px;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .platform-card-header {
    padding: 20px;
    gap: 10px;
  }

  .platform-logo-box {
    padding: 15px 20px;
  }

  .platform-logo-img {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
  }

  .platform-card-body {
    padding: 20px 15px;
  }

  .platform-card-body h3 {
    font-size: 18px;
  }

  .platform-card-body p {
    font-size: 14px;
    color: var(--default-color);
  }

  .solutions-visual {
    margin-top: 30px;
  }

  .solutions-image {
    border-radius: 15px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }

  .hero h2 {
    font-size: 24px;
  }

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

  #brand-value .section-title h2,
  #platforms .section-title h2,
  #solutions .section-title h2 {
    font-size: 24px;
  }

  #brand-value .section-title p,
  #platforms .section-title p,
  #solutions .section-title p {
    font-size: 15px;
  }

  .brand-value-content {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .value-card {
    padding: 25px 20px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
  }

  .value-card:not(:last-child) {
    border-right: none;
  }

  .solutions-divider-vertical {
    display: none;
  }

  .value-card h3 {
    font-size: 18px;
  }

  .value-card p {
    font-size: 14px;
    color: var(--default-color);
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .platform-card-header {
    padding: 15px;
    gap: 8px;
  }

  .platform-logo-box {
    padding: 12px 18px;
  }

  .platform-logo-img {
    max-width: 70px;
    max-height: 45px;
    object-fit: contain;
  }

  .platform-card-body {
    padding: 18px 12px;
  }

  .platform-card-body h3 {
    font-size: 16px;
  }

  .platform-card-body p {
    font-size: 13px;
  }

  .solutions-visual {
    margin-top: 0px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .solutions-image {
    border-radius: 12px;
    height: 290px;
    width: 100%;
    object-fit: cover;
  }
}

.solutions-divider-vertical {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}
#brand-value .section-title{
  padding-bottom: 45px;
}

#brand-value{
  padding-bottom: 45px;
}