.carousel-item .slideimg {
  width: 1350px;
  height: 1000px;
}

.head {
  height: 60px;
}

/* Increase slider height for mobile view */
@media (max-width: 767px) {
  .carousel-item img {
    height: 270px;
    width: 100%;
    /* margin-bottom: 60px; */
  }

  .head {
    height: 70px;
  }

  .carousel-item .slideimg {
    width: 100%;
    height: 320px;
  }
}

.contact_bttn {
  display: block;
  position: fixed;
  left: 1rem;
  bottom: 90px;
  width: 40px;
  z-index: 8;
}

.contact_bttn img {
  width: 100%;
}

.whatsapp_bttn {
  display: block;
  position: fixed;
  left: 1rem;
  bottom: 40px;
  width: 40px;
  z-index: 8;
}

.whatsapp_bttn img {
  width: 100%;
}

.button {
  background-color: tomato;
}

.footerWrapper {
  text-align: center;
  background-color: #ebebeb;
  margin: 0px;
  padding: 0px;
  box-shadow: 0px -3px 5px rgb(150, 150, 150);
  -moz-box-shadow: 0px -3px 5px rgb(150, 150, 150);
  -ms-box-shadow: 0px -3px 5px rgb(150, 150, 150);
  -o-box-shadow: 0px -3px 5px rgb(150, 150, 150);
  -webkit-box-shadow: 0px -3px 5px rgb(150, 150, 150);
}

