/* =======================
   GLOBAL
======================= */
:root {
  --accent: #1f7a8c;
  --accent-light: #6fbfd1;
  --accent-dark: #0b3954;
}

body {
  margin: 0;
  padding-top: 120px;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;

  background: linear-gradient(
    135deg,
    #eaf3ff 0%,
    #d6e9ff 50%,
    #c3ddff 100%
  );

  background-attachment: fixed;
  min-height: 100vh;
  color: var(--accent-dark);
  overflow-x: hidden;
}

/* =======================
   FIXED NAVIGATION (GLASS)
======================= */
.nav-menu {
  position: fixed;
  top: 1rem;
  right: 2rem;
  display: flex;
  gap: 1.2rem;
  z-index: 10000;
}

.nav-link {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: var(--accent-dark);
  font-weight: bold;

  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.6rem 1.2rem;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-link:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(111, 191, 209, 0.6);
}

/* =======================
   HERO
======================= */
.hero-title {
  position: absolute;

  /* MOVE DOWN */
  top: 4.5rem;

  /* ALIGN WITH ABOUT SECTION */
  margin-left: 135px;

  max-width: 760px;
}


.name-title {
  font-size: 3.7rem;
  color: var(--accent-dark);
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* DESIGNATION — MORE ATTRACTIVE */
.subtitle {
  font-size: 1.15rem;
  margin-top: 0.45rem;
  color: #134e6f;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* =======================
   LOGO
======================= */
.logo-small {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  width: 42px;
  opacity: 0.9;
}

/* =======================
   PROFILE / DP
======================= */
.profile-container {
  position: absolute;
  top: 4.5rem;
  right: 3.5rem;
  transform: scale(0.9);
  z-index: 50;
}

.neon-ring {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  border: 3px solid var(--accent-light);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 18px rgba(111, 191, 209, 0.6);
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  cursor: pointer;
}

/* =======================
   ZOOM OVERLAY
======================= */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.zoom-overlay.active {
  opacity: 1;
  visibility: visible;
}

.zoomed-pic {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 3px solid var(--accent-light);
  box-shadow: 0 0 40px rgba(111, 191, 209, 0.8);
}

/* =======================
   ABOUT (GLASS)
======================= */
.about-section {
  margin-top: 150px;
  margin-left: 70px; /* moves it up */
}


.about-container {
  max-width: 960px;
  margin: auto;

  padding: 3.5rem 3.2rem;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 26px; /* softer rounded edges */
  border: 1px solid rgba(255, 255, 255, 0.5);

  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.18);
}

.about-container p {
  font-size: 1.18rem;   /* increased from ~1.05 */
  line-height: 1.75;    /* better readability */
  margin-bottom: 1.4rem;
  color: #0b3954;
}
.about-container p:first-of-type {
  font-size: 1.28rem;
  font-weight: 700;
  color: #134e6f;
}

.section-title {
  font-size: 2.1rem;
  color: var(--accent-dark);
  border-left: 4px solid var(--accent);
  padding-left: 0.8rem;
  margin-bottom: 1.4rem;
}


.highlight {
  color: var(--accent);
}

/* =======================
   SERVICES (GLASS)
======================= */
.services-section {
  padding: 6rem 3rem;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.service-box {
  padding: 2.8rem;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.box-title {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

/* SERVICE GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.8rem;
}

/* SERVICE CARD (GLASS TILE) */
.service-item {
  cursor: pointer;
  padding: 1.8rem 1.4rem;
  border-radius: 18px;
  text-align: center;

  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.service-item img {
  width: 72px;
  margin-bottom: 1rem;
}

.service-item h4 {
  font-size: 1rem;
  color: var(--accent-dark);
}

/* =======================
   ENQUIRY SECTION (GLASS)
======================= */
.enquiry-section {
  padding: 6rem 3rem;
  display: flex;
  justify-content: center;
}

.enquiry-box {
  max-width: 900px;
  padding: 4rem 3.5rem;
  text-align: center;

  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.enquiry-title {
  font-size: 2rem;
  color: var(--accent-dark);
}

.enquiry-text {
  font-size: 1.1rem;
  margin: 2rem 0;
}

/* =======================
   CONNECT ME (HOVER GROW)
======================= */
/* =======================
   CONNECT ME – APPLE STYLE
======================= */

.social-dock {
  position: fixed;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1.8rem; /* <-- APP-LIKE SPACING */
}


/* Title */
.connect-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #0b3954;
  margin-bottom: 0.6rem;
}

/* Icon Glass Pill */
.dock-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 24px rgba(0,0,0,0.16),
    inset 0 1px 1px rgba(255,255,255,0.6);

  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.dock-icon {
  margin-bottom: 18px;   /* REAL visible space */
}

/* Icon */
.dock-icon img {
  width: 22px;
  height: 22px;

  /* Dark blue Apple-style tint */
  filter: brightness(0) saturate(100%)
          invert(15%) sepia(22%)
          saturate(620%) hue-rotate(165deg)
          brightness(92%) contrast(96%);
}

/* Hover – subtle lift */
.dock-icon:hover {
  transform: translateY(-3px) scale(1.08);
  background: rgba(255,255,255,0.45);
}



/* Prevent overlap with Connect Me dock */
.services-section,
.products-section {
  padding-right: 6.5rem; /* creates space for connect dock */
}
section {
  padding-right: 6.5rem;
}
/* =======================
   APP NAME ON HOVER
======================= */

.dock-icon {
  position: relative;
}

/* Label */
.dock-icon::before {
  content: attr(data-label);
  position: absolute;
  right: 62px; /* space from icon */
  top: 50%;
  transform: translateY(-50%) translateX(6px);

  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;

  color: #0b3954;

  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.5);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.18),
    inset 0 1px 1px rgba(255,255,255,0.6);

  opacity: 0;
  pointer-events: none;

  transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

/* Show on hover */
.dock-icon:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
/* =======================
   ABOUT ME – APPLE FROZEN GLASS
======================= */

.about-section {
  padding-top: 10rem;
}

/* Glass wrapper */
.about-dialog {
  max-width: 1000px;
  margin-left: 4rem;

  padding: 4rem 4.5rem;

  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);

  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.18),
    inset 0 1px 1px rgba(255,255,255,0.7);
}

/* Section heading */
.about-dialog .section-title {
  font-size: 2.0rem;      /* BIGGER */
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: #0b3954;
}

/* Lead paragraph */
.about-lead {
  font-size: 1.25rem;     /* BIGGER */
  line-height: 1.9;
  margin-bottom: 2rem;
  color: #123f5a;
}

/* Body paragraphs */
.about-content p {
  font-size: 1.25rem;      /* BIGGER */
  line-height: 1.9;
  margin-bottom: 1.6rem;
  color: #123f5a;
}

/* Bullet list */
.about-points {
  margin-top: 1.5rem;
  padding-left: 1.4rem;
}

.about-points li {
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 0.7rem;
  color: #0b3954;
}

/* Highlighted spans */
.about-dialog .highlight {
  font-weight: 700;
  color: #0b3954;
}
/* =======================
   GLOBAL INFO PANEL – APPLE GLASS
======================= */

.info-panel-global {
  position: fixed;
  top: 50%;
  right: -420px;
  transform: translateY(-50%);
  width: 360px;

  padding: 2.8rem 2.6rem;

  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);

  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,0.7);

  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 10000;
}

