@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary-color: rgb(255, 247, 247);
  --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: #ffffffd9;
  --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: #000000;
  --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%);
}

.visit-sec-5 {
  font-family: "Urbanist", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes popFade {
  0% {
    transform: scale(0.3) rotate(-10deg);
    opacity: 0;
  }
  40% {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
  }
  70% {
    transform: scale(0.95) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.card-container {
  background: var(--primary-color);
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--card-shadow);
  overflow: hidden;
  max-width: 850px;
  width: 100%;
  display: flex;
  animation: bounceIn 1s ease-out;
  min-height: 630px;
}

.nav-sidebar {
  background: linear-gradient(180deg, var(--nav-bg-start) 0%, var(--nav-bg-end) 100%);
  width: 200px;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-tab {
  color: var(--nav-color);
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-tab i {
  transition: transform 0.5s ease;
}

.nav-tab:hover i {
  transform: rotate(360deg) scale(1.1);
}

.nav-tab:hover {
  background: var(--hover-bg);
  border-left-color: var(--active-tab-color);
}

.nav-tab.active {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: var(--active-tab-color);
  color: var(--plainclr);
}

.content-area {
  flex: 1;
  padding: 40px;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

@media (max-width: 992px) {
  .content-area {
    overflow-y: auto;
  }
}
.section {
  position: absolute;
  top: 40px;
  left: -120%;
  width: calc(100% - 80px);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.section.active {
  left: 40px;
  opacity: 1;
  transform: scale(1);
}

#profile {
  background: rgba(255, 255, 255, 0.18);
  padding: 25px;
  border-radius: 25px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}

.profile-photo {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid var(--profile-border);
  box-shadow: 0 10px 35px var(--profile-shadow);
  animation: float 4s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.designation {
  color: var(--designation-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 15px;
}

.subtitle {
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  color: var(--subtitle-color);
}

.qr-code {
  width: 140px;
  height: 140px;
  margin: 22px auto;
  border-radius: 14px;
  padding: 8px;
  background: var(--section-bg);
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.15);
}

.download-btn {
  background: var(--button-bg);
  color: var(--plainclr);
  padding: 12px 35px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(29, 151, 108, 0.3);
}

.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--plainclr);
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: translateY(-6px) scale(1.1);
  filter: brightness(1.15);
}

.social-icon.linkedin {
  background: var(--social-linkedin);
}

.social-icon.twitter {
  background: var(--social-twitter);
}

.social-icon.github {
  background: var(--social-github);
}

.social-icon.email {
  background: var(--social-email);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-heading {
  margin-bottom: 30px;
  color: var(--text-color-primary);
}

.info-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  margin: 10px 0;
  background: var(--info-row-bg);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-row:hover {
  background: var(--info-row-hover-bg);
  transform: translateX(5px);
  color: #000000 !important;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--info-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plainclr);
}

.info-text {
  flex: 1;
}

.info-label {
  font-size: 12px;
  color: var(--text-color-secondary);
  margin-bottom: 3px;
}

.info-value {
  font-size: 16px;
  color: var(--text-color-primary);
  font-weight: 500;
}

.service-card {
  background: var(--plainclr);
  border: 2px solid var(--service-card-border);
  border-radius: 15px;
  padding: 25px;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--active-tab-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#services .service-icon {
  color: var(--active-tab-color);
  margin-right: 10px;
}

#about .about-paragraph {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.skills-container {
  background: var(--info-row-bg);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.skills-heading {
  color: var(--text-color-primary);
  margin-bottom: 15px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-badge {
  background: var(--skill-badge-bg);
  color: var(--plainclr);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color-primary);
  margin-bottom: 10px;
}

.service-desc {
  color: var(--text-color-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
  }
  .nav-sidebar {
    width: 100%;
    flex-direction: row;
    padding: 15px;
    overflow-x: auto;
    gap: 5px;
  }
  .nav-tab {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  .nav-tab:hover,
  .nav-tab.active {
    border-left: none;
    border-bottom-color: var(--active-tab-color);
  }
  .content-area {
    padding: 20px;
  }
  .section {
    width: calc(100% - 40px);
  }
  .section.active {
    left: 20px;
  }
}
#appointment h2 {
  margin-bottom: 25px;
  color: var(--text-color-primary);
  font-weight: 700;
}

#appointment p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.appointment-box {
  background: var(--info-row-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.appointment-input {
  flex: 1 1 48%;
  height: 45px;
  border-radius: 10px !important;
  border: 1px solid var(--border-color);
}

.appointment-textarea {
  margin-top: 12px;
  border-radius: 10px !important;
  border: 1px solid var(--border-color);
  resize: none;
}

.appointment-btn {
  width: 100%;
  margin-top: 15px;
  height: 48px;
  background: var(--info-icon-bg);
  color: var(--plainclr);
  font-weight: 600;
  border-radius: 10px;
  border: none;
  transition: 0.35s ease;
}

.appointment-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .appointment-input {
    flex: 1 1 100%;
  }
}
.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;
}

.modal .modal-content {
  background-color: var(--modal-bg) !important;
  color: var(--text-color-light) !important;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-header .btn-close:focus {
  box-shadow: none !important;
}

.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 {
  transform: scale(1.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

#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,
.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;
}

.form-group textarea {
  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, .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 input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.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;
}

.base-1 {
  background: #3498db;
}

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

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

.base-4 {
  background: #2c3e50;
}/*# sourceMappingURL=visting-card5.css.map */