.slide1 {
  color: #000000;
  text-transform: uppercase;
  font-size: 19px;
  /* height: 30px; */
  background: linear-gradient(to right, lightblue, #b5aaaa);
  border: 2px #ff2700;
  border-radius: 0px;
  padding: 5px;
}

.nav-link {
  color: #000000;
  margin-right: 10px;
  background-color: dodgerblue;
  border-radius: 5px;
  padding: 5px;
}

.login {
  color: #000000;
  margin-right: 10px;
  background-color: green;
  border-radius: 5px;
  padding: 5px;
}

.home {
  color: #000000;
  margin-right: 10px;
  background-color: indianred;
  border-radius: 5px;
  padding: 5px;
}

.bg-red-900 {
  --tw-bg-opacity: 1;
  background-color: black;
}

.bg-gray {
  --tw-bg-opacity: 1;
  background-color: slategray;
}

@media (max-width: 500px) {
  .nav-link {
    color: #000000;
    margin-top: 10px;
  }
}

/* footer css */
.footer {
  background: linear-gradient(135deg, #225461 0%, #143344 50%, #562918 100%);
  background-size: 200% 200%;
  animation: gradientBG 15s ease infinite;
  color: white;
  padding: 2rem 0rem 1rem 0rem;
  font-family: system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section {
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-4px);
}

.footer h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #60a5fa, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #67e8f9);
  transition: width 0.3s ease;
}

.footer-section:hover h4::after {
  width: 100%;
}

.footer p,
.footer li {
  color: #cbd5e1;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 0.75rem;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer a:hover {
  color: #fff;
}

.footer i {
  margin-right: 0.5rem;
  width: 1.25rem;
}

.footer .social-links {
  display: flex;
  gap: 1rem;
}

.footer .social-links a {
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-links a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
  color: #cbd5e1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: fadeInUp 0.6s ease-out forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

.anchor a {
  color: black;
}

.btn-info {
  background-color: #17a2b8;
  color: white;
  border: none;
  margin-left: 10px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.btn-info:hover {
  background-color: #138496;
  color: whitesmoke;
  transform: translateY(-2px);
}

#languageSwitcher {
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.skiptranslate {
  display: none;
  top: 0px;
}

body {
  top: 0px !important;
  position: static !important;
}

.donation {
  background: linear-gradient(
    90deg,
    rgb(40, 194, 214) 0%,
    rgb(40, 194, 214) 100%
  );
}

.project {
  background: linear-gradient(
    90deg,
    rgb(219, 59, 139) 0%,
    rgb(219, 59, 139) 100%
  );
}

.project:hover {
  background-color: linear-gradient(
    90deg,
    rgba(133, 30, 81, 1) 0%,
    rgba(240, 105, 172, 1) 100%
  );
  color: whitesmoke;
  transform: translateY(-2px);
}

.check-jivandaan-btn {
  background: linear-gradient(
    90deg,
    rgb(219, 59, 139) 0%,
    rgb(40, 194, 214) 100%
  );
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.check-jivandaan-btn:hover {
  background: linear-gradient(
    90deg,
    rgb(105, 209, 223) 0%,
    rgb(150, 15, 82) 100%
  );
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.5);
  transform: scale(1.05);
}

.check-jivandaan-btn i {
  transition: transform 0.3s ease;
}

.check-jivandaan-btn:hover i {
  transform: rotate(5deg) scale(1.2);
}

.check-jivandaan-btn:hover i {
  transform: rotate(5deg) scale(1.2);
}

.submit-project-btn {
  background: linear-gradient(
    90deg,
    rgb(40, 194, 214) 0%,
    rgb(219, 59, 139) 100%
  );
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-project-btn:hover {
  background: linear-gradient(
    90deg,
    rgb(150, 15, 82) 0%,
    rgb(105, 209, 223) 100%
  );
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.5);
  transform: scale(1.05);
}

.submit-project-btn i {
  transition: transform 0.3s ease;
}

.submit-project-btn:hover i {
  transform: rotate(5deg) scale(1.2);
}

.custom-animated-btn {
  background: linear-gradient(
    90deg,
    rgb(40, 194, 214) 0%,
    rgb(219, 59, 139) 100%
  );
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.custom-animated-btn:hover {
  background: linear-gradient(
    90deg,
    rgb(105, 209, 223) 0%,
    rgb(150, 15, 82) 100%
  );
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.5);
  transform: scale(1.05);
}

.custom-animated-btn i {
  transition: transform 0.3s ease;
}

.custom-animated-btn:hover i {
  transform: rotate(5deg) scale(1.2);
}

.live-meeting-section {
  background: linear-gradient(135deg, #73c9ebff 0%, #a2834bff 100%);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.live-meeting-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,100 1000,0 1000,100"/></svg>');
  background-size: cover;
  pointer-events: none;
}

.meeting-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.meeting-title {
  color: white;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.meeting-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 0, 0, 0.9);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.live-indicator i {
  margin-right: 8px;
  font-size: 0.8rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(255, 0, 0, 0.6);
  }

  100% {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  }
}

.queue-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.enhanced-queue-card {
  background: white;
  border-radius: 15px;
  padding: 25px 30px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.enhanced-queue-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: all 0.3s ease;
}

.enhanced-queue-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.enhanced-queue-card.waiting::before {
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.enhanced-queue-card.active::before {
  background: linear-gradient(90deg, #28a745, #20c997);
}

.enhanced-queue-card.red::before {
  background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.enhanced-queue-card.green::before {
  background: linear-gradient(90deg, #28a745, #20c997);
}

.enhanced-queue-card.yellow::before {
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.queue-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.participant-info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 250px;
}

.participant-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #66e6eaff, #a29c4bff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.participant-details h5 {
  margin: 0 0 5px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
}

.participant-role {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.participant-role i {
  margin-right: 5px;
  font-size: 0.8rem;
}

.status-info {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: right;
}

.enhanced-status-badge {
    padding: 8px 10px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff;
    font-size: 0.9rem;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Colors */
.enhanced-status-badge.green {
    background: #28a745;
    box-shadow: 0 0 10px #28a745;
}
.enhanced-status-badge.red {
    background: #dc3545;
    box-shadow: 0 0 10px #dc3545;
}
.enhanced-status-badge.yellow {
    background: #ffc107;
    color: #333;
    box-shadow: 0 0 10px #ffc107;
}

/* Blinking / Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.enhanced-status-badge.waiting {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #8b6914;
}

.enhanced-status-badge.active {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  animation: activeGlow 2s infinite;
}

@keyframes activeGlow {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(40, 167, 69, 0.6);
  }
}

.queue-timestamp {
  font-size: 0.75rem;
  color: #adb5bd;
  font-weight: 500;
}

.queue-position {
  position: absolute;
  top: -10px;
  left: 30px;
  background: #fff;
  color: #667eea;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  border: 2px solid #667eea;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.no-meetings {
  text-align: center;
  padding: 60px 20px;
  color: white;
  margin-top: -50px;
}

.no-meetings i {
  font-size: 4rem;
  opacity: 0.7;
  margin-bottom: 20px;
}

.no-meetings h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.no-meetings p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.meeting-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  color: white;
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .meeting-title {
    font-size: 2rem;
  }

  .queue-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .status-info {
    align-items: start;
    text-align: left;
  }

  .participant-info {
    min-width: auto;
  }

  .enhanced-queue-card {
    padding: 20px;
    margin: 15px 0;
  }
}
