        :root {
  --primary: #0f8fc7;
  --secondary: #141527;
  --accent: #ff6b6b;
  --light: #f8f9fa;
}

.hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 21, 39, 0.7);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUpIn 1s forwards 2s;
}

.hero-description {
  font-size: 1.5rem;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 1s forwards 2.5s;
}
.gallery-image .gallery {
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.gallery-image .section-title {
    color: #141527;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 100px;
    text-align: center;
    animation: slideInDown 1s ease forwards;
    position: relative;
}
/* Services Showcase */
.services-showcase {
  padding: 100px 0;
  background: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.title-accent {
  color: var(--primary);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}



.cls_img_hot_news {
  padding: 0;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: var(--secondary);
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.process-step {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.3s;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.process-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Statistics Section */
.statistics {
  padding: 100px 0;
  background: url("/api/placeholder/1920/1080") center/cover fixed;
  position: relative;
}

.statistics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 21, 39, 0.9);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  color: white;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}
.innovation {
  padding: 100px 20px;
  background: var(--secondary);
  color: white;
}
.innovation-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.innovation-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}

.innovation-item:hover {
  transform: translateY(-10px);
}
.innovation-item ul {
  padding-left: 10px;
}
.innovation-item ul li {
  list-style: disc;
}
/* Animations */
@keyframes introFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .services-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.company-intro-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
  position: relative;
}

.intro-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 0 30px;
  position: relative;
}

.intro-content {
  position: relative;
  z-index: 2;
}

.company-title {
  font-size: 2.8rem;
  color: #0f8fc7;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.company-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #0f8fc7;
  transform-origin: left;
  animation: lineGrow 1s ease-out forwards;
}

.company-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #0f8fc7;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #0f8fc7;
  transition: height 0.3s ease;
}

.stat-item:hover::before {
  height: 100%;
}

.stat-number {
  font-size: 2.5rem;
  color: #0f8fc7;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
}

.image-section {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-section:hover img {
  transform: scale(1.05);
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #0f8fc7;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.expertise-item {
  background: rgba(37, 99, 235, 0.1);
  padding: 10px 20px;
  border-radius: 20px;
  color: #0f8fc7;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background: #0f8fc7;
  color: white;
}

.floating-shape {
  position: absolute;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.shape1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.shape2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
}
.why-choose-section {
  background: #ffffff;
  min-height: 100vh;
  font-family: "Segoe UI", sans-serif;
  padding: 100px 20px;
  overflow: hidden;
  position: relative;
}

/* Background Pattern Grid */
.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(15, 143, 199, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 143, 199, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

/* Background Circles */
.background-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  animation: floatAnimation 20s infinite linear;
}

.circle:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(15, 143, 199, 0.05) 0%, rgba(20, 21, 39, 0.02) 70%);
  animation-delay: 0s;
}

.circle:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -50px;
  background: radial-gradient(circle, rgba(20, 21, 39, 0.05) 0%, rgba(15, 143, 199, 0.02) 70%);
  animation-delay: -5s;
}

.circle:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 20%;
  background: radial-gradient(circle, rgba(15, 143, 199, 0.03) 0%, transparent 70%);
  animation-delay: -10s;
}

/* Animated Lines */
.background-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(15, 143, 199, 0.05), transparent);
  animation: lineAnimation 15s infinite linear;
}

.line:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}
.line:nth-child(2) {
  left: 40%;
  animation-delay: -5s;
}
.line:nth-child(3) {
  left: 60%;
  animation-delay: -10s;
}
.line:nth-child(4) {
  left: 80%;
  animation-delay: -15s;
}

/* Dot Pattern */
.dot-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(15, 143, 199, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  animation: patternFloat 50s infinite linear;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(30px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes lineAnimation {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes patternFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.why-choose-section .section-title {
  color: #141527;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 100px;
  text-align: center;
  transform: translateY(-30px);
  opacity: 0;
  animation: slideInDown 1s ease forwards;
  position: relative;
}

.why-choose-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #0f8fc7, #141527);
}

.why-choose-section .section-title::before {
  content: "WHY US";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  color: rgba(15, 143, 199, 0.03);
  font-weight: 900;
  white-space: nowrap;
  z-index: -1;
}

.reasons-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.reason-card {
  position: relative;
  padding: 40px 30px;
  background: #fff;
  border-radius: 15px;
  transition: all 0.5s ease;
  opacity: 0;
  animation: appearCard 0.8s ease forwards;
  animation-delay: calc(var(--delay) * 0.2s);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 143, 199, 0.1), rgba(20, 21, 39, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 143, 199, 0.1);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-number {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 7rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(15, 143, 199, 0.05), rgba(20, 21, 39, 0.02));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.reason-card:hover .reason-number {
  transform: scale(1.1) rotate(5deg);
}

.reason-icon {
  font-size: 2.5rem;
  color: #0f8fc7;
  margin-bottom: 20px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.reason-card:hover .reason-icon {
  transform: translateY(-5px);
}

.reason-title {
  font-size: 1.4rem;
  color: #141527;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.reason-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #0f8fc7;
  transition: width 0.4s ease;
}

.reason-card:hover .reason-title::after {
  width: 60px;
}

.reason-description {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

@keyframes appearCard {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .reasons-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .intro-container {
    grid-template-columns: 1fr;
  }

  .company-title {
    font-size: 2.3rem;
  }

  .image-section {
    height: 400px;
    order: -1;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .section-title::before {
    font-size: 60px;
    top: -40px;
  }

  .reasons-container {
    grid-template-columns: 1fr;
  }

  .reason-card {
    padding: 30px 25px;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }

  .company-title {
    font-size: 2rem;
  }
}
@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

