body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;

}

.container {
  /* max-width: 100%; */
  overflow-x: hidden;
}



/* start header section */

.top-header {
  background-color: #fff;
  padding: 5px 20px 0px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 55px !important;
  /* width: 200px !important; */
  margin-top: 10px;
}

.search-container {
  position: relative;
  flex: 1;
  max-width: 600px;
  margin: 0 18px;
}

.search-container input {
  width: 100%;
  border-radius: 30px;
  padding: 8px 20px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.search-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #f22f57;
  color: white;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  margin-right: -6px;
}

#closeMenu {
  display: none;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-buttons a {
  text-decoration: none;
}

.menu-btn,
.logout-btn,
.dashboard-btn {
  font-size: 13px;
  font-weight: 600;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.menu-btn {
  background-color: transparent;
  color: #f22f57;
}

/* .dashboard-btn {
  background-color: #000;
  color: #fff;
} */
.dashboard-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.dashboard-btn:hover {
  box-shadow: 0 0 15px 5px rgba(242, 47, 87, 0.6);
  transform: scale(1.03);
}


/* .logout-btn {
  background-color: #f22f57;
  color: #fff;
} */

.logout-btn {
  background-color: #f22f57;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.logout-btn:hover {
  box-shadow: 0 0 15px 5px rgba(242, 47, 87, 0.6);
  transform: scale(1.03);
}


.social-icon {
  display: flex;
  gap: 8px;
  margin-left: 30px;
}

.social-icon i {
  background-color: #f22f57;
  border-radius: 50%;
  padding: 10px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon i:hover {
  background-color: #000;
  color: #f22f57;
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.nav-menu {
  background-color: #fff;
  padding: 0px 15px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 3px;
}

.nav-menu a {
  text-decoration: none;
  color: black;
}

.nav-menu .dropdown-toggle {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  padding: 8px 10px;
  text-decoration: none;
}

.nav-menu .dropdown-toggle:hover,
.nav-menu a:hover {
  color: #f22f57;
}

.nav-menu .dropdown-menu {
  font-size: 13px;
}

.nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-menu a {
  font-size: 13px;
  margin-top: 4px;
  font-weight: 600;
}

@media (max-width: 1440px) {
  .search-container {
    max-width: 900px;
  }

  .search-container input {
    font-size: 0.93rem;
  }

  /*  */
  .logo img {
    height: 50px;
    /* width: 200px; */
  }


}


@media (max-width: 768px) {
  .top-header {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }


  #closeMenu {
    display: block;
  }

  .logo {
    flex: 0 0 auto;
    margin-right: 10px;
  }

  .logo img {
    height: 50px !important;
    width: 120px !important;
  }

  .search-container {
    flex: 1 1 auto;
    /* margin: 0 10px; */
    max-width: none;
  }

  .header-buttons {
    flex: 0 0 auto;
    gap: 6px;
  }

  .dashboard-btn,
  .logout-btn,
  .social-icon {
    display: none !important;
  }

  .nav-menu {
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    /* keep it flex for animation */
    width: 250px;
    height: 100%;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    /* hidden initially */
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 4px 0 6px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.show {
    transform: translateX(0);
    /* display: flex;
    left: 0; */

    /* slide in */
  }

  .nav-menu .dashboard-btn,
  .nav-menu .logout-btn,
  .nav-menu .social-icon {
    display: flex !important;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-menu .dashboard-btn,
  .nav-menu .logout-btn {
    width: 90%;
    max-width: 200px;
  }

  .nav-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
  }
}

@media (max-width: 576px) {
  .header-buttons .menu-btn span {
    display: none;
  }

  .logo img {
    height: 40px !important;
    width: 100px !important;
  }
}

/* end header section */
.hero {
  background: linear-gradient(90deg, #f44369, #f98ca5);
  color: white;
}

.search-box {
  background: white;
  padding: 3px;
  border-radius: 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.search-box::-webkit-scrollbar {
  display: none;
}

.search-box select,
.search-box input {
  border: none;
  outline: none;
  padding: 8px 12px;
  border-radius: 20px;
  min-width: 150px;
  flex: 1 1 auto;
}

.search-box button {
  background-color: #ec1c6e;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.tags button {
  background: white;
  color: #ec1c6e;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  display: inline-block;
  border: none;
  cursor: pointer;
  gap: 15px !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tags button:hover {
  box-shadow: 4px 0 6px rgba(0, 0, 0, 0.2);
  background-color: #ec1c6e;
  color: white;
  transform: scale(1.03);
}

.right-box {
  background: #d3d3d3;
  height: 370px;
  border-radius: 10px;
  width: 100%;
}

/* .right-box img {
  height: 370px;
  width: 100%;
} */

@media (min-width: 1440px) {
  .right-box {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .right-box {
    height: 250px;
    margin-top: 30px;
    display: none;
  }

  .right-box img {
    height: 250px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .search-box select {
    display: none;
  }
}

@media (max-width: 576px) {
  .tags button {
    font-size: 0.75rem;
  }
}

/* catgory */
.category-card {
  background-color: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  cursor: pointer;
  height: 100%;
  /* padding: 0.45rem; */
  transition: 0.2s ease;
}

/* .category-card:hover {
  transform: scale(1.03);
} */

.image-wrapper {
  width: 100%;
  aspect-ratio: 1/1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  transition: filter 0.3s ease;
}

.image-wrapper img:hover {
  filter: blur(2px);
}


.category-name {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  padding: 10px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-title {
  font-weight: bold;
  color: #f44369;
}

.view-more {
  font-size: 14px;
  color: black;
  text-decoration: none;
}

.view-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .category-name {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .category-name {
    font-size: 0.8rem;
    padding: 6px 4px;
  }
}


/* premium profile */
.profile-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  
  /* Smooth transition */
}

.profile-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); 
  transform: translateY(-10px); 
}

.profile-card {
  height: auto;
  overflow: hidden;
   transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); 
}


@media (max-width: 576px) {
  .profile-card img {
    height: auto !important;
    /* height: 180px; */
  }

  /* .profile-card {
    height: 200px;
    overflow: hidden;
  } */

  .profile-card .fw-semibold {
    font-size: 0.6rem !important;
  }
}

@media (max-width: 768px) {
  .profile-card .fw-semibold {
    font-size: 0.8rem;
  }

  .profile-card img {
    height: 200px;
  }

}

/* end premium profile */

.slidertheme .item {
  background-color: #fff;
  border-radius: 12px;
  padding: 8px;
  margin: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-card .fw-semibold {
  font-weight: 600;
  margin-top: 5px;
  /* text-wrap-mode: nowrap; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 576px) {
  .profile-card img {
    height: 140px;
  }
}

@media (min-width: 1440px) {
  .owl-carousel .item {
    padding: 16px;
    margin: 10px;
  }

  .profile-card .fw-semibold {
    font-size: 18px;
  }

  .profile-card img {
    height: 180px;
  }
}

/* recent opening */

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
}

.card-item img {
  /* height: auto !important; */
  height: 100px;
  width: 120px;
  object-fit: contain;
}

.card-title {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.card-subtitle {
  font-size: 0.8rem;
}

.btn {
  font-size: 0.75rem;
  padding: 4px 10px;
  width: auto;
  text-align: center;
}

.badge {
  font-size: 0.65rem;
}

.card-text-area {
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.card {
  padding: 6px;
}

.row.g-1 {
  --bs-gutter-x: 0.25rem;
  --bs-gutter-y: 0.25rem;
}

@media (min-width: 1400px) {
  .card-item img {
    width: 110px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-subtitle {
    font-size: 0.85rem;
  }
}

/* Adjustments for smaller screen sizes */
@media (max-width: 1200px) {
  .card-item img {
    height: 100px;
    width: 120px;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .card-subtitle {
    font-size: 0.75rem;
  }

  .btn {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}

@media (max-width: 992px) {
  .card-item img {
    height: 90px;
    width: 110px;
  }

  .card-title {
    font-size: 0.85rem;
  }

  .card-subtitle {
    font-size: 0.7rem;
  }

  .btn {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
}

@media (max-width: 767.98px) {
  .card-item img {
    height: 70px;
    width: 90px;
  }

  .card-title {
    font-size: 0.8rem;
  }

  .card-subtitle {
    font-size: 0.65rem;
  }

  .btn {
    font-size: 0.6rem;
    padding: 3px 6px;
  }

  .card-body {
    padding: 0.4rem;
  }

  .badge {
    font-size: 0.6rem;
  }

  .row.g-1 {
    --bs-gutter-x: 0.15rem;
    --bs-gutter-y: 0.15rem;
  }
}


@media (max-width: 576px) {
  /* .card-item img {
    width: 96px;
    height: 60px;
  } */

  .card-item img {
    height: 100px;
    width: 100px;
  }

  .card-title {
    font-size: 0.75rem;
  }

  .card-subtitle {
    font-size: 0.6rem;
  }

  .btn {
    font-size: 0.55rem;
    padding: 3px 5px;
  }

  .card-body {
    padding: 0.3rem;
  }

  .badge {
    font-size: 0.5rem;
  }

  .row.g-1 {
    --bs-gutter-x: 0.1rem;
    --bs-gutter-y: 0.1rem;
  }
}

/* explore */
.image-placeholder {
  background-color: #dcdcdc;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.image-placeholder img {
  height: 350px;
  width: 100%;
}

@media (min-width: 1440px) {
  .image-placeholder {
    height: 400px;
  }
}

/* Adjust card layout for smaller screens */
@media (max-width: 992px) {
  .profile-container {
    padding: 2rem;
  }

  .profile-left {
    margin-bottom: 2rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 25px;
  }

  .profile-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .card-custom {
    height: 120px;
    width: 30%;
  }

  .card-custom-body h4 {
    font-size: 1.25rem;
  }

  .card-custom-body p {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .profile-container {
    padding: 1.5rem;
  }

  .profile-left {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .card-custom-body h4 {
    font-size: 1.2rem;
  }

  .card-custom-body p {
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .image-placeholder {
    height: 250px;
  }

  .profile-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .card-custom {
    width: 80%;
    height: auto;
  }
}

@media (max-width: 1024) {
  .image-placeholder img {
    height: 200px !important;
    width: 100%;
  }

  .image-placeholder {
    height: 200px !important;
  }

}

@media (max-width: 576px) {
  .profile-container {
    padding: 1rem;
  }

  .profile-left {
    text-align: left;
    margin-bottom: 1rem;
  }

  .card-custom-body h4 {
    font-size: 0.85rem;
    text-align: center;
  }

  .card-custom-body p {
    font-size: 0.65rem;
  }

  .btn {
    font-size: 0.75rem;
    padding: 6px 15px;
  }

  /* .image-placeholder {
    height: 200px;
  } */

  .profile-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .image-placeholder img {
    height: 200px;
    width: 100%;
  }

  .image-placeholder {
    height: 200px !important;
  }

  .card-custom {
    width: 90%;
    height: 60px;
    font-size: 8px;
    gap: 0.5rem;
  }
}

/* Testimonials */
/* CSS Styles for Testimonials Slider */
.testimonial-slider {
  display: flex;
  gap: 30px;
}

.testimonial-card {
  display: flex;
  gap: 40px;
  margin: 10px;
  /* Outer space */
}



.testimonial-card {
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 5px solid red;
  background-color: #fff;
  gap: 10rem;
    transition: box-shadow 0.3s ease; 
}

.testimonial-card:hover {
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  
}

.card-top-section {
  border-bottom: 1px solid black;
  text-align: center;
  color: #495057;
  font-size: 0.95rem;
  padding: 1rem;
}

.card-bottom-section {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
}

.profile-image-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  flex-shrink: 0;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-text h6 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.info-text small {
  font-size: 0.85rem;
  color: #6c757d;
}

.rating-stars {
  margin-left: auto;
  display: flex;
  gap: 2px;
  color: #ffc107;
  font-size: 1.1rem;
}

.rating-stars i:hover {
  color: #e0a800;
  cursor: pointer;
}

@media (max-width: 768px) {
  .card-top-section {
    font-size: 0.7rem;
    padding: 0.75rem;
  }

  .info-text h6 {
    font-size: 0.65rem;
  }

  .card-bottom-section {
    align-items: center;
    text-align: center;
  }

  .info-text small {
    font-size: 0.6rem;
  }

  .rating-stars {
    font-size: 0.6rem;
  }

  .profile-image-container {
    margin: 0 auto 0.5rem;
  }

  .rating-stars {
    margin: 0.5rem auto 0;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .info-text h6 {
    font-size: 0.65rem;
  }

  .info-text small {
    font-size: 0.8rem;
  }

  .rating-stars {
    font-size: 0.80rem;
  }
}

.image2 {
  background-image: url('/assets/user/images/bgimage.avif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  border-radius: 5px;
  min-height: 300px;
}


@media (max-width: 767px) {

  .image2 {
    background-position: top center;
  }
}

/* footer */

footer {
  font-size: 0.95rem;
  position: relative;
  min-height: 300px;
}

footer h5 {
  font-size: 1rem;
  display: inline-block;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  margin-bottom: 0.5rem;
}

footer ul li {
  line-height: 1.6;
}

footer img {
  margin-bottom: 0.5rem;
}

footer .social-icons a img {
  width: 30px;
  height: 30px;
  background-color: white;
  padding: 5px;
  border-radius: 50%;
  object-fit: contain;
}

footer .social-icons a img:hover {
  background-color: rebeccapurple;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(212, 170, 170, 0.2);
}

@media (max-width: 576px) {
  footer {
    font-size: 0.85rem;
  }

  footer .text-center,
  footer .text-md-start {
    text-align: center !important;
  }

  footer .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  footer .social-icons a img {
    width: 20px;
    height: 20px;
    margin-right: 0;
    background-color: white;
    padding: 3px;
    border-radius: 50%;
    object-fit: contain;
  }
}


/* start oppurtunities section */
.banner {
  background: url('/assets/user/images/image5.png') center center / cover no-repeat;
  position: relative;
  height: 330px;
  display: flex;
  align-items: center;
  color: black;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "|";
  color: white;
  padding: 0 5px;
}


.banner-content {
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  text-decoration: none;
}

@media (max-width: 576px) {
  .banner {
    height: 180px;
    text-align: center;
  }
}


.pagination-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.pagination-custom .pagination {
  display: flex;
  gap: 10px;
}

.pagination-custom .page-item .page-link {
  background-color: #f3355c;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
}

.pagination-custom .page-item .page-link:hover {
  background-color: #dc3545;
  color: #fff;
}

.pagination-custom .next-link {
  color: #f3355c;
  font-weight: 500;
  text-decoration: none;
  margin-left: 10px;
}

.pagination-custom .next-link:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .pagination-custom {
    flex-wrap: wrap;
    gap: 12px;
  }
}



/* start casting-oppurtunity */
.bread {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.bread-item+.bread-item::before {
  content: "/";
  color: dark;
  padding: 0 5px;
}

.bread-item a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .bread {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .bread-item+.bread-item::before {
    content: " / ";
    padding: 0 3px;
  }

  .bread-item a {
    font-size: 14px;
  }

  .banner-content {
    padding: 10px;
  }

  h1 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .bread {
    font-size: 12px;
  }

  .bread-item a {
    font-size: 12px;
  }

  h1 {
    font-size: 18px;
  }

  .card-custom1 .text-muted {
    font-size: 0.8rem;
  }

  .main-header h5 {
    font-size: 1rem;
  }
}

.card-custom1 {
  border-radius: 10px;
}



.apply-btn {
  background-color: #ff4d6d;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
}

.apply-btn:hover {
  background-color: #e03b5e;
  color: white;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.sidebar-card {
  border-radius: 10px;
  background-color: #f8f9fa;
  padding: 10px 15px;
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}

.details-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.sidebar-profile {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .text-end {
    text-align: start !important;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  h5 {
    font-size: 1.1rem;
  }

  .apply-btn {
    width: 100%;
    margin-top: 10px;
  }

  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .details-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .search-bx .search-box {
    font-size: 8px;
  }
}

/* start oppurtinities detail */
.contact-card {
  border-radius: 12px;
  padding: 15px;
}

.label {
  font-weight: 600;
}

.section-title {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}

img.responsive-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .contact-card {
    font-size: 14px;
  }

  .contact-card h6 {
    font-size: 16px;
  }

  .responsive-img {
    width: 50px;
    height: 50px;
  }
}

.applied-btn {
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  border: none;
  font-weight: 600;
}

.applied-btn:hover {
  background-color: #e03b5e;
}

@media (max-width:576px) {
  .applied-btn {
    width: 100%;
    margin-top: 10px;
  }
}








/* Subscription Page Css */
ol {
  padding-left: 10px;
  list-style-position: inside;
}

ol li {
  padding: 3px 0;
  font-size: 15px;
  /* font-family: 'Courier New', Courier, monospace; */
  /* font-weight: 600; */
}

ol li::marker {
  /* font-weight: bold; */
  margin-right: 5px;
}

#subscription-card {
  background-color: #dab8c9;
}

#subscription-card h5 {
  font-size: 1.25rem;
}

#subscription-card h6 {
  font-size: 1rem;
  font-weight: 500;
  /* margin-bottom: 10px; */
}

#subscription-card ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 2px 0;
}

#subscription-card ul li i.fa-xmark {
  color: #dc3545;
  /* Red cross */
}

.subscription-plan {
  text-align: center;
  padding: 3px;
  /* border-radius: 8px; */
  /* background-color: #ffffff; */
  transition: transform 0.3s ease;
}

/* .subscription-plan:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  } */
.subs-details {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 4px 10px;
  background-color: #fff;
}

.subs-details li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
}

.subs-details:hover li {
  padding: 8px 0;
  /* border-bottom: 0.2px solid rgb(193, 189, 189); */
}

.subscription-plan h6 {
  background-color: #fff;
  padding: 10px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  color: black;
}

.subscription-plan.active:hover h6,
.subscription-plan.active:hover .subs-details {
  background-color: #dc3545;
  color: white;
  border-radius: 5px;
}

#subscription-card:hover ul li i.fa-xmark {
  color: #fff;
}

#subscription-card.active ul li i.fa-xmark {
  color: #fff;
}

.subscription-plan:hover h6,
.subscription-plan:hover .subs-details {
  background-color: #dc3545;
  color: white;

  border-radius: 5px;
}

/* Default active plan styling */
.subscription-plan.active .subs-details {
  background-color: #dc3545;
  /* Active background color (e.g., blue) */
  color: white;
  border-radius: 5px;
  /* Optional: rounded corners */
}

/* Default active plan styling */
.subscription-plan.active h6 {
  background-color: #dc3545;
  /* Active background color (e.g., blue) */
  color: white;
  border-radius: 5px;
  /* Optional: rounded corners */
}

.subs-details li i {
  font-size: 18px;
}

.subscription-plan h6 {
  font-size: 1.1rem;
  font-weight: bold;
}

#subscription-card .btn button {
  background-color: #dc3545;
  color: white;
  padding: 8px 0;
  cursor: pointer;
}

#subscribe-featured .card {
  margin-top: 15px;
  padding: 5px 4px;
  background-color: #dab8c9;
}

#subscribe-featured-title {
  border-bottom: 1px solid black;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#subscribe-featured span {
  display: block;
  border-bottom: 1px solid black;
  list-style: none;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

#subscribe-featured span:last-child {
  border-bottom: none;
}

/* User Registration 1 Css  */

#user-regis h4 {
  font-size: 18px;
  text-align: center;
  padding: 10px 0;
}

#profession-select {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

#profession-select:focus {
  border-color: #dc3545;
  outline: none;
  color: #dc3545;
}

#sele p {
  margin: 5px 0;
  font-size: 16px;
  color: #333;
  background-color: #e2e2e2;
  padding: 8px;
  border-radius: 3px;
}

/* Optional: add some hover effect for the paragraphs */
#sele p:hover {
  background-color: #dc3545;
  cursor: pointer;
  color: #fff;
}

/* Index 9  CSS  */
#get-data .data-card {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
  position: relative;
}

#get-data .data-card .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}

#get-data .data-card .actions i {
  margin-left: 10px;
  cursor: pointer;
  font-size: 16px;
  color: #dc3545;
  /* Red color for delete */
}

#get-data .data-card .actions i.edit {
  color: #007bff;
  /* Blue color for edit */
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 5px;
}

