/* General Styles */
body {
  background: linear-gradient(135deg, #0E0D0D, #3A1D12, #1D6161, #0D0D0D) !important;
  color: #ffffff;
  /*font-family: "Poppins", sans-serif !important;*/
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.dum{
  height: 91px;
  }
.nav-item .nav-link:hover {
  color: #F76F00 !important;
}

.teamwelcom {
  text-align: center;
  margin-top: 88px;
}

/* Footer */
.footer {
  padding: 16px 18px;
  text-align: center;
  background-color: #121212;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  color: #f8f9fa;
}

/* Navigation Buttons */
ul.oto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  font-size: 18px;
  padding: 0;
  margin: 20px 0;
}

.oto button {
  font-size: 19px;
  background-color: #121212;
  color: white;
  padding: 8px 12px;
  margin: 0;
  border: 1px solid;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.oto button:hover {
  background-color: #f76f00;
  color: white;
  border-color: #ffffff;
}

/* Profile Cards */
.profile-card,
.custom-profile-card {
  width: 100%;
  max-width: 300px;
  height: 350px;
  border-radius: 15px;
  padding: 20px;
  color: white;
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile-card {
  background: linear-gradient(135deg, #02aab0, #00cdac);
}

.custom-profile-card {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  height: auto;
}

.profile-card:hover,
.custom-profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.profile-img img,
.custom-profile-img img {
  width: 100px;
  height: 100px;
  border: 4px solid white;
  border-radius: 50%;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-title,
.custom-card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.card-text,
.custom-card-text {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.btn,
.custom-btn {
  border-radius: 20px;
  font-size: 0.9rem;
  padding: 8px 20px;
  background-color: white;
  border: 2px solid white;
  color: #02aab0;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn:hover,
.custom-btn:hover {
  background-color: #ffffff;
  color: #00cdac;
}

/* Team Section */
section.twomember {
  text-align: center;
  padding: 69px 0;
}

.recimg {
  width: 100%;
  height: 66vh;
  object-fit: cover;
}

.tearmdetail {
  margin-top: 71px;
  text-align: center;
}

/* Image Styling */
.mg {
  height: 130px;
  width: 170px;
  border-radius: 50%;
}

.dad {
  border-radius: 50%;
  width: 143px;
  height: 143px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(126, 73, 29, 0.2);
  margin: auto;
}

/* Dropdown Menu */
.dropdown-menu {
  width: 100%;
  max-width: 900px;
  border-radius: 0;
  background-color: #ffffff;
}

.dropdown-menu h6 {
  color: #7a2b84;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.dropdown-menu ul {
  padding-left: 0;
}

.dropdown-menu a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: #7a2b84;
}

/* Responsive Design */
@media (max-width: 768px) {
  ul.oto {
    flex-direction: column;
    gap: 15px;
  }

  .profile-card,
  .custom-profile-card {
    max-width: 90%;
  }

  .twomember {
    padding: 50px 10px;
  }
}

@media (max-width: 480px) {
  .btn,
  .custom-btn {
    padding: 6px 15px;
    font-size: 0.8rem;
  }

  .card-title,
  .custom-card-title {
    font-size: 1.2rem;
  }

  .card-text,
  .custom-card-text {
    font-size: 0.8rem;
  }
}
