/* =============== GLOBAL =============== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  overflow-x: hidden;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =============== NAVBAR =============== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff; /* solid white */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo img {
  height: 70px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #0a46c2; /* royal blue hover */
}

/* ================= HERO ================= */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100vh;
  padding: 120px 80px 60px;
  position: relative;
  overflow: hidden;
}

/* Background halves */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('asset 1.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('asset 1.png');
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
  z-index: -1;
}

/* ========== LEFT (text area) ========== */

.hero-left {
  width: 50%;
  display: flex;
  justify-content: center;   /* centers vertically */
  align-items: center;       /* centers horizontally */
  text-align: center;        /* centers text */
  margin-top: 50px;
}

.hero-content {
  color: white;
  max-width: 500px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 35px;
  color: #f0f0f0;
}

.hero button {
  background-color: white;
  color: #0a46c2;
  font-weight: 600;
  padding: 14px 34px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.hero button:hover {
  background-color: #e8e8e8;
}

/* ========== RIGHT (video area) ========== */
.hero-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video video {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  border: 3px solid rgba(255,255,255,0.7);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  object-fit: cover;
}
/* ================= ADVISORS MISSION ================= */
.mission {
  background-color: #ffffff;
  padding: 20px 80px;
  position: relative;
  overflow: hidden;
}

.mission-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.mission-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-right {
  flex: 1;
  text-align: center;
  color: #0A85E6; /* royal blue theme */
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #0A85E6;
  margin-bottom: 10px;
}

.mission-right h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-right p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.mission-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-mission {
  background-color: #0A85E6;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-mission:hover {
  background-color: #083599;
}
/* ADVISORS MISSION background image */
.mission {
  position: relative;
  overflow: hidden;
  padding: 0px 80px;
  background-color: #ffffff; /* plain white background */
}
/* ================= WHO WE ARE ================= */
.who-we-are {
  position: relative;
  background-image: url('asset 4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 80px;
  overflow: hidden;
}

.who-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}

.who-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Polygon card shape */
.who-card {
  background-color: white;
  color: #ffffff;
  padding: 40px 50px;
  border-radius: 15px;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}

/* Optional blue accent edge */
.who-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #05c6c6, #0a85e6);
  clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  z-index: -1;
  transform: translate(10px, 10px);
  border-radius: 15px;
}

.who-card h5 {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 10px;
}

.who-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.who-card p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Right side (background continues naturally) */
.who-right {
  flex: 1;
}
/* ================= REAL ADVISORS ================= */
.real-advisors {
  background-color: #0a46c2; /* your royal blue */
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.real-container {
  max-width: 800px;
  margin: 0 auto;
}

.real-advisors h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.real-advisors p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #f0f0f0;
}
/* ================= TEAM SECTION ================= */
/* ================= TEAM TRIANGLE BACKGROUND ================= */
.team {
  position: relative;
  text-align: center;
  padding: 80px 80px;
  background-color: white;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0) 60%, white 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'><rect x='10' y='10' width='30' height='15' fill='%230A46C2' opacity='0.9' rx='5' ry='5'/><rect x='60' y='20' width='40' height='20' fill='%2305C6C6' opacity='0.8' rx='5' ry='5'/><rect x='120' y='5' width='35' height='18' fill='%230A85E6' opacity='0.9' rx='5' ry='5'/><rect x='180' y='25' width='40' height='20' fill='%232EA9E0' opacity='0.85' rx='5' ry='5'/><rect x='250' y='15' width='35' height='18' fill='%232474D9' opacity='0.8' rx='5' ry='5'/><rect x='320' y='30' width='45' height='22' fill='%230A46C2' opacity='0.8' rx='5' ry='5'/><rect x='400' y='0' width='35' height='18' fill='%2305C6C6' opacity='0.9' rx='5' ry='5'/><rect x='460' y='25' width='40' height='20' fill='%230A85E6' opacity='0.9' rx='5' ry='5'/><rect x='520' y='10' width='35' height='18' fill='%232EA9E0' opacity='0.85' rx='5' ry='5'/><rect x='580' y='30' width='45' height='22' fill='%232474D9' opacity='0.8' rx='5' ry='5'/></svg>");
  background-repeat: repeat;
  background-size: 45px 45px; /* increase for larger rectangles */
  background-position: top center;
  z-index: 0;
}



/* Keep team content above triangles */
.team * {
  position: relative;
  z-index: 1;
}



.team-title {
  font-size: 2.2rem;
  color: #0a46c2;
  font-weight: 700;
  margin-bottom: 50px;
}

.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.team-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-bg {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo {
  position: absolute;
  bottom: 0;
  left: 25%;
  transform: translateX(-50%);
  width: 420px;
}

.team-info {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  text-align: center;
}

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;      /* keep name on one line */
  overflow: hidden;         /* prevent text overflow */
  text-overflow: ellipsis;  /* adds "..." if it’s too long */
}


.team-info p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #cbe3ff;
}

.btn-view {
  background-color: #0a46c2;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  font-weight: 600;
  margin: 20px 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-view:hover {
  background-color: #083599;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 80%;
    max-width: 320px;
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .real-advisors {
    padding: 60px 15px;
  }

  .real-advisors h2 {
    font-size: 1.6rem;
  }

  .real-advisors p {
    font-size: 0.95rem;
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-card {
    max-width: 90%;
    padding: 35px 30px;
    clip-path: polygon(0 8%, 8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  }

  .who-card::before {
    transform: translate(6px, 6px);
  }

  .who-right {
    display: none; /* hides extra space on mobile */
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .mission-left, .mission-right {
    flex: none;
    width: 100%;
  }

  .mission-left {
    margin-bottom: 30px;
  }

  .mission-right h2 {
    font-size: 2rem;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
    padding: 100px 20px 60px;
  }

  .hero-left, .hero-right {
    width: 100%;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-video video {
    width: 90%;
    margin-top: 40px;
  }
}
