﻿.approach-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.approach-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 3rem;
    letter-spacing: 3px;
    text-align: center;
    z-index: 3;
}

/* ================= HERO VIDEO 
.approach-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.approach-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay h1 {
  color: white;
  font-size: 2.8rem;
  letter-spacing: 2px;
}================= */

/* ================= SPLIT LAYOUT ================= */
.approach-section {
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  padding: 60px 0;
margin: auto;
}

.approach-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
margin: auto;

}

/* LEFT */
.approach-main {
  flex: 2;
  background: rgba(255,255,255,0.6);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.approach-main h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.approach-main p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #1f2937;
  text-align: justify;
font-weight: 500;
}

/* RIGHT */
.approach-aside {
  flex: 1;
  position: sticky;
  top: 100px;
}

.approach-aside h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

/* LINK TREE */
.link-tree {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link-tree a {
  display: flex;
  align-items: center;

  gap: 12px;
  padding: 14px 16px;
  border-radius: 40px;
  text-decoration: none;
  background: white;
  color: var(--secondary);
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
 backdrop-filter: blur(6px);
}

.link-tree a i {
  color: var(--primary);
}

/* HOVER EFFECT */
.link-tree a:hover {
  transform: translateY(-4px);
  background: var(--primary);
  color: white;
}

.link-tree a:hover i {
  color: var(--accent);
}


.approach-main {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
  .approach-container {
    flex-direction: column;
  }

  .approach-aside {
    position: static;
    text-align: center;
  }

  .link-tree {
    align-items: center;
    justify-content: center;
  margin: 0 auto;
  }

  .link-tree a {
    width: auto;
    min-width: 270px;
    max-width: 350px;
   font-size: 1.2rem;
    text-align: center;
    border-radius: 40px;
  }

  .hero-overlay h1 {
    font-size: 2.0rem;
  }
}