	.project {
  background: #f0f8ff;
}
.project > h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #000000;
  font-weight: 700;
}
.project .news_title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 55px;
}
.bp_block_item .row {
  margin: 0;
}
.project .bp_block_item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}
.project .cls_img_hot_news {
  padding: 0;
}
.project .cls_img_hot_news img {
  height: 250px;
  border-radius: 0;
  object-fit: cover;
}
.project .cls_content_hot_news {
  padding: 20px;
  background: #fff;
}
.project .bp_block_item:hover {
  transform: translateY(-5px);
}
.bp-news-button-action {
  display: none;
}
.hero {
  background-color: #0066cc;
  color: #ffffff;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 170, 255, 0.6);
  }
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  z-index: -1;
  transition: all 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
  }
}

.cta-button:hover {
  background-color: #ff8533;
  transform: translateY(-3px);
}

/* Floating Objects Animation */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-background::before,
.hero-background::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform-origin: center;
  animation: rotate 20s linear infinite;
}

.hero-background::before {
  background: radial-gradient(circle, transparent 20%, #0066cc 80%);
}

.hero-background::after {
  background: linear-gradient(45deg, transparent 49%, rgba(0, 170, 255, 0.3) 50%, transparent 51%);
  animation-duration: 30s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.why-choose-us {
  background-color: #f9f9f9;
  padding: 100px 0;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0066cc;
  margin-bottom: 50px;
}

.reasons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reason {
  width: calc(50% - 20px);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.reason-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-right: 20px;
  flex-shrink: 0;
}

.reason-content h3 {
  font-size: 1.5rem;
  color: #0066cc;
  margin-bottom: 10px;
}

.reason-content p {
  font-size: 1rem;
  color: var(--text);
}
.hero-cta {
  display: inline-block;
  background: white;
  color: #0047ab;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-cta:hover {
  background: #e6e6e6;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  .project {
    width: 100%;
  }
  .reason {
    width: 100%;
  }
}

