:root {
    --gold: #ffae00;
    --transparent-background: #f5f4fd;
    --maroon: #800000;
    --padding: 15px;
  }
.none-link{
  text-decoration: none;
}
  #parent-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 250px;
  }

  #profile-banner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
  }

  #profile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #profile-pic {
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 2;
  }

  #profile-pic img {
    border-radius: 50%;
    height: 120px;
    width: 120px;
    border: 5px solid #fff;
  }

  #profile-description {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
    padding: var(--padding);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .profile-name {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0;
  }

  .profile-rating {
    color: var(--gold);
    margin: 5px 0;
    font-size: 20px;
  }

  .profile-catagory {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 5px 0;
  }

  .profile-specification {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin: 10px 0;
  }

  .profile-appointment {
    border: none;
    border-radius: 25px;
    background-color: var(--maroon);
    height: 40px;
    width: 120px;
    margin: var(--padding);
    color: var(--gold);
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
  }

  .profile-appointment:hover {
    color: #ddd;
    background-color: #010718;
  }

  @media (min-width: 768px) {
    #profile-pic img {
      height: 180px;
      width: 180px;
    }

    #parent-profile {
      height: 480px;
    }
  }

  @media (max-width: 767px) {
    #parent-profile {
      height: 400px;
    }

    #profile-banner {
      height: 40%;
    }

    #profile-description {
      height: 60%;
    }
  }
  /* Code for Cards */
  
  .info-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.card-title {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.btn-primary {
    background-color: #3498db;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #2980b9;
}
#reviewsCarousel .carousel-item {
    min-height: 200px;
}
@media (max-width: 768px) {
    .profile-header {
        height: 40vh;
    }
    .profile-picture {
        width: 100px;
        height: 100px;
    }
    .profile-info h1 {
        font-size: 1.5rem;
    }
}
.social{
  color: var(--maroon);
  font-size: 24px; margin: var(--padding);
  
}
.rupee{
  height: 50px;
  width: 50px;
}
.keywords{
  font-size: medium;
}
.departments{
  height: 80px;
  width: auto;
}