/* Active */
.info-panel-global.active {
  right: 5.8rem; /* sits beside connect dock */
}

/* Close arrow */
.close-panel-global {
  position: absolute;
  top: 1.2rem;
  left: -1.8rem;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.1rem;
  cursor: pointer;

  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* Title */
.info-panel-global h5 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: #0b3954;
}

/* Description */
.info-panel-global p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #123f5a;
  margin-bottom: 2rem;
}

/* Enquire area */
.enquire-area {
  text-align: center;
}

.enquire-btn {
  padding: 0.65rem 1.6rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.6);

  background: rgba(255,255,255,0.6);
  color: #0b3954;
  font-weight: 600;
  cursor: pointer;

  transition: transform 0.25s ease;
}

.enquire-btn:hover {
  transform: scale(1.05);
}

/* Options */
.enquire-options {
  display: none;
  margin-top: 1.4rem;
  gap: 1rem;
}

.enquire-options a {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 12px;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);

  font-size: 0.95rem;
  font-weight: 600;
  color: #0b3954;
  text-decoration: none;
}

/* Show options */
.enquire-options.show {
  display: flex;
  justify-content: center;
}
/* =======================
   FIX: GLOBAL INFO PANEL
======================= */

/* Let JS control position */
.info-panel-global {
  position: fixed;
  top: 0;
  left: 0;

  width: 360px;
  padding: 2.6rem;

  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);

  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,0.7);

  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);

  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(.4,0,.2,1);

  z-index: 10000;
}

.info-panel-global.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* =======================
   ENQUIRE BUTTON – GLASS
======================= */

.enquire-btn {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;

  padding: 0.65rem 1.6rem;
  font-weight: 600;
  cursor: pointer;

  transition: transform 0.25s ease;
}

.enquire-btn:hover {
  transform: scale(1.08);
}

/* =======================
   WHATSAPP / GMAIL – GLASS
======================= */

