 body {
      margin: 0;
      padding: 0;
      /* min-height: 100vh; */
      background: radial-gradient(circle at 0% 60%, #fff 10%, #fff 80%);
      /* color: #e5e5e5; */
      font-family: 'Segoe UI', Arial, sans-serif;
    }
  .navbar {
    background: transparent !important;
  }
  .btn-outline-warning {
    border:#ffffff
  }
  
  .nav-typograph {
    color: #000;
    font-size: 14px;
    margin-right: 10px;
  }
  .brand-logo {
    /* width: 40px; */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-left:80px;
    color: #ffcb3c;
  }

  .footer-logo{
    /* height: 40px; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcb3c;

  }
  /* Show dropdown menu on hover */
  .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0; /* removes default gap */
  }

  /* Optional: keep dropdown menu visible while hovering over the menu */
  .dropdown-menu:hover {
    display: block;
  }
  .dropdown-item{
    padding: 10px;
    background: #000;
  }
  .dropdown-item-list{
    background: #fff;
    font-size: 14px;
    padding-bottom: 10px;
    margin-right: 5px;
    margin-bottom: 2px;
  }
  .hero-section {
    /* min-height: 80vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .hero-title {
    font-size: 4rem;
    color: #000;
    font-weight: 400;
    word-spacing: 10px;
  }
  .hero-desc {
    color: #000;
    max-width: 750px;
    margin-top: 15px;
    font-size: 1.1rem;
  }
  .btn-glow {
    background: white;
    color: #000fff;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 1.1rem;
  }
  .btn-glow:hover {
    background: #fff;
    color: #000;
  }

  .join-community{
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    padding-left: 7px;
    padding-right: 7px;
    margin-top: 10px;
  }

  /* Animated floating icons/glow elements */
  .floating-graph, .floating-bars, .floating-target {
    position: absolute;
    z-index: 2;
    opacity: 0.93;
    /* animation: float 6s ease-in-out infinite; */
  }
  .floating-graph {
    top: 48px;
    left: 22vw;
    font-size: 1.6em;
    color: #ffcb3c;
    /* animation-delay: 0.5s; */
  }
  .floating-bars {
    bottom: 14vh;
    left: 10vw;
    font-size: 2em;
    color: #ffcb3c;
    animation-delay: 1.2s;
  }
  .btn-border-anim {
  --border-angle: 0deg;
  position: relative;
  display: inline-block;
  border-radius: 24px; /* rounded corners, change as needed */
  padding: 4px; /* thickness of the animated border */
  background: conic-gradient(
    from 0deg,
    #ffd700 var(--border-angle),
    transparent 0deg 360deg
  );
  animation: rotateBorder 3s linear infinite;
  cursor: pointer;
  /* to keep content area background */
}

/* Pause animation on hover (optional) */
.btn-border-anim:hover {
  animation-play-state: paused;
}

@keyframes rotateBorder {
  to {
    --border-angle: 360deg;
  }
}
  .floating-target {
    bottom: 12vh;
    right: 12vw;
    font-size: 2.1em;
    color: #ffcb3c;
    animation-delay: 2s;
  }
  @keyframes float {
    0%,100% { transform: translateY(0);}
    50% { transform: translateY(-16px);}
  }
  /* Glow spots in the corners */
  .glow-corner {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at 60% 60%, #ffcb3c88 0%, #ffcb3c22 90%, transparent 100%);
    opacity: 0.4;
    mix-blend-mode: lighten;
  }
  .glow-topleft { top: -80px; left: -60px; }
  .glow-bottomright { bottom: -80px; right: -60px; }
  @media (max-width: 768px) {
    .hero-title { font-size: 2rem;}
    .hero-desc { font-size: 1rem;}
  }


  /* body {
    background: #111;
    color: #000;
    font-family: 'Segoe UI', Arial, sans-serif;
} */

.nav-location{
    align-items:baseline;
}
.section-title {
    margin-top: 36px;
    text-align: center;
    color: #000;
}
.section-desc {
    text-align: center;
    color: #000;
    max-width: 1150px;
    margin: 8px auto 32px auto;
    font-size: 1.1rem;
}
.influencer-list {
    max-width: 850px;
    margin: 0 auto 32px auto;
    color: #000;
}
.influencer-item {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 24px 34px;
    display: flex;
    align-items: center;
}
.influencer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 24px;
    border: 2px solid #222;
    background: #222;
}
.influencer-details {
    flex: 1;
}
.influencer-name {
    font-size: 1.15rem;
    font-weight: 500;
    color: #000;
}
.influencer-socials {
    display: flex;
    gap: 30px;
    margin-top: 6px;
    font-size: 0.98rem;
    color: #000;
}
.influencer-socials span {
    margin-right: 8px;
    font-weight: bold;
    color: #000;
}


  .profile-row {
    /* display: flex; */
    align-items: end;
    margin-bottom: 20px;
    padding-bottom: 16px;
    padding-top: 16px;
    width: 100%;
}
.profile-row img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    /* margin-right: 20px; */
    /* object-fit: cover; */
}
.userData{
  display: flex;
  width: 100%;
  align-items: center;
  /* margin-bottom: 20px; */
  border-bottom: 1px solid #aaa;
  padding-bottom: 16px;
  padding-top: 16px;
  justify-content: space-between;
}
.profile-info {
    flex-grow: 1;
}
.profile-name {
    font-weight: 600;
    font-size: 1.25rem;
    color: #000;
    margin-left: 60px;

}
.socials {
    display: flex;
    /* gap: 30px; */
    /* margin-top: 40px; */
    font-size: 0.93rem;
}
.socials div {
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn-report {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 500;
}
.btn-report:hover {
    background-color: #444;
    color: #000;
}


 .container {

display: flex;
flex-direction: column;       /* Stack vertically */
align-items: center;          /* Center horizontally */
justify-content: center;      /* Center vertically */
color: #000;
}

.box {
width: 100%;
color: black;
display: flex;
align-items: center;
justify-content: center;
font-family: sans-serif;
}

.pictureBox{
  display: flex;
  /* justify-content: space-evenly; */
  align-items: center;
}


.btn-report {
    background: #222;
    color: #000;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-report:hover {
    background: #2a2a2a;
}
@media (max-width: 576px) {
    .influencer-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 12px;
    }
    .influencer-avatar {
        margin-bottom: 16px;
        margin-right: 0;
    }
    .influencer-socials {
        flex-direction: column;
        gap: 8px;
    }
}

