/* =============== GLOBAL =============== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* =============== NAVBAR =============== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  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.desktop-nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 400;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #0a46c2;
}

/* Add body top padding so content isn't behind navbar */
body {
  padding-top: 110px;
}

/* =============== 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;
  align-items: center;
  text-align: center;
  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;
}

/* =============== MISSION =============== */
.mission {
  background: #f6f8ff;
  padding: 80px 80px;
}

.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;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #05c6c6;
  font-size: 0.9rem;
}

.mission-right h2 {
  font-size: 2.5rem;
  color: #0a46c2;
  margin-top: 10px;
}

.mission-right p {
  margin-top: 18px;
  line-height: 1.7;
  color: #555;
  font-size: 1rem;
}

.mission-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn-mission {
  background-color: #0a46c2;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

/* =============== 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 {
  padding: 30px 80px 40px;
  text-align: center;
}

.real-container h2 {
  font-size: 2.5rem;
  color: #0a46c2;
}

.real-container p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #0a46c2;
  font-weight: 600;
}

/* =============== PROMO HERO (TANVIR2) =============== */
.promo-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100vh;
  padding: 120px 80px 60px;
  position: relative;
  overflow: hidden;
}

.promo-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;
}

.promo-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;
}

.promo-hero .hero-left,
.promo-hero .hero-right {
  width: 50%;
}

.promo-hero .hero-content {
  color: white;
  max-width: 500px;
}

.promo-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.promo-hero p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #f0f0f0;
}

.promo-image-box {
  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);
  overflow: hidden;
}

.promo-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============== TEAM (IF USED LATER) =============== */
.team {
  position: relative;
  text-align: center;
  padding: 120px 80px;
  background-color: white;
  overflow: hidden;
}

.team-title {
  font-size: 2.5rem;
  color: #0a46c2;
  margin-bottom: 40px;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.team-card {
  width: 300px;
}

.team-bg {
  position: relative;
}

.card-bg {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.team-info {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}

.team-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-info p {
  margin-top: 4px;
}

.team-photo {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
}

.btn-view {
  margin-top: 55px;
  background-color: #0a46c2;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

/* Background rectangles effect (if team used) */
.team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  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 200 200'><rect x='5' y='5' width='35' height='15' fill='%230A46C2' opacity='0.9' rx='5' ry='5'/><rect x='45' y='5' width='35' height='15' fill='%2305C6C6' opacity='0.8' rx='5' ry='5'/><rect x='85' y='5' width='35' height='15' fill='%230A85E6' opacity='0.9' rx='5' ry='5'/><rect x='125' y='5' width='35' height='15' fill='%232EA9E0' opacity='0.85' rx='5' ry='5'/><rect x='15' y='25' width='35' height='15' fill='%232474D9' opacity='0.8' rx='5' ry='5'/><rect x='55' y='25' width='35' height='15' fill='%230A46C2' opacity='0.8' rx='5' ry='5'/><rect x='95' y='25' width='35' height='15' fill='%2305C6C6' opacity='0.9' rx='5' ry='5'/><rect x='135' y='25' width='35' height='15' fill='%230A85E6' opacity='0.9' rx='5' ry='5'/><rect x='25' y='45' width='35' height='15' fill='%232EA9E0' opacity='0.85' rx='5' ry='5'/><rect x='65' y='45' width='35' height='15' fill='%232474D9' opacity='0.8' rx='5' ry='5'/><rect x='105' y='45' width='35' height='15' fill='%230A46C2' opacity='0.9' rx='5' ry='5'/><rect x='145' y='45' width='35' height='15' fill='%2305C6C6' opacity='0.85' rx='5' ry='5'/></svg>");
  background-repeat: repeat;
  background-size: 140px 140px;
  background-position: top center;
  z-index: 0;
}

.team * {
  position: relative;
  z-index: 1;
}

/* =========================
   FOOTER - 3 COLUMN LAYOUT
========================= */


/* Grid layout = perfect spacing control */
.footer {
  background: #0f2e6d;
  color: white;
  padding: 0px 6%;
  position: relative;
}

/* Main container */
.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr 200px; 
  /* 👆 You can manually change these numbers */
  align-items: center;
}

/* LEFT COLUMN (logo) */
.footer-logo {
  width: 300px;  /* Change this freely */
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* CENTER */
.footer-center {
  text-align: center;
}

/* RIGHT */
.footer-social {
  text-align: right;
}

/* LEFT LOGO */
.footer-logo img {
  max-width: 500px;
  height: auto;
  display: block;
}

/* CENTER BLOCK */
.footer-center {
  
  max-width: 520px;  /* keeps center block compact like your sketch */
  
}

.footer-center p {
  margin: 0;
  font-size: 1rem;
}

.footer-links {
  margin-top: 8px;
  font-size: 1rem;
}

.footer-links a,
.footer-contact a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact {
  margin-top: 10px;
}

/* RIGHT FOLLOW US */
.footer-social {
  text-align: right;
  justify-self: end;
}

.follow-title {
  margin: 0 11px 5px 0;
  font-weight: 400;
}

.footer-icons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.social-icon {
  color: white;
  font-size: 30px;
  transition: 0.25s ease;
}

.social-icon:hover {
  color: #cbd5ff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
    text-align: center;
  }

  .footer-social {
    text-align: center;
    justify-self: center;
  }

  .footer-icons {
    justify-content: center;
  }
}

/* =============== MOBILE NAVBAR =============== */

/* Hide hamburger on desktop by default; show in media query */
.hamburger {
  display: none;
}

/* =============== HAMBURGER (DESKTOP DEFAULT) =============== */
.hamburger {
  display: none;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  height: 4px;
  background: #0a46c2;
  border-radius: 3px;
}


/* Slide-in menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 12px rgba(0,0,0,0.2);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  padding: 80px 25px;
  gap: 25px;
  transition: right 0.3s ease;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a46c2;
  text-decoration: none;
}

/* Dark overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 9000;
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay.active {
  display: block;
}

/* =============== COOKIE POPUP =============== */
#cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 340px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  font-family: Poppins, sans-serif;
  display: none;
}

