/* 🔹 Section Background */
.company-overview-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0f2f5 0%, #ffffff 100%);
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  font-family: 'Segoe UI', sans-serif;
}

/* 🔹 Container Setup */
.company-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* 🔹 Heading & Subtitle */
.overview-title {
  font-size: 2.8rem;
  color: #102542;
  margin-bottom: 14px;
  font-weight: 700;
  animation: fadeSlideDown 1s ease-out;
}

.overview-subtitle {
  font-size: 1.25rem;
  color: #5a5a5a;
  margin-bottom: 60px;
  animation: fadeSlideUp 1s ease-out;
}

/* 🔹 Main Flex Layout */
.overview-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* 🔹 Text Styling */
.overview-text {
  flex: 1 1 500px;
  font-size: 1.1rem;
  color: #2b2b2b;
  text-align: left;
  line-height: 1.85;
  animation: fadeSlideLeft 1.2s ease-out;
}

.overview-text strong {
  color: #d81e5b;
}

/* 🔹 Image Section */
.overview-image {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
  animation: fadeSlideRight 1.2s ease-out;
}

.overview-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  background: #fff;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.overview-image img:hover {
  transform: scale(1.03);
}

/* 🔹 Responsive Layout */
@media (max-width: 768px) {
  .overview-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .overview-text {
    text-align: center;
  }

  .overview-title {
    font-size: 2.2rem;
  }

  .overview-subtitle {
    font-size: 1.05rem;
  }
}

/* 🔹 Font Animation */
@keyframes fadeSlideDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* 🔤 Custom Font */
@font-face {
  font-family: 'Ethnocentric';
  src: url('assets/fonts/ethnocentric.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* 🔤 Lucpro Font Highlight */
.lucpro-font {
  font-family: 'Ethnocentric', sans-serif;
  color: #ff3e3e;
  letter-spacing: 1px;
  font-size: 1.2em;
  text-transform: uppercase;
  display: inline-block;
}

@media (max-width: 768px) {
  .lucpro-font {
    font-size: 1.1em;
    letter-spacing: 0.8px;
  }
}