

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: 'poppins','sens-serif' ;
    background-color: #f8deeb;
}

img{
    width:100%;
    object-fit: cover;
}

.nav-link{
    font-weight: 600;
    color:#ee7fb5;
    border-bottom: 3px solid transparent;
    transition: color 0.4s ease, border-bottom 0.4s ease;
    
}

.nav-link:hover{
    font-weight: 600;
    color:#ee7fb5;
    border-bottom: 3px solid #ee7fb5;
}


/* .dropdown-item{
    color:#f177b2;
    font-weight: 600;
    transition: color 0.4s ease, border-bottom 0.4s ease;


}

.dropdown-item:hover{
    background-color: rgba(250, 87, 166, 0.1);
    color:#ee7fb5;
    border-bottom: 3px solid #ee7fb5;

} */
.navbar-toggler :focus{
    box-shadow: none;
}



#menu-icon{
    font-size: 1.8rem;
    border: none;
   
}
#navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
   
  }
  

  

/* @media (min-width:992px){
    .dropdown>.dropdown-menu{
        visibility: hidden;
        opacity: 0;
        top: 100%;
        display: block;
        transition: all 0.1s ease-out;
    }
    .dropdown:hover>.dropdown-menu{
        padding: 20px 0px;
        display: block;
        visibility: visible;
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }

} */

/* cv.php */

.cv-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #fff0fd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

.cv-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #004080;
}

.cv-section {
    margin-bottom: 25px;
}

.cv-section h3 {
    color: #eb51ab;
    border-bottom: 1px solid #fcbee0;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.cv-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.cv-section p {
    margin: 0;
}

.profile-img {
    display: block;
    margin: 0 auto 20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f7c5e0;
}
/* --------------appointment.php------------------ */
.book {
    color: #f7f2f4;
    background-color: #f38ebf;
    font-size: medium;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book:hover {
    background-color: #f5b5cf;
    color: rgb(250, 247, 247);
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 128, 186, 0.3);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  h2 {
    color: #123456;
    margin-top: 40px;
    margin-bottom: 20px;
  }
.list-group-item a{
    color: #eb51ab;
    text-decoration: none;

}
  .headtext{
    color: #eb51ab;

  }

  /* service.php */

  .card i {
    transition: transform 0.3s ease;
  }
  .card:hover i {
    transform: scale(1.2);
  }
  .card h5 {
    font-weight: 600;
  }