.enquire-options a {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 12px;

  padding: 0.55rem 1.2rem;
  font-weight: 600;
  text-decoration: none;

  transition: transform 0.25s ease;
}

.enquire-options a:hover {
  transform: scale(1.08);
}
/* Move Connect Me section lower */
.social-dock {
  top: 60%;              /* was 50% */
  transform: translateY(-50%);
}
/* =======================
   ENQUIRY SECTION – POLISHED
======================= */

.enquiry-box {
  padding: 3.5rem 3.5rem;   /* slightly tighter */
}

.enquiry-title {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.enquiry-text {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.4rem;
  color: #123f5a;
}

/* Actions */
.enquiry-actions {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* Glass buttons */
.cta-btn {
  padding: 0.7rem 1.8rem;
  border-radius: 16px;

  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);

  border: 1px solid rgba(255,255,255,0.6);
  color: #0b3954;
  text-decoration: none;
  font-weight: 600;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 1px 1px rgba(255,255,255,0.6);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Primary CTA (WhatsApp) */
.cta-btn.primary {
  background: rgba(255,255,255,0.65);
}

/* Hover */
.cta-btn:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 16px 32px rgba(0,0,0,0.22),
    inset 0 1px 1px rgba(255,255,255,0.7);
}
/* Move Interested section slightly upward */
.enquiry-section {
  margin-top: -3rem;
}
section {
  scroll-margin-top: 0;
}
/* =======================
   GOAL STRUCTURE – GLASS
======================= */

.goal-section {
  padding: 6rem 3rem;
}

.goal-glass {
  max-width: 720px;
  margin: auto;
  padding: 3.5rem 3.5rem;

  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);

  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.18),
    inset 0 1px 1px rgba(255,255,255,0.7);

  text-align: center;
}

.goal-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #123f5a;
}

/* Form */
.goal-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.goal-form input {
  width: 260px;
  padding: 0.7rem 1rem;
  font-size: 1rem;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.6);

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);

  outline: none;
  text-align: center;
}

/* Buttons */
.goal-form button {
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.6);
  color: #0b3954;

  transition: transform 0.25s ease;
}

.goal-form button:hover {
  transform: scale(1.08);
}

/* OTP area */
.otp-area {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
}
/* 🔧 FIX PHONE INPUT VISIBILITY */
#phone {
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  overflow: visible;
  letter-spacing: normal;
}
/* ================= PREMIUM LOGIN CARD ================= */

.premium-login {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow:
    0 30px 60px rgba(11, 57, 84, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-login:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 80px rgba(11, 57, 84, 0.25);
}

.goal-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;

  font-size: 0.85rem;
  font-weight: 600;
  color: #0b3954;

  background: rgba(31, 122, 140, 0.15);
  border-radius: 999px;
}

.goal-form input {
  width: 100%;
  max-width: 420px;

  padding: 14px 18px;
  margin: 20px auto 12px;

  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(11, 57, 84, 0.25);

  background: rgba(255,255,255,0.85);
  outline: none;
}

.goal-form input:focus {
  border-color: #1f7a8c;
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.15);
}



/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
  .premium-login {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .goal-form input {
    font-size: 0.95rem;
  }

  .login-btn {
    width: 100%;
  }
}
.user-type-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  justify-content: center;
}

.user-type-toggle button {
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255,255,255,0.6);
  color: #0b3954;
  transition: all 0.25s ease;
}

.user-type-toggle button.active {
  background: #0b3954;
  color: #fff;
}

.user-type-toggle button:hover {
  transform: translateY(-1px);
}

#existingUserBox {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* GOAL ACTION BUTTONS */
.goal-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap; /* mobile-safe */
}

.glass-btn {
  min-width: 170px;
  padding: 14px 26px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  font-size: 16px;
  font-weight: 600;
  color: #0b3954;

  cursor: pointer;
  transition: all 0.35s ease;
}

/* Primary button (Existing User) */
.glass-btn.primary {
  background: rgba(11, 57, 84, 0.85);
  color: #ffffff;
  border: none;
}

