* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f7fa !important;
  /*background: linear-gradient(120deg, #1f3b73, #00a896);*/
 /* background: lightgray;
  color: #333;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;*/
}
.create_profile_container{
  margin-top: 35px;
}

.container-fluid {
  display: grid;
  grid-template-columns: 350px 0.9fr 380px;
  gap: 25px;
  width: 100%;
  padding: 0px 45px;
  padding-left: 40px !important;
  /*max-width: 1300px;*/
}

/* --- CARD COMMON STYLE --- */
.profile-card{
  background: #fff;
  border-radius: 14px 14px 0px 0px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 20px 0px 0px 0px;
  transition: all 0.3s ease;
}
.section{
  background: #fff;
  border-radius: 14px 14px 0px 0px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 20px 0px 40px 0px;
  transition: all 0.3s ease;
}
.faq {
  background: #fff;
  border-radius: 14px 14px 0px 0px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 20px 0px 40px 0px;
  transition: all 0.3s ease;
}
.activity-box {
  background: #fff;
  /*border-radius: 14px 14px 0px 0px;*/
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  /*padding: 10px 0px 10px 0px;*/
  transition: all 0.3s ease;
}
.activity-box > .inbox > a{
  display: block;
}
.activity-box > .active > a{
  display: block;
}
.inbox > a:hover{
  color: black;
}
.active > a:hover{
  color: black;
}
.profile-card:hover,
.faq:hover,
.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* --- PROFILE CARD --- */
.profile-card {
  text-align: center;
  background: linear-gradient(160deg, #ffffff, #f6f9ff);
}

.profile-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #201f2f;
}

.profile-card h2 {
  font-size: 17px;
  /*margin: 8px 0 4px;*/
  /*color: #1f3b73;*/
  color: #201f2f;
  font-weight: 500;
}

.profile-card p {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 2px !important;
}

.profile-status {
  background: #201f2f;
  color: #fff;
  font-weight: 500;
  /* padding: 8px 0; */
  /* border-radius: 8px; */
  line-height: 26px;
  margin-top: 40px;
  letter-spacing: 0.3px;
  font-size: 12px;
}

/* --- MIDDLE CONTENT --- */
.intro {
  background: rgba(255, 255, 255, 0.9);
  border-left: 5px solid #201f2f;
  border-radius: 10px;
  padding: 25px 20px;
  font-size: 15px;
  color: #333;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

.intro strong {
  font-size: 16px;
  color: #0064ff;
}

.journey {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main_journey_container h3 {
  font-size: 20px;
  color: #0064ff;
  margin-bottom: 25px;
}

.journey-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.journey-btn {
  background: #201f2f;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  margin-top: 5%;
}

.journey-btn a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.journey-btn:hover {
  background: #201f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- RIGHT FAQ --- */
.faq {
  text-align: center;
  background: linear-gradient(160deg, #ffffff, #f6f9ff);
}

.faq h3 {
  font-size: 18px;
  color: #1f3b73;
  margin-bottom: 10px;
}

.faq p {
  font-size: 14px;
  color: #555;
}

/* --- ACTIVITY BOX --- */
.activity-box {
  margin-top: 25px;
}

.activity-box .active,
.activity-box .inbox {
  /*background: #0064ff;*/
  color: black;
  /* padding: 10px; */
  /* border-radius: 6px; */
  margin-bottom: 3px;
  font-weight: 500;
  text-align: center;
  line-height: 40px;
  font-size: 13px;
  text-align: left;
  padding-left: 21px;
  border-bottom: 1px solid #dee2e6;
}

.activity-box .inbox {
  /*background: #201f2f;*/
  text-align: left;
  padding-left: 21px;
  color: black;
}

.each_journey {
  background: #f4f7fa;
  border: 1px solid #e0e6f1;
  border-radius: 12px;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease;
  height: 90px;
}

.each_journey:hover {
  background: #eef4ff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.each_journey > p {
  font-size: 14px;
  color: #1a1a1a;
  margin-top: -11px;
  font-weight: 500;
  margin: 0;
  flex: 1;
  text-align: left;
  padding-right: 15px;
}

/*.my_profiles_content_box_container{

}
.my_profiles_content_box{
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  background: white;
}
.my_profile_title{
  border-bottom: 1px solid lightgray;
  box-shadow: 0 1px 3px 0 #bfbfbf;
  color: black;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  padding-left: 30px;
}
.my_profile_detail_box_container{
  padding: 30px;
}
.my_profile_first_line{
  display: flex;
  line-height: 20px;
}
.stats-section {
  display: flex;
  justify-content: space-between;
  padding: 17px 11px;
  margin-top: 25px;
  background: #000;
  color: #fff;
  text-align: center;
}
.user_active_status{
  font-size: 17px;
  font-weight: 500;
  color: #333;
}
.user_active_status > i{
  font-size: 20px;
  vertical-align: middle;
  color: #333;
  margin-right: 3px;
}
.user_name{
  font-size: 17px;
  font-weight: 600;
  color: black;
}
.rating{
  font-size: 14px;
  background: #ffefc1;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: auto;
}
.user_profile_type{
  color: #333;
  font-size: 13px;
}
.user_profile_type > i{
  font-size: 15px;
  vertical-align: middle;
  color: #333;
  margin-right: 3px;
}
.user_profile_date{
  font-size: 13px;
  font-weight: 400;
  color: dimgray;
  margin-left: 3%;
}
.user_profile_date > i{
  font-size: 15px;
  vertical-align: middle;
  color: #333;
  margin-right: 3px;
}
.big_title{
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 20px;
}
.upgrade_box_container{
  margin-top: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 20px;
  background: #fffdf0;
  border: 2px solid #f7ecb0 !important;
  margin-bottom: 20px;
}
.upgrade_title{
  font-size: 15px;
  font-weight: 600;
}
.upgrade_details > span{
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.upgrade_details > span > i{
  font-size: 15px;
  margin-right: 3px;
  vertical-align: middle;
  font-weight: 500;
  color: #333;
}
.upgrade_btn{
  background: #f4c91a;
  border: 1px solid #f4c91a;
  margin-left: auto;
  padding: 7px 15px;
  font-size: 13px;
  text-align: center;
  height: 35px;
}
.profile_btn_container{
  margin-left: 8%;
  margin-top: 3%;
  margin-bottom: 2%;
}
.profile_btn{

}
.profile_btn > a{
  border-radius: 5px;
  border: 1px solid #e7e8e9;
  background: #f4f7fa;
  font-size: 13px;
  font-weight: 400;
  padding: 5px 16px;
  margin-left: 11px;
}
.profile_btn > a > i{
  font-size: 15px;
  margin-left: 3px;
  vertical-align: middle;
}*/




/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
  }
}


/*create profile dashboard1*/
.each_kpi_box{
  background: white;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 13px 11px;
  border-radius: 8px;
  width: 100%;
  margin-left: 20px;
}
.kpi_value{
  font-size: 20px;
  font-weight: 600;
}
.kpi_name{
  font-size: 14px;
  font-weight: 500;
}
.first_box_container{
  background: white;
}
.second_box_container{
  background: white;
}



/*create profile dashboard2 css*/
.edit_option{
  padding-left: 35%;
  cursor: pointer;
  color: #6a6a6b;
}
.edit_option > i{
  padding-left: 3px;
}
.sub-activity{
  cursor: pointer;
}
.active_class{
  background: #f4f7fa;
}