body {
  font-family: Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  
}

.card {
  margin-bottom: 20px;
}

.register-btn {
  background-color: #3D8627;
  padding: 0rem 2rem;
  color: white;
  border-radius: 0.5rem;
}

/* Index.html style */

.hero-section {
  background-image: url('../assets/images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  height: 120vh;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
  justify-content: space-evenly;
  

}
.display-4{
  color: white;
  font-weight: 700;
  line-height: 58px;
  font-size: 48px;
  background-color: #2125298a;
  
}

.btc-img-section{
  width: 50%;
}
.btc-img{
  width: 50%;
  opacity: 80%;
}

.video-container {
  position: relative;
  width: 660px;
  height: 315px;
  cursor: pointer;
  background-color: black;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 25px;
  border-radius: 100%;
  pointer-events: none;
}

.youtube-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;

}

.ytb-link{
  width: 50%;
}

.lead{
  background-color: #212529b5;
  padding: 10px;
  border-radius: 1rem;
}
.investment-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  background: #212529;
}

.investment-image {
  position: relative;
  height: 380px;
}

.investment-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  text-align: center;
}

.investment-image:hover .investment-overlay {
  opacity: 1;
}

.investment-overlay h2, 
.investment-overlay h3 {
  margin: 5px 0;
  font-size: 24px;
  font-weight: bold;
}

.investment-overlay p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.investment-body{
  background: #212529;
  color: #fff;
}

.fund_method{
  font-size: 12px;
  border-radius: 5px;
  height: 30px;
  font-weight: 600;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* From Uiverse.io by vinodjangid07 */ 
.bookmarkBtn {
  width: 100px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.349);
  background-color: rgb(12, 12, 12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}

.IconContainer {
  width: 30px;
  height: 30px;
  background: linear-gradient(to bottom, rgb(255, 136, 255), rgb(172, 70, 255));
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.3s;
  color: #fff;
}

.icon {
  border-radius: 1px;
  color: white;
}

.text {
  height: 100%;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
  transition-duration: 0.3s;
  font-size: 1.04em;
}

.bookmarkBtn:hover .IconContainer {
  width: 90px;
  transition-duration: 0.3s;
}

.bookmarkBtn:hover .text {
  transform: translate(10px);
  width: 0;
  font-size: 0;
  transition-duration: 0.3s;
}

.bookmarkBtn:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}

/* Team Hero Section */
.team-hero-section {
    background-image: url('/static/assets/images/Team-Top-Bar2.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 30vh;
    width: 100%;
    position: relative;
    background-attachment: fixed;
}
.team-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
    z-index: 1;
}
.team-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Cardone Profile Section */
.cardone-profile {
    margin-top: -7%;
}

.profile-content {
    display: flex;
    width: 80%;
    justify-content: space-between;
    margin: 0 auto;
}

.cardone-profile img {
    max-width: 100%;
    height: auto;
}

.cardone-profile .p-4 {
    padding: 1rem;
}

/* Team Meet Section */
.team-meet {
    background-color: #F7F9FF;
}

.team-meet .container {
    padding: 1rem;
}

/* General Responsiveness */
.row > [class*="col-"] {
    margin-bottom: 2rem;
}

.row > [class*="col-"]:last-child {
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 767.98px) {
    .team-hero-section {
        height: 20vh;
        background-attachment: scroll;
    }

    .team-hero-section h1 {
        font-size: 1.75rem;
    }

    .team-hero-section .lead {
        font-size: 1rem;
    }

    .cardone-profile {
        margin-top: 0; /* Remove negative margin on mobile to prevent overlap */
    }

    .cardone-profile .profile-content {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .cardone-profile img {
        margin-bottom: 1rem;
    }

    .cardone-profile h1 {
        font-size: 1.5rem;
    }

    .team-meet h1,
    .container h2 {
        font-size: 1.75rem;
    }

    .col-12.col-sm-6.col-md-4 img {
        width: 60% !important;
    }

    .col-12.col-sm-6.col-md-4 h5 {
        font-size: 1.1rem;
    }

    .col-12.col-sm-6.col-md-4 .text-muted {
        font-size: 0.9rem;
    }

    .btn-outline-primary {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .team-hero-section {
        height: 25vh;
    }

    .cardone-profile .profile-content {
        width: 90%;
    }

    .col-12.col-sm-6.col-md-4 img {
        width: 70% !important;
    }

    .cardone-profile h1 {
        font-size: 2rem;
    }

    .team-meet h1,
    .container h2 {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .cardone-profile img {
        width: 100%;
    }

    .team-meet h1,
    .container h2 {
        font-size: 2.5rem;
    }
}

.ira-container{
  background-image: url(/static/assets/images/Overview-Hero5-resized.jpeg);
  background-size: cover;
  background-position: center;
  color: #fff;
}
