/* Global Styles */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optional: Slide animation for forward/back if controlled via class, 
   but native 'navigation: auto' handles default cross-fade smoothly */
.mobile-header {
  display: none;
}

/* Review Modal Styles */
#reviewModal .modal-content {
  max-width: 500px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#reviewModal h3 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.5rem;
}

.review-trigger-btn {
  display: block;
  margin: 20px auto 0;
  background: transparent;
  border: 2px solid #16a34a;
  color: #16a34a;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-trigger-btn:hover {
  background: #16a34a;
  color: white;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #555;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #f9f9f9;
  transition: border 0.3s;
}

.form-input:focus {
  border-color: #16a34a;
  background: #fff;
  outline: none;
}

.submit-review-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s;
}

.submit-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Star Rating Styles */
.star-rating {
  direction: rtl;
  display: inline-flex;
  font-size: 24px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
  color: #f39c12;
}

.testimonial-stars {
  color: #f39c12;
  margin-bottom: 5px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}


.location-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 22px 30px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 1400px;
  margin: 20px auto;
  gap: 15px;
}

.location-left i {
  color: #00b67a;
  font-size: 42px;
}

.location-text {
  font-size: 39PX;
  color: #00b67a;
  font-weight: 600;
  line-height: 1.5;
  flex-grow: 1;
}

.location-text strong,
.location-text span {
  font-weight: 700;
}

.share-btn {
  background: #00b67a;
  color: #fff;
  border: none;
  border-radius: 30PX;
  width: 150px;
  height: 60px;
  font-size: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.share-btn:hover {
  background: #009961;
  transform: scale(1.1);
}

/* ✅ Responsive styles for small screens */


/* ===== Base nav styling ===== */
nav {
  display: Flex;
  flex-direction: row;
  background-color: #000;
  color: #1FC181;
  padding: 10px 20px;
  border: 1px solid #1FC181;
  position: relative;
  z-index: 999;
}

/* Flex container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo styling */
.logo {
  width: 150px;
  padding: 5px;
  height: auto;
  margin: 10px 20px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #1FC181;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 100%;
  height: 40px;
  object-fit: fill;
}

/* Navigation links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Chat button */
/* Google Translate in Navbar */
#google_translate_element {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.goog-te-gadget {
  font-family: 'Inter', sans-serif !important;
  font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
  padding: 5px 8px !important;
  border: 1px solid #1FC181 !important;
  border-radius: 5px !important;
  font-size: 16px !important;
  /* Matched to nav links */
  cursor: pointer;
  background-color: #000;
  /* Matched to nav background */
  color: #fff;
  font-weight: 500;
}

.goog-te-gadget .goog-te-combo:focus {
  outline: none;
  border-color: #fff !important;
}

/* Chat button */
.chat-button {
  background-color: #1FC181;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* Hide menu checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger icon */
.hamburger-icon {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  margin-left: auto;
}

/* ===== Responsive ===== */







/* ===== Modern Device Section ===== */
.device-section {
  padding: 70px 25px;
  background: white;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Soft glowing gradient background */
.device-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: white;
  filter: blur(60px);
  z-index: 0;
}

.device-section * {
  position: relative;
  z-index: 1;
}

/* Section title with a modern underline */
.fancy-divider h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #e9ffe9 0%, #c9f7c9 100%);

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.fancy-divider h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #007bff, #00b3ff);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Device grid layout */
.device-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Each device card */
.device {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 25px 15px;
  width: 180px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 255, 0.1);
  cursor: pointer;
}

/* Hover effects — elevate + glow border */
.device:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
  border-color: rgba(0, 123, 255, 0.3);
}

/* Device image */
.device img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: transform 0.3s ease;
}

.device:hover img {
  transform: rotate(5deg) scale(1.05);
}

