@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --bg-1: #071228;
  --bg-2: #071b34;
  --card: rgba(255, 255, 255, 0.03);
  --accent: #2fb6ff;
  --accent-2: #6a5cff;
  --glass: rgba(255, 255, 255, 0.03);
  --muted: #fff;
  --primary-color: #fff7f7;
  --secondary-color: #2c3e50;
  --gradient-start: #667eea;
  --gradient-end: #764ba2;
  --profile-border: #fff;
  --plainclr: #fff;
  --profile-shadow: rgba(52, 152, 219, 0.5);
  --nav-color: #ecf0f1;
  --nav-bg-end: #34495e;
  --nav-bg-start: #2c3e50;
  --subtitle-color: #4f6d7a;
  --designation-color: #1b4965;
  --section-bg: #fff d9;
  --button-bg: linear-gradient(135deg, #1d976c 0%, #2ec47d 100%);
  --info-icon-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --social-linkedin: #0077b5;
  --social-twitter: #1da1f2;
  --social-github: #000;
  --social-email: #ea4335;
  --info-row-bg: #f8f9fa;
  --info-row-hover-bg: #e9ecef;
  --service-card-border: #ecf0f1;
  --active-tab-color: #3498db;
  --text-color-primary: #2c3e50;
  --text-color-secondary: #7f8c8d;
  --text-color-light: #ecf0f1;
  --hover-bg: rgba(255, 255, 255, 0.1);
  --card-shadow: rgba(0, 0, 0, 0.3);
  --border-color: #ddd;
  --success-color: #2ed573;
  --danger-gradient: linear-gradient(135deg, #ff6b6b, #ff4757);
  --modal-bg: #45586b;
  --skill-badge-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bgcolor: #0e2146;
  --textcolor: #202020;
  --primaryfont: "Inter", sans-serif;
}

/* Glassmorphism Mixin */
.visit-sec-1 {
  height: 100%;
  width: 100%;
  background: #0e2146;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--primaryfont);
  color: var(--textclor);
  margin: 0;
  padding: 60px 0px;
}

/* Page container */
.page-wrap {
  max-width: 980px;
  margin: 0 auto;
}

/* Card style */
.glass-card {
  backdrop-filter: blur(10px) saturate(200%);
  -webkit-backdrop-filter: blur(10px) saturate(200%);
  background-color: rgba(14, 33, 70, 0.9);
  border-radius: 12px;
  border: 4px solid rgba(255, 255, 255, 0.125);
  color: #fff;
}

/* Profile header card */
.profile-card {
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Card hover animation */
.animate-hover {
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center bottom;
}
.animate-hover:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.profile-top {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  height: 130px;
  padding: 15px;
  border-radius: 0px 0px 10px 10px;
  position: relative;
  border-bottom: 4px solid #fff;
}
.profile-top .avatar {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid rgb(255, 255, 255);
  margin-top: 25px;
}
.profile-top .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.profile-body {
  padding: 15px;
  margin-top: 40px;
}
.profile-body .profile-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.profile-body .profile-title {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.profile-body .meta-pill {
  margin-top: 14px;
  padding: 8px;
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  background-color: rgba(255, 255, 255, 0);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .profile-body .meta-pill {
    justify-content: center;
  }
}
.profile-body .meta-pill .qr-code {
  width: 120px;
  height: 120px;
}
.profile-body .meta-pill .qr-code img,
.profile-body .meta-pill .qr-code svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .profile-body .meta-pill .qr-code {
    margin-bottom: 10px;
  }
}
.profile-body .meta-pill .social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.profile-body .meta-pill .social-icons .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--plainclr);
  background-color: #314460;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 8px 16px rgba(58, 57, 57, 0.2);
}
.profile-body .meta-pill .social-icons .social-icon:hover {
  transform: translateY(-6px) scale(1.1);
  filter: brightness(1.15);
}

.profile-footer {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.125);
}

.action-row .btn {
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  box-shadow: none;
}

.form-control-dark {
  background: #344a66;
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #eaf6ff;
}
.form-control-dark:focus {
  background: #344a66;
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #eaf6ff;
}
.form-control-dark::-moz-placeholder {
  color: #fff;
}
.form-control-dark::placeholder {
  color: #fff;
}

