/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap');

.oneinten-section {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.oneinten-row {
  display: flex;
  flex-direction: row;
  height: 100%;
  margin: 0;
}

/* Image Container (Left Column) */
.oneinten-image-container {
  position: relative;
  width: 50%;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay on the image */
.oneinten-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Black with 40% opacity */
  z-index: 1;
}

.oneinten-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.oneinten-image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 85%;
  max-width: 600px;
}

.oneinten-image-text {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Stats Container (Right Column) */
.oneinten-stats-container {
  width: 50%;
  height: 100%;
  background-color: #ffffff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.oneinten-stats-content {
  max-width: 500px;
  width: 100%;
}

.oneinten-stat {
  margin-bottom: 70px;
  text-align: center;
}

.oneinten-stat:last-child {
  margin-bottom: 0;
}

.oneinten-stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.oneinten-stat-label strong {
  font-weight: 900;
}

.oneinten-stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 90px;
  font-weight: 900;
  color: #da83b7;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Responsive styles */
@media (max-width: 768px) {
  .oneinten-row {
    flex-direction: column;
  }
  
  .oneinten-image-container {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
  }
  
  .oneinten-image-text {
    font-size: 24px;
  }
  
  .oneinten-stats-container {
    width: 100%;
    padding: 40px 30px;
    height: 100vh;
    min-height: 100vh;
  }
  
  .oneinten-stat {
    margin-bottom: 50px;
  }
  
  .oneinten-stat-label {
    font-size: 20px;
  }
  
  .oneinten-stat-number {
    font-size: 70px;
  }
}

@media (max-width: 480px) {
  .oneinten-image-container {
    height: 100vh;
    min-height: 100vh;
  }
  
  .oneinten-image-text {
    font-size: 18px;
  }
  
  .oneinten-stats-container {
    padding: 30px 20px;
    height: 100vh;
    min-height: 100vh;
  }
  
  .oneinten-stat {
    margin-bottom: 40px;
  }
  
  .oneinten-stat-label {
    font-size: 18px;
  }
  
  .oneinten-stat-number {
    font-size: 50px;
  }
}

