@charset "utf-8";
/* CSS Document */

@media only screen and (min-width: 479px) {
.mkyy1, *  [aria-labelledby='mkyy1'] {
	display: none !important;
	max-height: none !important;
	overflow: visible !important;
	visibility: hidden;
	position:absolute;
	max-height: 0;
	
}
}

@media only screen and (max-width: 479px) {
.mobile-hide{ display: none !important; }
}

/* Team Welfare Section Styles */
.team-welfare-section {
  background: #00263f; /* Dark blue background */
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.team-welfare-container {
  display: flex;
  align-items: center;
  min-height: 600px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-welfare-left {
  flex: 1;
  padding: 60px 40px 60px 0;
  color: white;
  z-index: 2;
}

.team-welfare-headline {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
}

.team-welfare-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}

.team-welfare-results {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

.awards-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.award-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.glassdoor-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.glassdoor-logo {
  font-size: 1rem;
  font-weight: 600;
}

.rating {
  font-size: 1rem;
  color: #fbbf24;
}

.hr-asia-award, .caring-award, .b-corp {
  font-size: 0.9rem;
  opacity: 0.9;
}

.gold-partner {
  display: flex;
  flex-direction: column;
}

.partner-text {
  font-size: 0.9rem;
  font-weight: bold;
  color: #fbbf24;
}

.partner-source {
  font-size: 0.8rem;
  opacity: 0.8;
}

.heart-icon {
  margin-right: 8px;
}

.team-welfare-right {
  flex: 1;
  position: relative;
  height: 600px;
}

.team-image-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Pink separator line */
.team-welfare-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px; 
  z-index: 3;
}

.cta-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #dc2626;
  padding: 15px 0;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-bar:hover .cta-arrow {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-welfare-container {
    flex-direction: column;
    padding: 20px;
  }
  
  .team-welfare-left {
    padding: 40px 0 20px 0;
  }
  
  .team-welfare-headline {
    font-size: 2rem;
  }
  
  .team-welfare-right {
    height: 400px;
  }
  
  .team-welfare-section {
    min-height: auto;
  }
}