#cookie-popup h2 {
  margin-top: 0;
  color: #0a46c2;
  font-weight: 700;
  font-size: 1.3rem;
}

#cookie-popup p {
  margin-top: 5px;
  margin-bottom: 15px;
}

.cookie-option {
  margin-bottom: 12px;
}

.cookie-option label {
  font-weight: 600;
}

.cookie-option .desc {
  font-size: 0.8rem;
  color: #555;
  margin: 3px 0 0;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

#cookie-popup button {
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

#accept-all {
  background: #0a46c2;
  color: white;
}

#decline-all {
  background: #e4e4e4;
}

#save-cookie-settings {
  background: #05c6c6;
  color: white;
}

/* Close (X) button */
#cookie-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #444;
}

#cookie-close:hover {
  color: #000;
}

/* ============================================= */
/*                 MOBILE FIXES                  */
/* ============================================= */
@media (max-width: 900px) {

  header {
    padding: 15px 20px;
  }

  .logo img {
    height: 55px;
  }

    nav.desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }


  /* HERO */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 130px 20px 60px;
  }

  .hero::before {
    width: 100%;
    background-size: cover;
  }

  .hero::after {
    display: none;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left {
  justify-content: center;
  align-items: center;
  text-align: center;
}


  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-video video {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
  }

  /* PROMO HERO */
  .promo-hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 130px 20px 60px;
  }

  .promo-hero::before {
    width: 100%;
    background-size: cover;
  }

  .promo-hero::after {
    display: none;
  }

  .promo-hero .hero-left,
  .promo-hero .hero-right {
    width: 100%;
  }

  .promo-hero .hero-left {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .promo-hero .hero-content {
    max-width: 100%;
  }

  .promo-hero h1 {
    font-size: 2.2rem;
  }

  .promo-hero p {
    font-size: 1rem;
  }

  .promo-image-box {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
  }

  /* MISSION */
  .mission {
    padding: 60px 20px;
  }

  .mission-container {
    flex-direction: column;
    text-align: center;
    padding: 0;
    gap: 30px;
  }
  
  .mission-right {
    text-align: center;
  }

  .mission-buttons {
    justify-content: center;
  }


  .mission-left,
  .mission-right {
    width: 100%;
  }

  .mission-left dotlottie-wc {
    width: 260px !important;
    height: 260px !important;
  }

  /* WHO WE ARE */
  .who-we-are {
    padding: 60px 20px;
  }

  .who-container {
    flex-direction: column;
    gap: 30px;
  }

  .who-left,
  .who-right {
    width: 100%;
    min-height: 260px;
  }
  

  .who-card h2 {
    font-size: 2rem;
  }

  /* REAL ADVISORS */
  .real-advisors {
    padding: 60px 20px 30px;
  }

  .real-container h2 {
    font-size: 2rem;
  }

  .real-container p {
    font-size: 1rem;
  }

  /* TEAM (if used later) */
  .team {
    padding: 80px 20px;
  }

  .team-container {
    flex-direction: column;
    gap: 25px;
  }

  .team-card {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  /* COOKIE POPUP size adjust */
  #cookie-popup {
    width: 90%;
    right: 5%;
  }
}
