:root {
  /* Use the lavender/blue suggestion but in a professional glass context */
  --bg-dark: #0f172a;
  --glass-bg: rgba(25, 33, 46, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --accent-blue: #3b82f6; /* Modern Blue */
  --accent-lavender: #a78bfa; /* Modern Lavender */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --success-green: #52b877;
  --danger-red: #ef4444;
}



body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top right, #211e48, #020617);
  color: var(--text-primary);
  text-align: center;
  min-height: auto ;
  overflow-x: hidden;
}

/* Ads */
.ad {
  padding: 25px;
  color: #94a3b8;
  font-size: 13px;
}

/* Center */
.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;   /* 🔥 KEY CHANGE */
  padding: 40px 20px 20px;   /* top spacing controlled */
   padding-top: 20px;  /* reduce more */
}

/* Card */
.card {
  /* Replicate the frosted glass look exactly */
  background: var(--glass-bg);
  backdrop-filter: blur(25px); /* Strong blur */
  -webkit-backdrop-filter: blur(25px);
  padding: 40px 32px;
  border-radius: 36px; /* Smooth corners */
    width: 100%;
  max-width: 350px;
  box-shadow: 0 30px 60px rgba(22, 22, 22, 0.6);
  /* The critical frosted glass edge */
  border: 1px solid var(--glass-border);
}
/* Title */
.title {
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 1px;
}


.subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 23px;
    margin-top: 2px;

}

/* Select */
select {
  padding: 10px;
  border-radius: 10px;
  border: none;
  margin-bottom: 16px;
  width: 70%;
  background: #1e293b;
  color: white;
}



.online {
  font-size: 13px;
  color: var(--accent-blue);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Profile */

.profile {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  position: relative;
  /* Thin glass border */
  border: 2px solid var(--glass-border);
}

.profile span {
  opacity: 0.5;
}



/* Pulse */
.pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(59,130,246,0.4);
  animation: pulse 1.8s infinite;
  display: block; /* Keep it visible but subtle */
  opacity: 0.15;

}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Status */
.status {
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

/* Country */
.country {
  font-size: 12px;
  margin-bottom: 1px;
}

/* Timer */
#timer {
  font-size: 18px;
  color: var(--accent-blue);
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}


/* Buttons */
.controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

button {
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 18px;
  cursor: pointer;

  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Call */
.call {
  background: linear-gradient(
    135deg,
    rgba(34,197,94,0.25),   /* soft green */
    rgba(16,185,129,0.25)   /* teal-green */
  );
  color: #22c55e; /* clean green icon */

  border: 1px solid rgba(34,197,94,0.4);
  backdrop-filter: blur(10px);

  box-shadow: 0 8px 20px rgba(34,197,94,0.15);
}

.call:hover {
  background: linear-gradient(
    135deg,
    rgba(34,197,94,0.4),
    rgba(16,185,129,0.4)
  );

  box-shadow: 0 12px 25px rgba(34,197,94,0.25);
  transform: scale(1.08);
}
/* End */
.end {
background: rgba(236, 105, 105, 0.15);
  color: var(--danger-red);
  border: 1px solid rgba(239, 68, 68, 0.3);}

/* Neutral buttons */
.icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);

}

/* Danger */
.danger {
background: rgba(236, 105, 105, 0.15);
  color: var(--danger-red);
  border: 1px solid rgba(239, 68, 68, 0.3);}


/*             */
.controls button {
  position: relative;
}


/* Checkbox */
.option {
  margin-top: 10px;
  font-size: 13px;
  color: #94a3b8;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
}

.modal-content {
  background: #0f172a;
  padding: 24px;
  border-radius: 16px;
  width: 300px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-content h3 {
  margin-bottom: 8px;
}

.modal-content p {
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.5;
}

/* REPORT MODAL BUTTONS */
.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.modal-buttons button {
  min-width: 120px;           /* medium width */
  padding: 10px 18px;        /* medium size */
  font-size: 15px;           /* clean readable text */
  font-weight: 500;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* REPORT BUTTON */
#confirmReport {
  background: #ef4444 ;
  color: white;
}

#confirmReport:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

/* CANCEL BUTTON */
#cancelReport {
  background: #e5e7eb;
  color: #111827;
}

#cancelReport:hover {
  background: #d1d5db;
  transform: translateY(-1px);
}

.footer {
  margin-top: 20px;
  padding: 15px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

.footer .links {
  margin-top: 8px;
}

.footer a {
  color: #94a3b8;
  margin: 0 8px;
  text-decoration: none;
}

.footer a:hover {
  color: #22c55e;
}

.content {
  font-size: 13px;
  text-align: left;
  color: #cbd5f5;
  line-height: 1.6;
}
/* POLICY PAGE STYLING */
.policy-page {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  line-height: 1.8;
  color: #e2e8f0;
  text-align: left;   /* ✅ THIS FIXES EVERYTHING */
}
/**/
.policy-page h1 {
  text-align: left;
}

.policy-page h3 {
  text-align: left;
}

.policy-page p {
  font-size: 14px;
  color: #cbd5f5;
}

.updated {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 25px;
}

.back-btn {
  display: inline-block;
  margin-top: 40px;
  text-decoration: none;
  color: #e2e8f0;
  font-size: 14px;
}

.back-btn:hover {
  text-decoration: underline;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 600px) {

  .card {
    width: 100%;
    padding: 25px 20px;
    border-radius: 20px;
  }

  .container {
    padding: 10px;
  }

  .profile {
    width: 90px;
    height: 90px;
    font-size: 35px;
  }

  button {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .controls {
    gap: 10px;
  }

  select {
    width: 100%;
  }

}

/* FEATURES SECTION */
.features {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  flex-wrap: wrap;
}

/* CARD STYLE */
.feature-card {
  background: rgba(25, 33, 46, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 25px;
  width: 280px;
  color: white;
  text-align: left;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* ================= TEXT SECTION ================= */
.seo-content {
  padding: 20px;
  text-align: left;       /* FIXED */
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
}

/* LIST */
.seo-content ul {
  margin-top: 10px;
  padding-left: 20px;
}

.seo-content li {
  margin-bottom: 8px;
}

/* MOBILE TEXT */
@media (max-width: 768px) {
  .seo-content {
    padding: 15px;
  }
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonials {
  padding: 60px 0;
  text-align: center;   /* title centered */
}

/* WRAPPER */
.slider-wrapper {
  max-width: 900px;
  margin: auto;
  overflow: hidden;
   width: 100%;    
}

/* TRACK */
.testimonial-container {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

/* CARD (3 CARDS EXACT) */
.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);  /* FIXED GAP CALC */
  
  background: rgba(25, 33, 46, 0.6);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  transition: 0.3s;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-6px);
}

/* TEXT */
.testimonial-card p {
  font-size: 13px;
  color: #cbd5f5;
}

/* STARS */
.stars {
  color: gold;
  margin-bottom: 10px;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  .testimonial-card {
    flex: 0 0 100%;   /* 1 card on mobile */
  }

  .slider-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }

}
.logo {
  width: 22px;
  height: 22px;
  margin-right: -8px;
  position: relative;
  top: -10.5px;
}