
    /* ===================================================================
   WHO WE ARE - ENHANCED SPLIT SCREEN LAYOUT
   Modern, Interactive, Fully Responsive
   =================================================================== */

.who-we-are-split {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.split-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ============================================
   LEFT SIDE - IMAGE & STATS
   ============================================ */

.split-left {
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
}

.main-image-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.main-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.main-image-container:hover .main-image {
  transform: scale(1.05);
}

/* Floating Dot Patterns */
.floating-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(circle, #1abc9c 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.4;
  animation: floatDots 10s ease-in-out infinite;
}

.pattern-1 {
  top: -30px;
  left: -30px;
  animation-delay: 0s;
}

.pattern-2 {
  bottom: -30px;
  right: -30px;
  animation-delay: 2s;
}

@keyframes floatDots {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-image-container:hover .video-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: #1abc9c;
}

.play-button i {
  color: #1abc9c;
  font-size: 1.8rem;
  margin-left: 4px;
  transition: color 0.3s ease;
}

.play-button:hover i {
  color: #fff;
}

/* Floating Stats Card */
.stats-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.stats-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1abc9c, #16a085);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-icon i {
  color: #fff;
  font-size: 1.6rem;
}

.stats-content h4 {
  font-size: 2rem;
  font-weight: 800;
  color: #1abc9c;
  margin: 0;
  line-height: 1;
}

.stats-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 5px 0 0 0;
}

/* ============================================
   RIGHT SIDE - CONTENT
   ============================================ */

.split-right {
  padding: 20px 0;
}

.content-wrapper {
  max-width: 600px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(26, 188, 156, 0.1);
  border: 2px solid rgba(26, 188, 156, 0.3);
  border-radius: 30px;
  color: #1abc9c;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.split-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #2c3e50;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.brand-gradient {
  display: block;
  background: linear-gradient(135deg, #1abc9c 0%, #79c57d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1abc9c, #79c57d);
  margin: 0 0 30px 0;
  border-radius: 2px;
}

.description-content {
  margin-bottom: 30px;
}

.lead-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.description-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

/* Read More Link */
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1abc9c;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  gap: 15px;
  color: #16a085;
}

.read-more-link i {
  transition: transform 0.3s ease;
}

.read-more-link:hover i {
  transform: translateX(5px);
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(62deg, #79c57d, #1abc9c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check i {
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
}

.feature-item span {
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 500;
}

/* Background Circle Decorations */
.circle-decoration {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 188, 156, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: 5%;
  animation: floatCircle1 15s ease-in-out infinite;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  left: 10%;
  animation: floatCircle2 20s ease-in-out infinite reverse;
}

@keyframes floatCircle1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

@keyframes floatCircle2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .split-container {
    gap: 60px;
  }
  
  .split-heading {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .who-we-are-split {
    padding: 70px 0;
  }
  
  .split-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .split-left {
    order: 2;
  }
  
  .split-right {
    order: 1;
  }
  
  .stats-card {
    bottom: 20px;
    right: 20px;
    padding: 20px 25px;
  }
  
  .floating-dots {
    display: none;
  }
  
  .split-heading {
    font-size: 2rem;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-card {
    padding: 15px 20px;
    gap: 15px;
  }
  
  .stats-icon {
    width: 50px;
    height: 50px;
  }
  
  .stats-content h4 {
    font-size: 1.6rem;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.4rem;
  }
}
