/* Feedback Modal Styling */
.feedback-popup {
  width: 400px;
  max-width: 90%;
  background: #f9f9f9;
  border: 3px solid #4CAF50;
  border-radius: 10px;
  padding: 20px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.rating input {
  display: none;
}

.rating label {
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.rating input:checked ~ label {
  color: gold;
}


/* Modal Base */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow-y: auto;
  background-color: rgba(0,0,0,0.7);
}

/* Modal Content */
.modal-content.why-popup {
  background: #fff;
  margin: 50px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 1000px;
  width: 90%;
  animation: fadeIn 0.4s ease-in-out;
}

/* Close Button */
.close-why {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* ===== Modal Common ===== */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #222; /* dark bg ताकि white text अच्छा दिखे */
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 85%;
  max-width: 1100px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  animation: fadeIn 0.3s ease-in-out;
  color: #fff; /* default text white */
}

.close-exhibits {
  color: #fff;   /* अब white */
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close-exhibits:hover { color: #e74c3c; } /* hover पर red */

/* ===== Header Styling ===== */
.why-choose-us-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-left: 4px solid red;
  padding-left: 10px;
  color: #fff; /* header text white */
}

.why-choose-us-section p {
  color: #ddd; /* थोड़ा हल्का white */
  margin-bottom: 30px;
  text-align: center;
}

/* ===== Cards Layout ===== */
.cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 280px;
  width: 320px;
  background: #fff; /* card bg white */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #333; /* card ke andar dark text */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Color borders */
.card-blue { border: 2px solid #1e90ff; }
.card-white { border: 2px solid #ddd; }
.card-red { border: 2px solid #e74c3c; }


.card p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 15px;
}

.card h3 {
  font-weight: bold;
  margin-top: 10px;
}




/* Container */
.floating-buttons {
  position: fixed;
  right: 20px; /* Right side */
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  align-items: flex-end; /* Align buttons to right */
}

/* Main buttons */
.floating-btn {
  background-color: #e53935;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.floating-btn:hover {
  background-color: #d32f2f;
}

/* Floating contact icons (slide-in from right) */
.floating-contact {
  position: absolute;
  top: 50%;
  right: 100%; /* start outside right */
  transform: translateY(-50%) translateX(20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

/* Show on hover */
.help-btn:hover .floating-contact {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0); /* slide in */
}

/* Individual icons */
.floating-contact a {
  background-color: white;
  color: #25d366; /* WhatsApp green */
  font-size: 20px;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.floating-contact a.contact-email {
  color: #e53935; /* Email red */
}

.floating-contact a:hover {
  transform: scale(1.2);
}

/* Scroll to Top Button */
.scroll-btn {
  width: 50px;
  height: 50px;
  padding: 0;
  justify-content: center;
  display: flex;
  font-size: 18px;
  background-color: #171129;
  color: white;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  display: none; /* Hidden initially */
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background-color: #e53935;
}


/* ===== Modal Common ===== */
.modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #222; /* dark bg ताकि white text अच्छा दिखे */
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 85%;
  max-width: 1100px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  animation: fadeIn 0.3s ease-in-out;
  color: #fff; /* default text white */
}

.close-exhibits {
  color: #fff;   /* अब white */
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close-exhibits:hover { color: #e74c3c; } /* hover पर red */

/* ===== Header Styling ===== */
.why-choose-us-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-left: 4px solid red;
  padding-left: 10px;
  color: #fff; /* header text white */
}

.why-choose-us-section p {
  color: #ddd; /* थोड़ा हल्का white */
  margin-bottom: 30px;
  text-align: center;
}

/* ===== Cards Layout ===== */
.cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 280px;
  width: 320px;
  background: #fff; /* card bg white */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #333; /* card ke andar dark text */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Color borders */
.card-blue { border: 2px solid #1e90ff; }
.card-white { border: 2px solid #ddd; }
.card-red { border: 2px solid #e74c3c; }

.card p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 15px;
}

.card h3 {
  font-weight: bold;
  margin-top: 10px;
}