.discover{
 color: #000;
 font-weight: bold;
}
.category-btn {
    background-color: #3a3a3a;
    color: #fff;
    border-radius: 22px;
    border: none;
    margin: 8px 6px;
    padding: 8px 28px;
    font-size: 0.8rem;
    padding-left: 30px;
    padding-right: 30px;
    transition: background 0.2s;
}
.category-btn:hover {
    background-color: #ffe066;
    color: #212529;
}
.circle-img {
    border-radius: 50%;
    border: 4px solid #fff;
    width: 120px;
    height: 120px;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.bubble-group {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bubble-left {
    top: 40%;
    left: 2%;
    transform: translateY(-40%);
}
.bubble-right {
    top: 38%;
    right: 2%;
    transform: translateY(-38%);
}
.center-section {
    position: relative;
    /* min-height: 60vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
    padding: 70px;
    background: #fcf8ef;
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 30px;
    border: 1px solid #d4d4d4;
}
.headline {
    font-size: 2.9rem;
    font-weight: bold;
    color: #000;
}
.talk-btn {
    margin-top: 26px;
    background: #3a3a3a;
    color: #fff;
    padding: 14px 36px;
    font-size: 0.9rem;
    border-radius: 25px;
    border: none;
    transition: background 0.2s, color 0.2s;
    font-weight: 600;
    letter-spacing: 0.5px;
    width:250px;
    
}
.talk-btn:hover {
    background: #ffe066;
    color: #222;
}
@media (max-width: 768px) {
    .bubble-group { display: none; }
}

.footer-logo-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: 30px;
    background: rgba(40, 40, 40, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .footer-logo-inner {
    width: 120px;
    height: 120px;
    background: rgba(60,60,60,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }
  .footer-container {
    position: relative;
    background: transparent;

    z-index: 2;
    overflow: hidden;
    /* background-color: #000; */

  }
  .footer-logo-text {
    font-size: 1.8rem;
    letter-spacing: 10px;
    font-weight: 600;
    color: #000;
    margin-left: 10px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
  }
  .footer-section-title {
    color: #000;
    font-weight: bold;
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
  .footer-link, .footer-link:visited {
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    font-size: 0.97rem;
    transition: color .2s;
  }
  .footer-link:hover {
    color: #000;
    text-decoration: underline;
  }
  .social-icons i {
    font-size: 1.6rem;
    margin-right: 16px;
    color: #000;
    transition: color .2s;
  }
  .social-icons i:hover {
    color: #b5871e;
  }
  .footer-bottom {
    border-top: 1px solid #3a3a3a;
    text-align: center;
    font-size: 0.80rem;
    color: #000;
    margin-top: 30px;
    padding-top: 16px;
  }
  .scroll-top-btn {
    position: absolute;
    right: 152px;
    top: 130px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ececec33;
    background: #222;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
  }
  .scroll-top-btn:hover {
    background: #b5871e;
    color: #222;
  }
  @media (max-width: 900px) {
    .footer-logo-circle {
      display: none;
    }
    .footer-logo-text {
      margin-left: 0;
    }
  }

  .footer-logo{
    display: flex;
    align-items: center;
  }