
/* main color */
.pc-pirmary-bg{
    background-color: #dc37eb;
}
.pc-pirmary{
    color: #dc37eb;
}
.pc-secondary{
    color: #3975ed;
}
.pc-secondary-bg{
    background-color: #3975ed;
}
/* end main color */

.top_icon_f{
    padding: 5px;
    background-color: #031a48;
    border-radius: 50px;
    color: white;
}
.top_icon_f_h:hover{
  border: 2px solid red;
}
.top_icon_f_f{
    padding: 5px;
    background-color: #0948c8;
    border-radius: 50px;
    color: white;
}
.top_icon_t{
    padding: 5px;
    margin-left: 5px;
    background-color: #1DA1F2;
    border-radius: 50px;
    color: white;
}
.top_icon_Y{
    padding: 5px;
    margin-left: 5px;
    background-color: #CD201F;
    border-radius: 50px;
    color: white;
}
.top_icon_I{
    padding: 5px;
    margin-left: 5px;
    background-color: #E1306C;
    border-radius: 50px;
    color: white;
}
.top_icon_tt{
    padding: 5px;
    margin-left: 5px;
    background-color: #000000;
    border-radius: 50px;
    color: white;
}

.nav_btn{
    background-color: #dc37eb;
    padding: 10px;
    color: aliceblue;
    font-weight: bolder;
    border: none;
    border-radius: 8px;
    text-decoration: none;
}
.nav_btn:hover{
    background-color: #031a48;
}

.step-bg{
    background-image: url('img/bg_3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* width: 500px; */
    margin-top: 30px;
}
.main_line{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pc_line{
    border-bottom: #031a48 2px solid;
    text-align: center;
    width: 200px;
}
.main_line_2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pc_line_2{
    border-bottom: #dc37eb 2px solid;
    text-align: center;
    width: 200px;
}
.main_line_2_f{
    display: flex;
    justify-content: left;
    align-items: start;
}
.pc_line_2_f{
    border-bottom: #dc37eb 2px solid;
    text-align: center;
    width: 200px;
}
.pc_ivf{
    background-image: url('img/consultation.webp');
    background-size: cover;
    height: 300px;
    border-radius: 10px;
    transform-origin: 50% 65%;
    transition: transform 1s, filter 1s ease-in-out;
    filter: brightness(75%);
}
.pc_ivf:hover{
    filter: brightness(100%);
  transform: scale(1.1);
  overflow: hidden;
}
.pc_ivf_2:hover{
    filter: brightness(100%);
  transform: scale(1.1);
  overflow: hidden;
}
.pc_ivf_3:hover{
    filter: brightness(100%);
  transform: scale(1.1);
  overflow: hidden;
}
.pc_ivf_2{
    background-image: url('img/step2.webp');
    background-size: cover;
    height: 300px;
    border-radius: 10px;
    transform-origin: 50% 65%;
    transition: transform 1s, filter 1s ease-in-out;
    filter: brightness(75%);
}
.pc_ivf_3{
    background-image: url('img/what-to-expect.webp');
    background-size: cover;
    height: 300px;
    border-radius: 10px;
    transform-origin: 50% 65%;
    transition: transform 1s, filter 1s ease-in-out;
    filter: brightness(75%);
}

.pc_sm_card{
    margin-top: 20px;
    border-left: #dc37eb solid 5px;
    background-color: white;
    text-align: left;
    color: black;
    border-radius: 10px;
}
.pc_sm_card:hover{
    background-color: #b4c8f1;
    border-left: #db0bed solid 5px;
    color: white;
}

.pc_icon_c{
    /* background-color: #3975ed;
    padding: 30px 25px 20px 25px;
    border-radius: 70px;
    color: #db0bed;
    border: 3px solid white; */
    color: #db0bed;
}
.pc_h:hover{
    border: 6px double #b4c8f1;
    padding: 10px;
    box-shadow: 5px 5px 10px ;
}

.card-img-top{
    transition: transform 1s, filter 1s ease-in-out;
    filter: brightness(75%);
    display: block;
    object-fit: cover;

}
.card-img-top:hover{
    filter: brightness(100%);
    transform: scale(1.1);
}

/* profile card start */

.our-team {
    padding: 30px 0 40px;
    margin-bottom: 30px;
    background-color: #f7f5ec;
    text-align: center;
    overflow: hidden;
    position: relative;
  }

  .our-team .picture {
    display: inline-block;
    height: 130px;
    width: 130px;
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
  }

  .our-team .picture::before {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 50%;
    background-color: #1369ce;
    position: absolute;
    bottom: 135%;
    right: 0;
    left: 0;
    opacity: 0.9;
    transform: scale(3);
    transition: all 0.3s linear 0s;
  }

  .our-team:hover .picture::before {
    height: 100%;
  }

  .our-team .picture::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #1369ce;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .our-team .picture img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.9s ease 0s;
  }

  .our-team:hover .picture img {
    box-shadow: 0 0 0 14px #f7f5ec;
    transform: scale(0.7);
  }

  .our-team .title {
    display: block;
    font-size: 15px;
    color: #4e5052;
    text-transform: capitalize;
  }

  .our-team .social {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #db0bed;
    position: absolute;
    bottom: -100px;
    left: 0;
    transition: all 0.5s ease 0s;
  }

  .our-team:hover .social {
    bottom: 0;
  }

  .our-team .social li {
    display: inline-block;
  }

  .our-team .social li a {
    display: block;
    padding: 10px;
    font-size: 17px;
    color: white;
    transition: all 0.3s ease 0s;
    text-decoration: none;
  }

  .our-team .social li a:hover {
    color: #dc37eb;
    background-color: #f7f5ec;
  }


/* profile card end */
.last_bg{
    background-image: url(' img/last_bg.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
.fh:hover{
    color: #db0bed;
}
.fh{
    text-decoration: none;
    color: white;
}
.fl{
    padding-right: 20px;
    padding-top: 10px;
}

.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:9px;
}
.float_ph{
	position:fixed;
	width:50px;
	height:50px;
	bottom:40px;
	left:100px;
	background-color: orange;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float_Ph{
	margin-top:9px;
}
.text_j{
  text-align: justify;
}

.acc-h:hover{
  background-color: #efa2f6!important;
  border-left: 2px solid red;
}

p{
  font-size: 14px;
}


.about-section {
    background: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #031a48;
    font-weight: bold;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    align-items: center;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    padding: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #dc37eb;
    font-weight: bold;
}

.about-content p,
.about-content ul {
    font-size: 16px;
    color: #444;
}

.about-content ul {
    padding-left: 20px;
    list-style: disc;
}

/* Responsive */
@media (max-width: 768px) {
    .about-row,
    .about-row.reverse {
        flex-direction: column;
    }
}
.about-list{
    list-style: none!important;
}