/* Device name */
.device p {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

/* Secondary heading (optional) */
.device-section h2:last-of-type {
  margin-top: 50px;
  font-size: 1.7rem;
  color: #007bff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Subtle entry animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.device {
  animation: fadeUp 0.6s ease forwards;
}

/* Responsive Design */


/* ===== Modern Service Form ===== */
#Form {
  padding: 50px 40px;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  max-width: 950px;
  width: 95%;
  box-sizing: border-box;
  border: 1px solid rgba(0, 123, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient glow behind form */
#Form::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.1), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

#Form * {
  position: relative;
  z-index: 1;
}

/* Section heading */
.fancy-divider h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(to right, #007bff, #00b3ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.fancy-divider h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #007bff, #00b3ff);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Input container layout */
.Input_service {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Input groups in a row */
.input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-row>div {
  flex: 1;
  min-width: 300px;
}

/* Labels */
label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  display: block;
  font-size: 15.5px;
}

/* Input fields */
select,
textarea,
input[type="datetime-local"],
input[type="file"],
input[type="text"],
input[type="email"],
input[type="number"],
input[type="submit"] {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  background: rgba(250, 250, 250, 0.95);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Focus state */
select:focus,
textarea:focus,
input[type="datetime-local"]:focus,
input[type="file"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
  border-color: #007bff;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}

/* Textarea customization */
textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button */
input[type="submit"] {
  background: linear-gradient(90deg, #007bff, #00b3ff);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
  padding: 14px 18px;
  border-radius: 12px;
}

input[type="submit"]:hover {
  background: linear-gradient(90deg, #0056b3, #0088cc);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.25);
}

/* Checkbox / declaration */
.declaration {
  margin-top: 20px;
  text-align: left;
}

.checkbox-label {
  font-size: 15px;
  color: #333;
}

.checkbox-label input {
  margin-right: 8px;
}

.checkbox-label a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding-top: 50px;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 25px;
  border-radius: 10px;
  max-width: 800px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.close-btn:hover {
  color: #000;
}

.terms-container {
  margin-top: 20px;
}

.terms-list {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
  color: #333;
}

/* ✅ Responsive Design */







.site-footer {
  background-color: #333;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #f1f1f1;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a,
.footer-section a {
  color: #ccc;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #555;
  padding-top: 10px;
  font-size: 14px;
  color: #bbb;
}

/* ===== Modern Testimonials Section ===== */
.testimonials-section {
  background: white;

  padding: 80px 20px;
  text-align: center;
  position: relative;
  border-top: 4px solid #22c55e;
  overflow: hidden;
}

/* Soft gradient glow background */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: white;

  filter: blur(60px);
  z-index: 0;
}

/* Keep inner content above glow */
.testimonials-section * {
  position: relative;
  z-index: 1;
}

.testimonials-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(to right, #22c55e, #5daa2a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Testimonial container */
.testimonial-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Modern testimonial card */
.testimonial {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  max-width: 320px;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 120, 215, 0.08);
  cursor: default;
}

/* Hover effect — smooth lift with subtle glow */
.testimonial:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 120, 215, 0.2);
  border-color: rgba(0, 120, 215, 0.2);
}

/* Quotation icon style */
.testimonial::before {
  content: "“";
  font-size: 45px;
  color: rgba(0, 120, 215, 0.2);
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: Georgia, serif;
}

/* Testimonial text */
.testimonial p {
  font-style: italic;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Author name */
.testimonial h4 {
  font-weight: 700;
  color: #22c55e;
  margin-top: 10px;
  font-size: 1rem;
}

/* Optional role/title below name */
.testimonial span {
  display: block;
  color: #777;
  font-size: 0.85rem;
  margin-top: 3px;
}

/* Subtle fade-in animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial {
  animation: fadeUp 0.6s ease forwards;
}

/* Responsive tweaks */





.how-it-works-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background: #fff;
  position: relative;
  text-align: center;
}



.how-it-works-section * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #22c55e;
  display: inline-block;
  padding-bottom: 10px;
}

/* Steps Container */
.step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Step Icon */
.step-icon {
  flex-shrink: 0;
}

.step-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Step Text */
.text {
  text-align: left;
}

.step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #22c55e;
}

.step-description {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

/* Responsive for smaller screens */


.faq-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
  background: linear-gradient(180deg, #e9ffe9 0%, #c9f7c9 100%);

}

/* Individual FAQ card */
.faq-item {
  width: 90%;
  max-width: 800px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #22c55e;
}

/* FAQ question */
.faq-item h3 {
  font-size: 1.2rem;
  margin: 20px 30px 10px;
  color: #22c55e;
  font-weight: 600;
}

/* FAQ answer text */
.faq-item p {
  font-size: 1rem;
  color: #555;
  margin: 0 30px 20px;
  line-height: 1.6;
  display: none;
  /* Hidden by default for accordion effect */
}

/* Splash Screen Styles */


/* Open state */
.faq-item.active p {
  display: block;
}

/* Optional icon indicator */
.faq-item h3::after {
  content: "+";
  float: right;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  content: "–";
  transform: rotate(180deg);
}

/* Responsive adjustments */



.why-choose-us {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  border-top: 4px solid #22c55e;
  /* accent line */
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.why-choose-us h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.reason {
  max-width: 220px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.reason img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.reason h4 {
  font-size: 18px;
  color: #22c55e;
  margin-bottom: 10px;
}

.reason p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.question-section {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.post-question-form {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.post-question-form input[type="text"] {
  flex: 1;
  padding: 15px;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #ccc;
  min-width: 300px;
}

.post-question-form button {
  padding: 15px 30px;
  background-color: #007BFF;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.post-question-form button:hover {
  background-color: #0056b3;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 10px;
  background-color: white;
  box-sizing: border-box;
  resize: vertical;

}

.why-choose-us h2 {
  font-size: 2em;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.whatsapp-support {
  background-color: #f8f9fa;
  margin-top: 20px;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #25D366;
  border-bottom: 2px solid #25D366;
}

.whatsapp-support h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* Checkbox Label Style */


/* Optional Button Style */
.open-modal-btn {
  padding: 10px 20px;
  background-color: #2ecc71;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.open-modal-btn:hover {
  background-color: #27ae60;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.modal-content {
  background-color: #fff;
  margin: 8% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  max-height: 800px;
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 10px;
  border: 1px solid #eee;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 6px;
}

/* Modal Heading */
.modal-content h2 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 24px;
}

/* Modal Text */
.modal-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 26px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #e74c3c;
}

/* Accept Button */


/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.declaration {
  margin-top: 20px;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  color: #444;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #3498db;
  cursor: pointer;
}

.checkbox-label a {
  color: #3498db;
  text-decoration: underline;
  cursor: pointer;
}

.checkbox-label a:hover {
  color: #21618c;
}

.terms-container {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  padding: 25px;
  border-radius: 12px;
  max-width: 800px;
  margin: 30px auto;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.terms-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.terms-list {
  list-style-type: disc;
  padding-left: 20px;
}

.terms-list li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.terms-list strong {
  color: #1a73e8;
}

.popup-message {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.6s ease-out forwards;
}

/* Success Style */
.popup-message.success {
  background-color: #27ae60;
}

/* Error Style */
.popup-message.error {
  background-color: #e74c3c;
}

/* Slide animation */
@keyframes slideDown {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 30px;
    opacity: 1;
  }
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.repair-banner {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.repair-banner h2 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
}

.repair-banner p {
  margin: 10px 0 25px;
  font-size: 1rem;
  opacity: 0.95;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #16a34a;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}

.btn i {
  font-size: 18px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
  background-color: #20b358;
  transform: translateY(-2px);
}

.share-btn i {
  font-size: 1.1rem;
}

@keyframes popUp {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  60% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================================
   NEW ADMIN DESIGN SYSTEM
   ========================================= */

:root {
  --admin-sidebar-w: 260px;
  --admin-sidebar-bg: #1e1e2d;
  --admin-sidebar-hover: #2b2b40;
  --admin-primary: #3699ff;
  --admin-secondary: #212e48;
  --admin-bg: #f4f6f8;
  --admin-card: #ffffff;
  --admin-text-main: #3f4254;
  --admin-text-muted: #b5b5c3;
  --admin-border: #eff2f5;
  --admin-shadow: 0 0 20px 0 rgba(76, 87, 125, 0.02);
}

.admin-body {
  margin: 0;
  padding: 0;
  background-color: var(--admin-bg);
  font-family: 'Inter', sans-serif;
}

.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background-color: var(--admin-bg);
  position: relative;
  /* For overlay */
}

.admin-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.admin-overlay.active {
  display: block;
}

/* Sidebar */
.admin-sidebar {
  width: var(--admin-sidebar-w);
  background: var(--admin-sidebar-bg);
  color: #fff;
  position: fixed;
  height: 100vh;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.admin-sidebar .brand {
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-nav-menu {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  padding: 12px 25px;
  color: var(--admin-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.admin-nav-item i {
  width: 20px;
  font-size: 1.1rem;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  color: #fff;
  background: var(--admin-sidebar-hover);
}

.admin-nav-item.active {
  border-left: 3px solid var(--admin-primary);
}

/* Content Area */
.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: var(--admin-sidebar-w);
  min-height: 100vh;
  transition: all 0.3s ease;
  background-color: var(--admin-bg);
}

.admin-content {
  padding: 25px;
  flex: 1;
}

/* Header */
.admin-header {
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  box-shadow: var(--admin-shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

.admin-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-search {
  background: #f3f6f9;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  width: 300px;
  font-size: 0.9rem;
}

/* User Profile in Header */
.admin-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.admin-user img {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}

/* Widgets & Cards */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.admin-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--admin-shadow);
  border: 1px solid var(--admin-border);
}

.admin-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--admin-text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 991px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.show {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }
}

@keyframes popDown {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.8);
    opacity: 0;
  }
}

.review-container {
  width: 100%;
  margin: 20px 0;
}

.review-label {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}

.review-box {
  position: relative;
}

.review-input {
  width: 100%;
  min-height: 120px;
  padding: 15px 20px;
  border-radius: 25px;
  border: 2px solid #8ce0c7;
  outline: none;
  font-size: 15px;
  resize: none;
}

.review-input:focus {
  border-color: #35c995;
  box-shadow: 0 0 5px rgba(53, 201, 149, 0.5);
}

/* Button inside the form box, aligned right */
.review-btn {
  background: #2ecc71;
  margin: auto;
  color: white;
  border: none;
  padding: 8px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  position: absolute;
  right: 15px;
  bottom: -20px;
  transition: 0.3s;
}

.review-btn:hover {
  background: #25b863;
}

.stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin-bottom: 15px;
}

.stars input {
  display: none;
}

.stars label {
  font-size: 32px;
  cursor: pointer;
  color: #ccc;
  transition: 0.3s;
}

.stars input:checked~label,
.stars label:hover,
.stars label:hover~label {
  color: #fbbf24;
}

.input-field:focus,
.textarea-field:focus {
  border-color: #16a34a;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.4);
  outline: none;
}

/* Modal Styling */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  /* Black w/ opacity */
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 15px;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}



@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* =========================================
   Technician Registration Page Styles
   ========================================= */

/* Hero Section */
.info-banner {
  background: #dcfce7;
  color: #166534;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.hero {
    padding: 60px 20px 40px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.05), transparent 70%);
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #16a34a, #15803d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Form Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

/* Stepper Styles */
.stepper-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.stepper-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
    border-radius: 10px;
}

.stepper-progress {
    position: absolute;
    top: 15px;
    left: 20px;
    height: 3px;
    background: var(--primary);
    z-index: 2;
    width: 0%;
    transition: width 0.4s ease;
    border-radius: 10px;
}

.step-indicator {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    cursor: default;
}

.step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #64748b;
    transition: all 0.3s;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.step-indicator.active .step-circle {
    border-color: var(--primary);
    background: white;
    color: var(--primary);
    box-shadow: 0 0 0 4px #dcfce7;
    transform: scale(1.1);
}

.step-indicator.completed .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}

@media (min-width: 600px) {
    .step-label {
        display: block;
    }
}

/* Form Section Card */
.form-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* More definition */
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.section-title i {
    width: 36px;
    height: 36px;
    background: #dcfce7;
    color: var(--primary-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Form Inputs - Enhanced Visibility */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700; /* Bolder for readability */
    color: #334155; /* Darker grey */
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #cbd5e1; /* Stronger border */
    border-radius: 12px;
    font-size: 16px;
    background: #ffffff;
    color: #0f172a; /* Dark text */
    transition: all 0.2s ease;
    appearance: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* Subtle lift */
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15); /* Focus ring */
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

/* Custom Select Arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

/* Chips / Checkboxes */
.chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
}

.chip-label {
    position: relative;
}

.chip-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 12px;
    background: #f8fafc; /* Light bg */
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
    color: #475569;
    height: 100%;
}

.chip-content i {
    font-size: 24px;
    color: #94a3b8;
    transition: color 0.2s;
    margin-bottom: 5px;
}

.chip-label input:checked + .chip-content {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
    transform: translateY(-2px);
}

.chip-label input:checked + .chip-content i {
    color: var(--primary);
}

/* File Upload */
.file-upload-box {
    border: 2px dashed #cbd5e1;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.file-upload-box:hover {
    border-color: var(--primary);
    background: #f0fdf4;
}

.file-input {
    padding: 12px;
    background: #f1f5f9;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    width: 100%;
    font-size: 14px;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.btn-nav {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-size: 16px;
    flex: 1;
}

.btn-prev {
    background: #e2e8f0;
    color: #475569;
}

.btn-prev:hover {
    background: #cbd5e1;
    color: #1e293b;
}

.btn-next {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-next:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Actions */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.5);
}

/* Error/Success Messages */
.msg {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.msg.success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.msg.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* Inline Validation Errors */
.error-text {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 600;
    display: none;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

input.invalid, select.invalid, textarea.invalid {
    border-color: #ef4444;
    background: #fef2f2;
}

input.invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

/* Mobile Adjustments */
@media (max-width: 650px) {
    .container { padding: 0; margin-top: 0; }
    
    .form-section {
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 20px 20px 0;
        margin-bottom: 20px;
    }
    
    .input-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stepper-wrapper {
        position: sticky;
        top: 60px; /* Adjust based on header */
        background: #fff;
        z-index: 99;
        padding: 15px 20px;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 0;
    }
    
    .nav-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px 20px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        z-index: 100;
        margin: 0;
        border-top: 1px solid #f1f5f9;
    }

    body {
        padding-bottom: 90px;
    }
}