/* Hover animation (iOS-like lift) */
.glass-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.login-btn {
  padding: 14px 35px;
  border-radius: 30px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #1f7a8c, #0b3954);
  color: white;
  font-size: 18px;
  font-weight: bold;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(31, 122, 140, 0.6);
}
.site-footer {
  margin-top: 100px;
  padding: 40px 20px 30px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  color: var(--accent-dark);
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-disclaimer p {
  margin-bottom: 10px;
}

.footer-meta {
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer-copy {
  margin-top: 16px;
  font-size: 0.75rem;
  opacity: 0.7;
}
#desktopOnly {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 45, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
}

.desktop-box {
  background: #ffffff;
  color: #0b3954;
  padding: 30px 26px;
  border-radius: 18px;
  text-align: center;
  max-width: 340px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

.desktop-box h2 {
  margin-bottom: 12px;
}

.desktop-box p {
  font-size: 15px;
  line-height: 1.6;
}

.desktop-box .steps {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.85;
}
/* =======================
   DESKTOP CONFIRM BUTTON
======================= */
.desktop-confirm-btn {
  margin-top: 18px;
  padding: 12px 26px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #0b3954;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;

  cursor: pointer;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.7);

  transition:
    transform 0.25s cubic-bezier(.4,0,.2,1),
    box-shadow 0.25s ease,
    background 0.25s ease;
}

/* Hover (desktop / desktop-site) */
.desktop-confirm-btn:hover {
  transform: translateY(-2px) scale(1.05);

  background: rgba(255, 255, 255, 0.7);

  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Tap feedback (mobile) */
.desktop-confirm-btn:active {
  transform: scale(0.97);
}
/* BRAND (Logo + Tagline) */
.brand-box {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 99999;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-logo {
  width: 90px;
  height: auto;
}

.brand-line {
  width: 90px;
  margin-top: 4px;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #0b3954;

  text-align: center;
}
.reg-bubble {
  display: inline-block;
  margin-top: 1px;
  padding: 12px 28px;

  /* Glass base */
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);

  /* Water bubble shape */
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);

  /* Depth + liquid feel */
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.65),
    inset 0 -1px 2px rgba(255,255,255,0.25),
    0 12px 30px rgba(31, 122, 140, 0.28);

  /* Text */
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.35px;
  color: #0b3954;
}

.subtitle {
  margin-top: 0.35rem;
}
/* ================= CLIENT VIDEO REVIEWS ================= */

.reviews-section {
  padding: 6rem 3rem;
}

.review-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.5rem 0;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.review-card {
  min-width: 280px;
  scroll-snap-align: center;
  cursor: pointer;

  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.45);

  padding: 1rem;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.18),
    inset 0 1px 1px rgba(255,255,255,0.6);

  transition: transform 0.35s ease;
}

.review-card:hover {
  transform: scale(1.05);
}

/* Video preview */
.review-card video {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background: #000;
}

/* Label */
.review-label {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  color: #0b3954;
}

/* ================= MODAL ================= */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 99999;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal video {
  width: min(90vw, 720px);
  max-height: 80vh;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
/* Header + arrows */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.review-nav {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  font-size: 24px;
  font-weight: bold;
  color: #0b3954;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.18),
    inset 0 1px 1px rgba(255,255,255,0.6);

  transition: transform 0.25s ease;
}

.nav-btn:hover {
  transform: scale(1.15);
}

/* Drag hint */
.review-slider {
  cursor: grab;
}

.review-slider:active {
  cursor: grabbing;
}
.review-slider {
  will-change: transform;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.review-slider.dragging {
  scroll-snap-type: none;
}
.review-slider {
  scroll-behavior: smooth;
}
/* =========================
   UNIFORM SERVICE ITEM SIZE
========================= */

.service-item {
  height: 210px;                 /* SAME SIZE FOR ALL */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  box-sizing: border-box;
}

/* ICON CONTAINER (NORMALIZED) */
.service-item img,
.service-item .icon-holder {
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;
}

/* IMAGE NORMALIZATION */
.service-item img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

/* ICON-HOLDER IMAGE FIX */
.service-item .icon-holder img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* TEXT CONSISTENCY */
.service-item h4 {
  font-size: 1rem;
  line-height: 1.3;
  max-width: 120px;
  margin: 0 auto;
}

/* =========================
   MOBILE REFINEMENT
========================= */
@media (max-width: 768px) {
  .service-item {
    height: 190px;   /* slightly smaller on mobile */
  }

  .service-item img,
  .service-item .icon-holder {
    width: 64px;
    height: 64px;
  }

  .service-item img,
  .service-item .icon-holder img {
    max-width: 64px;
    max-height: 64px;
  }
}

.faq-section { padding: 6rem 3rem; }
.faq-glass {
  max-width: 1000px;
  margin: auto;
  padding: 4rem;
  background: rgba(255,255,255,0.38);
  backdrop-filter: blur(26px) saturate(160%);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.55);
}
.faq-category {
  margin-top: 1.6rem;
  padding: 1.2rem 1.6rem;
  background: rgba(255,255,255,0.45);
  border-radius: 18px;
}
.faq-category summary {
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-category summary::after {
  content: "⌄";
  float: right;
}
.faq-category[open] summary::after {
  transform: rotate(180deg);
}
.faq-category p {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