.section-title {
  font-size: 18px;
  color: #cfeeff;
  font-weight: 700;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

/* grid for some sections */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .page-wrap {
    padding: 0 8px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .profile-card {
    max-width: 100%;
  }
}
.stat {
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
  max-width: 190px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

/* Gallery image */
.gallery-img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* CTA button */
.btn-accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  border: 0;
  box-shadow: 0 6px 18px rgba(55, 110, 220, 0.12);
}

.card-spacing {
  margin-top: 28px;
  padding: 15px;
}

/* subtle decorative separators */
/* small icon buttons on right (floating) */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.float-actions .btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Advanced Hover Animation */
.advanced-hover {
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
  transform-origin: center bottom;
  opacity: 0.95;
}
.advanced-hover:hover {
  transform: translateY(-20px) scale(1.07);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  opacity: 1;
  animation: bounceUp 0.5s ease forwards;
}
.advanced-hover:active {
  transform: translateY(-10px) scale(1.03);
}

/* Subtle bounce effect */
@keyframes bounceUp {
  0% {
    transform: translateY(-20px) scale(1.07);
  }
  50% {
    transform: translateY(-25px) scale(1.08);
  }
  100% {
    transform: translateY(-20px) scale(1.07);
  }
}
/* Optional: smooth tap effect */
/* Smooth & natural hover animation */
.smooth-hover {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center bottom;
}
.smooth-hover:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Hover animation class for any button */
.hover-animate {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-animate:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.float_buttons {
  position: fixed;
  right: 25px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#settingsBtn {
  background: var(--active-tab-color);
  color: var(--plainclr);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
#settingsBtn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

#appointmentBtn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--danger-gradient);
  color: var(--plainclr);
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

#backTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--button-bg);
  color: var(--plainclr) !important;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

#appointmentBtn:hover,
#backTop:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.appointment-form {
  position: fixed;
  top: 50%;
  right: -500px;
  height: 300px;
  overflow: auto !important;
  transform: translateY(-50%);
  width: 400px;
  max-width: 90%;
  background: var(--plainclr);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
  padding-top: 25px;
  transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
}
.appointment-form.open {
  right: 20px;
  animation: bounceIn 0.8s ease forwards;
}

@keyframes bounceIn {
  0% {
    transform: translateY(-60%) scale(0.5);
    opacity: 0;
  }
  60% {
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
  }
  80% {
    transform: translateY(-50%) scale(0.95);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 25px;
}
.form-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  color: #333;
}
.form-header #closeForm {
  font-size: 26px;
  cursor: pointer;
  color: #ff6b6b;
  transition: color 0.3s;
}
.form-header #closeForm:hover {
  color: #ff4757;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input {
  width: 100%;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}
.form-group textarea {
  width: 100%;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f9f9f9;
  resize: vertical;
  min-height: 70px;
}
.form-group label {
  position: absolute;
  top: -24px;
  left: 21px;
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.3s ease;
}
.form-group input:not(:-moz-placeholder) + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #ff6b6b;
  background: var(--text-color-light);
  padding: 0 4px;
}
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #ff6b6b;
  background: var(--text-color-light);
  padding: 0 4px;
}
.form-group textarea:not(:-moz-placeholder) + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #ff6b6b;
  background: var(--text-color-light);
  padding: 0 4px;
}
.form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #ff6b6b;
  background: var(--text-color-light);
  padding: 0 4px;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: var(--danger-gradient);
  color: var(--plainclr);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

.toast-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success-color);
  color: var(--plainclr);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, bottom 0.4s;
  z-index: 10000;
}
.toast-notification.show {
  opacity: 1;
  bottom: 40px;
}

@media (max-width: 768px) {
  .appointment-form {
    width: 320px;
  }
}
@media (max-width: 480px) {
  #appointmentBtn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .appointment-form {
    width: 90%;
    padding: 20px;
  }
}
.settings-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 300px;
  height: 100%;
  background-color: #45586b !important;
  color: #fff !important;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
  font-family: Arial, sans-serif;
}
.settings-panel.open {
  right: 0;
}

.settings-header {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.settings-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
}

.settings-footer {
  padding: 1rem;
  border-top: 1px solid #ddd;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.close-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.custom-theme-select input {
  width: 100px;
  height: 50px;
}

.theme-base {
  width: 100px;
  height: 60px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid var(--text-color-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.theme-base:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.theme-base.active {
  border-color: gold;
  box-shadow: 0 0 10px gold;
}

.glass-card .p-3 {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.list-unstyled li {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

@media (min-width: 768px) and (max-width: 890px) {
  .list-unstyled li i {
    height: 50px;
  }
}
.base-1 {
  background: #3498db;
}

.base-2 {
  background: linear-gradient(135deg, #8e44ad, #9b59b6, #be93d4);
}

.base-3 {
  background: #16a085;
}

.base-4 {
  background: #1a0000;
}/*# sourceMappingURL=visting-card1.css.map */