#galleryData .card {
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#galleryData .delete-button {
  cursor: pointer;
}

.upload-text {
  margin-bottom: 5px;
}

.upload-text {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.btn-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  background-color: #6c757d;
  color: white;
  border: 1px solid #6c757d;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 14px;
}

.btn-upload i {
  margin-left: 5px;
}

.btn-upload:hover {
  background-color: #5a6268;
}

.upload-text:focus,
.btn-upload:focus {
  outline: none;
  border-color: #007bff;
}

#serch-profile h5 {
  /* font-size: 22px; */
  line-height: 26px;
}

#serch-profile a {
  font-size: 25px;
}


@media (max-width: 250px) {
  .card .card-call {
    flex-direction: column;
  }

  .card .card-call span {
    text-align: center;
  }

  .card .card-call #icon2 {
    width: 90px !important;
  }

  #subscription-card ul {
    padding-left: 0px !important;
  }

  #subscription-card ul li {
    font-size: 13px;
    text-align: left;
  }

  #subscription-card button {
    padding: 4px 2px;
    background-color: #0056b3;
  }

  #subscribe-featured-title {
    font-size: 16px;
  }

  #subscribe-featured h4 {
    font-size: 17px;
  }

  #subscribe-featured span {
    text-align: left;
    font-size: 12px;
    padding: 4px 4px;
  }
}

#subscription-card .btn {
  font-size: 14px;
}

#subscription-plan-card {
  padding: 10px 10px !important;
}

#subscribe-featured .card span {
  margin-bottom: 2px;
  font-size: 13px;
  border-bottom: 0.1px solid #af9a9a;
}

#subscribe-featured-title {
  font-size: 14px;
  margin-bottom: 2px !important;
  border-bottom: 0.1px solid #af9a9a;
}