body {
    /* font-family: Arial, sans-serif; */
    font-family: "Inter", serif;
    margin: 0;                       /* Removes default margin */
    padding: 20px;                   /* Adds padding for content spacing */
    display: flex;
    justify-content: center;
    flex-direction: column;          /* Allows vertical stacking of content */
    background-image: url('1.jpg');  /* Replace with your image path */
    background-size: cover;          /* Ensures the image covers the entire page */
    background-repeat: no-repeat;    /* Prevents the image from repeating */
    background-position: center;     /* Centers the image */
    background-attachment: fixed;    /* Keeps the background image fixed while scrolling */
    min-height: 100vh;               /* Allows the body to expand with content */
    overflow-y: auto;                /* Enables vertical scrolling */
    position: relative;
}
body::after{
    content:"";
    display: block;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 253, 253, .9);
    z-index: -1;
}


h1, h2 {
    color: #333;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-height: 100%;
    height: auto;
    overflow-y: auto;
}

.form-column {
    flex: 1;
    margin-right: 20px;
}

.playground-column {
    flex: 1;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tabs button {
    padding: 10px 20px;
    background-color: #008CBA;
    color: white;
    border: none;
    cursor: pointer;
}

.tabs button:hover {
    background-color: #007bb5;
}

.form-section {
    display: none;
    margin-bottom: 20px;
}

.form-section.active {
    display: block;
}

input {
    display: block;
    margin: 10px 0;
    padding: 8px;
    width: 100%;
    width: 100%;
}
textarea{
    width: 100%;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;

}

button:hover {
    background-color: #0056b3;
}

.navigation {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.navigation button {
    padding: 10px 20px;
    background-color: #008CBA;
    color: white;
    border: none;
    cursor: pointer;
}

.navigation button:hover {
    background-color: #908f90;
}

.playground {
    margin-top: 20px;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
}
.remove-btn{
    background-color: red;
    width: 120px;
    margin-top: 10px;
}
.generate-btnn{
    background-color: #008080;
    width: 120px;
}
.generate-btnn:hover{
    background-color: #034444;
}
.generate-button{
    background-color: #008080;
}
.create-profile{
    background-color: #008080;
}
.history-box {
    height: 600px;               /* Fixed height for the history box */
    overflow-y: auto;            /* Enable vertical scrolling */
    border: 1px solid #ccc;
    padding: 20px;               /* Added more padding for spacing around the content */
    background-color: #f9f9f9;
    border-radius: 8px;
    width: 100%;                 /* Ensures the box takes up full available width */
    box-sizing: border-box;      /* Include padding in width calculation */
    margin-top: 20px;            /* Adds margin at the top of the history box */
}

/* Individual History Item Styling */
.history-item {
    margin-bottom: 25px;         /* Space between history items */
}

/* History Card Styling */
.history-card {
    padding: 25px;               /* Increased padding for more space around content */
    background-color: #e6e6e6;   /* Light gray background for cards */
    border-radius: 12px;         /* Rounded corners for cards */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Stronger shadow for better contrast */
    width: 100%;                 /* Make card occupy full width of container */
    box-sizing: border-box;      /* Include padding and border in width calculation */
    min-height: 250px;           /* Minimum height for the cards */
}

/* Textarea for History Content */
.history-text {
    width: 100%;                 /* Full width within the card */
    height: 250px;               /* Increased height for larger content display */
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    border-radius: 5px;
    resize: none;                /* Disable resizing */
    font-size: 14px;
    line-height: 1.5;
    overflow-y: auto;            /* Enable scrolling for overflow content */
}

/* Styling for tabs */
.tabs {
    display: flex;
    gap: 10px;
}

.tab {
    padding: 10px 20px;
    background-color: white; /* Default tab background color */
    color: black;            /* Default text color */
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* Active tab styling */
.tab.active {
    background-color: green; /* Background color when clicked */
    color: white;           /* Text color when clicked */
}

/* Optional hover effect */
.tab:hover {
    background-color: green;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", serif;
}

/* Container for the main layout */
.container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    padding: 20px;
    max-width: 100%;
    margin: auto;
}

/* Sidebar for form sections */
.form-container {
    flex: 1;
    width: 1000px   ;
}

/* Tabs for switching sections */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    padding: 10px;
    cursor: pointer;
    background-color: #e0e0e0;
    border-radius: 5px;
}

.tab.active {
    background-color: #b50000;
    color: white;
}

/* Form sections */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

/* Input fields and labels */
.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    margin-bottom: 15px;
}

label {
    font-weight: bold;
}

input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.generate-btn {
    padding: 10px;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
.generate-btn:hover{
    background-color: #034444;

}

/* Navigation buttons */
.navigation-buttons {   
    display: flex;
    gap: 80%;
    margin-top: 20px;
}

.navigation-buttons button {
    padding: 10px;
    background-color: #000312;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Generated content (output box) on the right */
.output-container {
    flex: 1;
    max-width: 35%;
    display: flex;
    flex-direction: column;
}

.generated-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 10px 0px 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contentText {
    width: 100%;
    height: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
}


/* Progress Bar Styles */
.progress-bar-cus-container {
    width: 100%;
    background-color: #b2acac;
    border-radius: 5px;
    margin-bottom: 10px;
    height: 10px;
}

.progress-bar-cus {
    height: 100%;
    background-color: #008080;
    width: 0;
    border-radius: 5px;
    transition: width 0.3s ease;
}

/* Tab Styling */
.tabs {
    display: flex;
    margin-bottom: 10px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f1f1f1;
    margin-right: 5px;
    border-radius: 5px;
}

.tab.active {
    background-color: #008080;
    color: white;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}
/* #loader {
    display: none;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background-color: #333;
    padding: 10px;
    margin: 20px auto;
    width: 150px;
    border-radius: 5px;
} */

/* Profile Section Styling */
.profile-box {
    height: 600px;               /* Fixed height for the profile box */
    overflow-y: auto;            /* Enable vertical scrolling */
    border: 1px solid #ccc;
    padding: 20px;               /* Added more padding for spacing around the content */
    background-color: #f9f9f9;
    border-radius: 8px;
    width: 100%;                 /* Ensures the box takes up full available width */
    box-sizing: border-box;      /* Include padding in width calculation */
    margin-top: 20px;            /* Adds margin at the top of the profile box */
}

/* Individual Profile Item Styling */
.profile-item {
    margin-bottom: 25px;         /* Space between profile items */
}

/* Profile Card Styling */
.profile-card {
    padding: 25px;               /* Increased padding for more space around content */
    background-color: #e6e6e6;   /* Light gray background for cards */
    border-radius: 12px;         /* Rounded corners for cards */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Stronger shadow for better contrast */
    width: 100%;                 /* Make card occupy full width of container */
    box-sizing: border-box;      /* Include padding and border in width calculation */
    min-height: 250px;           /* Minimum height for the cards */
}

/* Textarea for Profile Content */
.profile-text {
    width: 100%;                 /* Full width within the card */
    height: 250px;               /* Increased height for larger content display */
    padding: 15px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    border-radius: 5px;
    resize: none;                /* Disable resizing */
    font-size: 14px;
    line-height: 1.5;
    overflow-y: auto;            
}


.profile-pic {
    text-align: center;
    margin-bottom: 20px;
}
.masthead-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin-bottom: 15px;
}
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 5px;
    right: 45px;
    background-color: #000000;
    padding: 10px;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}
.action-buttons button {
    padding: 0;
    border: none;
    outline: none;
}
.action-buttons i {
    font-size: 20px;
    color: #ffffff;
}

.btn {
    padding: 8px 12px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.btn:hover {
    background-color: #0056b3;
}
#file-input {
    display: none;
}


#addSpecialtyBtn, #addSpecialty1Btn , #addSpecialty2Btn{
    position: relative;
    margin-top: 8px;
    width: 45%;
    margin-left: 15%;
}
#addSpecialtyBtn,
#addSpecialty1Btn{
    position: relative;
    margin-top: 8px;
    width: 45%;
    margin-left: 15%;
    bottom: 77px;
    right: -315px;
    margin-bottom: -50px;
}
#addSpecialtyBtn:hover,
#addSpecialty1Btn:hover{
    background-color: #034444;
}
.qualification-input-set select {
    clear: both;
    width: 100%;
    height: 41px;
}
.qualification-input-set label {
    width: 100%;
}




#loader-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 45, 45, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(5px); /* Blurred effect */
    display: none; /* Hidden by default */
    align-items: center; /* Center loader vertically */
    justify-content: center; /* Center loader horizontally */
    z-index: 9999; /* Ensure it is on top of other elements */
  }

  /* Loader spinner */
  .ip {
    width: 16em;
    height: 8em;
  }

  .ip__track {
    stroke: hsl(var(--hue), 90%, 90%);
    transition: stroke 0.3s ease;
  }

  .ip__worm1, .ip__worm2 {
    animation: worm1 2s linear infinite;
  }

  .ip__worm2 {
    animation-name: worm2;
  }

  /* Dark theme */
  @media (prefers-color-scheme: dark) {
    :root {
      --bg: hsl(var(--hue), 90%, 5%);
      --fg: hsl(var(--hue), 90%, 95%);
    }

    .ip__track {
      stroke: hsl(var(--hue), 90%, 15%);
    }
  }

  
  body {
      background-color: var(--bg);
      color: var(--fg);
      font: 1em/1.5 sans-serif;
      height: 100vh;
      display: grid;
      place-items: center;
      transition: background-color var(--trans-dur);
  }
  main {
      padding: 1.5em 0;
  }
  .ip {
      width: 16em;
      height: 8em;
  }
  .ip__track {
      stroke: hsl(var(--hue), 90%, 90%);
      transition: stroke var(--trans-dur);
  }

  /* Moving dot animation */
  .moving-dot {
      animation: moveDot 1s linear infinite;
  }

  @keyframes moveDot {
      from {
          offset-distance: 0%;
      }
      to {
          offset-distance: 100%;
      }
  }

  #loader-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 45, 45, 0.5); /* Semi-transparent background */
    backdrop-filter: blur(5px); /* Blurred effect */
    display: none; /* Hidden by default */
    align-items: center; /* Center loader vertically */
    justify-content: center; /* Center loader horizontally */
    z-index: 9999; /* Ensure it is on top of other elements */
  }

  /* Loader spinner */
  .ip {
    width: 16em;
    height: 8em;
  }

  .ip__track {
    stroke: hsl(var(--hue), 90%, 90%);
    transition: stroke 0.3s ease;
  }

  .ip__worm1, .ip__worm2 {
    animation: worm1 2s linear infinite;
  }

  .ip__worm2 {
    animation-name: worm2;
  }

  /* Dark theme */
  @media (prefers-color-scheme: dark) {
    :root {
      --bg: hsl(var(--hue), 90%, 5%);
      --fg: hsl(var(--hue), 90%, 95%);
    }

    .ip__track {
      stroke: hsl(var(--hue), 90%, 15%);
    }
  }

 
  body {
      background-color: var(--bg);
      color: var(--fg);
      font: 1em/1.5 sans-serif;
      height: 100vh;
      display: grid;
      place-items: center;
      transition: background-color var(--trans-dur);
  }
  main {
      padding: 1.5em 0;
  }
  .ip {
      width: 16em;
      height: 8em;
  }
  .ip__track {
      stroke: hsl(var(--hue), 90%, 90%);
      transition: stroke var(--trans-dur);
  }

  /* Moving dot animation */
  .moving-dot {
      animation: moveDot 1s linear infinite;
  }

  @keyframes moveDot {
      from {
          offset-distance: 0%;
      }
      to {
          offset-distance: 100%;
      }
  }

   /* Full-screen blurred background */
   .progress-container {
    width: 100%;
    margin: 40px auto;
    position: relative;
}

.progress-bar-cus {
    background-color: #ddd;
    height: 5px;
    width: 100%;
    position: relative;
}

.progresscustom {
    background-color: #008080    ;
    height: 100%;
    width: 0%;
    transition: width 0.4s ease;
}

.step-dotcus {
    position: absolute;
    top: -8px;
    width: 20px;
    height: 20px;
    background-color: #ddd;
    border-radius: 50%;
    transition: background-color 0.4s ease;
}

#step1 {
    left: 0%;
}
#step2 {
    left: 33.33%;
}
#step3 {
    left: 66.66%;
}
#step4 {
    left: 100%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.step {
    font-size: 14px;
    color: gray;
    position: relative;
    width: 20%;
}

.step.active {
    color: #4caf50;
    font-weight: bold;
}

/* form {
    margin: 20px auto;
    max-width: 400px;
} */

.form-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #45a049;
}
.progress-container {
    width: 100%;
    margin: 40px auto;
    position: relative;
}

.progress-bar-cus {
    background-color: #ddd;
    height: 5px;
    width: 100%;
    position: relative;
}

.progress {
    background-color: #4caf50;
    height: 100%;
    width: 0%;
    transition: width 0.4s ease;
}

.step-dot {
    position: absolute;
    top: -8px;
    width: 20px;
    height: 20px;
    background-color: #ddd;
    border-radius: 50%;
    transition: background-color 0.4s ease;
}

#step1 {
    left: 0%;
}
#step2 {
    left: 33.33%;
}
#step3 {
    left: 66.66%;
}
#step4 {
    left: 100%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.step {
    font-size: 14px;
    color: gray;
    position: relative;
    width: 20%;
}

.step.active {
    color: #4caf50;
    font-weight: bold;
}

/* form {
    margin: 20px auto;
    max-width: 400px;
} */

.form-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #45a049;
}

.error {
    border: 2px solid red;
}
.error-message {
    color: red;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.otpverified {
    display: none;
}
.error-message {
    color: red;
    font-size: 12px;
}

.error {
    border: 2px solid red;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-left: 5px;
}




.history-card {
    max-width: 600px;
    margin: 0 auto;
}

.history-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.edit-btn:hover {
    background-color: darkgreen;
}

.red-asterisk {
    color: red;
}

.response-container {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.response-timestamp {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.response-header {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.response-content {
    font-size: 14px;
    color: #555;
}

.response-item {
    margin-left: 20px;
    margin-bottom: 10px;
}



/**********************Social template css starts (09-01-2025)******************************/
.hide {
    display: none;
}
.ab-container{
    position: relative;
}
.ab-container button#editButton {
    width: 100%;
}
.generated-content{
    width: 453px;
    position: sticky;
    top: 0px;
}
.ab-container .c1 {
    color: #000;
    margin-top: -35px;
    position: relative;
    display: block;
    margin-bottom: 20px;
    text-align: right;
}
.ab-container .c2 {
    color: #000;
    margin-top: -35px;
    position: relative;
    display: block;
    margin-bottom: 20px;
    text-align: right;
}
.ab-container .c2 {
    position: absolute;
    top: 0px;
    right: 0;
}
body{
    font-family: "Inter", serif;
    background-color: #5271ff;
    margin: 0px;
    padding: 0px;
}
.social-profile{
    background-color: #5271ff;
    padding-bottom: 20px;
}
h1{
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
}
p{
    font-size: 16px;
}
.left-panel {
    overflow: auto;
}



.navbar{
    background-image: url(img/header-bg.webp);
    background-repeat: no-repeat;
    min-height: 125px;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    display: none;
    width: 100%;
    background-size: cover;
}
.navbar p{
    font-size: 12px;
    margin-bottom: 0px;
    background: linear-gradient(to right,  #EECB61, #AE984A);
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    font-family: "Inter", serif;
}
.profile-details {
    padding-top: 30px;
    position: relative;
    width: 100%;
    text-align: center;
}
.social-profile {
    /* overflow: hidden; */
    overflow-y: scroll;
    height: 100vh;
}
/* Show scrollbar only on hover */
.social-profile:hover {
     overflow-y: scroll;
}

/* width */
.social-profile::-webkit-scrollbar {
    width: 4px;
}

/* Track */
.social-profile::-webkit-scrollbar-track {
    background: #000; 
}

/* Handle */
.social-profile::-webkit-scrollbar-thumb {
    background: #F7C51E; 
}

/* Handle on hover */
.social-profile::-webkit-scrollbar-thumb:hover {
    background: #555; 
}



.profile-details img{
    position: relative;
}
.profile-details h1{
    color: #fff;
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Inter", serif;
    font-weight: 600;
}
.profile-details h1:after{
    content: '';
    position: absolute;
    background-image: url(img/verified-icon.webp);
    width: 20px;
    height: 20px;
    top: 5px;
    margin-left: 6px;
}
.profile-pic {
    position: relative;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 184px;
    margin: 0px auto;
    margin-bottom: 30px;
    margin-top: -100px;
}
.scan-icon {
    position: absolute;
    right: 27px;
    border: 0;
    bottom: 0;
}
.profile-details p span,
.clinicName {
    font-size: 14px;
    color: #7CDB84;
    position: relative;
    padding-left: 18px;
}

#clinicNameDisplay{
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
#clinicNameDisplay:before{
    content: '';
    background-image: url(img/location-icon.webp);
    width: 17px;
    height: 16px;
}
.profile-details p span:before{
    content: '';
    position: absolute;
    background-image: url(img/location-icon.webp);
    width: 17px;
    height: 16px;
    top: 1px;
    left: 0;
}
.profile-share {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    width: 100%;
    padding-top: 10px;
}
.profile-share a {
    background-color: #7CDB84;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #000;
    margin: 0px 7px;
    padding: 6px 13px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
}
.profile-share a i {
    margin-right: 4px;
}
.profile-share a svg {
    padding-right: 7px;
    font-size: 11px;
}
.profile-summary {
    padding-top: 20px;
    padding-bottom: 20px;
}
.profile-summary p {
    font-size: 14px;
    line-height: 28px;
    color: #F9F9F9;
    margin-bottom: 0px;
}
.hashtag {
    padding-bottom: 30px;
}
.hashtag a {
    color: #7CDB84;
    text-decoration: none;
    font-size: 14px;
}
.copymy-link{
    background-color: #F9F9F9;
    border-radius: 12px;
    margin-bottom: 20px;
}
.copy-text {
	position: relative;
	padding: 5px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	display: flex;
    justify-content: space-evenly;
}
.copy-text input {
	padding: 10px;
	font-size: 14px;
	color: #6C6C6C;
	border: none;
	outline: none;
    pointer-events: none;
}
.copy-text button {
    background: #6ECC83;
    color: #fff;
    font-size: 14px;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    width: 167px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 22px;
}

.copy-text button:active {
	background: #6ECC83;
}
.copy-text button::before {
	content: "Copied";
	position: absolute;
	top: -45px;
	right: 0px;
	background: #6ECC83;
	padding: 8px 10px;
	border-radius: 20px;
	font-size: 15px;
	display: none;
}
.copy-text button::after {
	content: "";
	position: absolute;
	top: -20px;
	right: 25px;
	width: 10px;
	height: 10px;
	background: #6ECC83;
	transform: rotate(45deg);
	display: none;
}
.copy-text.active button::before,
.copy-text.active button::after {
	display: block;
}
/* QR Code */
.QR-code-container{
    background-color: #F9F9F9;
    border-radius: 12px;
    margin-bottom: 20px;
}

.QR-code-container input {
	padding: 10px;
	font-size: 14px;
	color: #6C6C6C;
	border: none;
	outline: none;
    pointer-events: none;
}
.QR-code-container button {
    background: #6ECC83;
    color: #fff;
    font-size: 14px;
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    width: 167px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 22px;
}




.profile-inner-details {
    padding-top: 0px;
}
.portfolio-item {
    background-color: #fff;
    border-radius: 24px;
    padding: 20px 15px 20px 15px;
    margin-bottom: 25px;
}
.portfolio-item.portfolio-top {
    margin-bottom: 0;
}
.portfolio-item.portfolio-top h2 {
    font-size: 35px;
    color: #5271FF;
    font-weight: bold;
    margin-bottom: 10px;
}
.portfolio-item.portfolio-top h2 span {
    display: inline;
    font-size: 40px;
    color: #5271FF;
    font-weight: normal;
}
.portfolio-item.portfolio-top p {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}
.portfolio-item1 {
    background-color: #fff;
    border-radius: 24px;
    padding: 20px 15px 20px 15px;
    margin-bottom: 25px;
}
.portfolio-item1.portfolio-top {
    margin-bottom: 0;
}
.portfolio-item1.portfolio-top h2 {
    font-size: 35px;
    color: #5271FF;
    font-weight: bold;
    margin-bottom: 10px;
}
.portfolio-item1.portfolio-top h2 span {
    display: inline;
    font-size: 40px;
    color: #5271FF;
    font-weight: normal;
    line-height: 16px;
}
.portfolio-item1.portfolio-top p {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
}
p.profile-showcase {
    color: #7CDB84;
    font-size: 18px;
    margin-bottom: 30px;
    padding-left: 30px;
}
.portfolio-item h3 {
    font-size: 16px;
    color: #5271FF;
    font-weight: bold;
    margin-bottom: 20px;
}
.portfolio-item p{
    font-size: 15px;
    line-height: 20px;
    color: #000;
}
.website p {
    text-align: center;
    font-size: 15px;
}
.website p a{
    color: #000;
    text-decoration: underline;
}
.portfolio-item p:last-child{
    margin-bottom: 0px;
}
.portfolio-item p span {
    font-weight: 600;
}
.portfolio-item span {
    font-size: 16px;
    color: #000;
    line-height: 16px;
}
.portfolio-item.tedx p {
    margin-bottom: 10px;
}
.portfolio-item.tedx span {
    font-size: 12px;
    color: #6C6C6C;
    display: block;
    margin-bottom: 20px;
}
.portfolio-item.tedx img {
    margin-bottom: 10px;
    width: 100%;
}




.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}
  
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.youtube-link-wrapper iframe {
    width: 100%;
    height: 250px;
}
  
.video-preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    z-index: 2;
    cursor: pointer;
    border-radius: 10px;
}
.calender{
    position: relative;
}
.calender img{
    width: 100%;
}
.calender a {
    background-color: #7CDB84;
    border-radius: 6px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 10px 13px;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.portfolio-item.portfolio-social{
    background-color: #F5FAFE;
}
.gallery-section {
    margin-bottom: 20px;
}
.gallery-inner img,
.blog img{
    width: 100%;
}
.contacts p,
.contacts p a{
    font-size: 17px;
    color: #000;
    text-decoration: none;
    position: relative;
}
.contacts p span{
    color: #6C6C6C;
    font-size: 19px;
    font-weight: normal;
}
.contacts p.whatsapp a:after {
    content: '';
    position: absolute;
    background-image: url(img/whatsapp.webp);
    width: 21px;
    height: 20px;
    right: -30px;
}
.contacts p.call a:after {
    content: '';
    position: absolute;
    background-image: url(img/call.webp);
    width: 18px;
    height: 18px;
    right: -30px;
}
.google-map{
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}
.google-map iframe{
    width: 100%;
    height: 390px;
    border-radius: 24px;
}
.online-presence {
    border: 1px solid #7CDB84;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
}
.online-presence p {
    font-size: 13px;
    text-align: center;
    color: #7CDB84;
    margin-bottom: 0;
}
.online-presence p a {
    color: #7CDB84;
    text-decoration: none;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 150px;
    margin: 0px auto;
    margin-top: 20px;
}
.footer-inner p{
    margin-bottom: 10px;
}
.footer-inner p a,
.footer-inner p span{
    font-size: 12px;
    color: #000;
    text-decoration: none;
}
.footer-inner a {
    font-size: 10px;
    color: #000;
    line-height: 10px;
    text-decoration: none;
}

.letter {
    opacity: 0;
    display: inline-block;
    transition: opacity 0.1s ease-in-out;
}


@media only screen and (max-width: 600px) {
.left-panel {
    position: relative;
    width: 100%;
    overflow: auto;
}
.navbar{
    display: block;
}
.profile-details{
    padding-top: 0;
    padding-right: 0;
    margin-top: -50px;
    text-align: center;
    overflow-y: hidden !important;
    height: auto;
    padding-bottom: 0;
}
.profile-pic{
    margin: 0px auto;
    margin-bottom: 30px;
}
.profile-share{
    justify-content: center;
}
.copy-text button{
    font-size: 12px;
}
.portfolio-item.website-url {
    padding: 20px 10px 20px 10px;
}
.container {
    padding-left: 15px;
    padding-right: 15px;
}


}


.intro-main{
    display: flex;
    flex-direction: column;
}
.inro-section {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    padding-bottom: 100px;
    position: fixed;
    z-index: 100;
}
.page-intro{
    background-color: #fff;
}
.topsection {
    padding: 20px 0px;
}
.intro{
    position: relative;
}
.content-center {
    padding-top: 30px;
}
.content-center h2 {
    font-size: 44px;
    color: #008080;
    padding-bottom: 20px;
}
.content-center p{
    font-size: 18px;
    color: #000;
}
.content-center p span{
    font-size: 18px;
    font-weight: bold;
    color: #008080;
}
.content-center a {
    background-color: #008080;
    text-align: center;
    border-radius: 5px;
    padding: 11px 0px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}
.intro:after{
    content: '';
    position: absolute;
    background-image: url(img/laptop.png);
    background-repeat: no-repeat;
    background-position: right center;
    width: 963px;
    height: 755px;
    top: 20px;
    right: 0;
    background-size: 90%;
}
 
footer {
    width: 100%;
    margin-top: 15px;
}
.footer-cont p{
    font-size: 14px;
    color: #000;
}
 
.footer-cont p a{
    font-size: 14px;
    color: #008080;
    text-decoration: underline;
}

.disabled {
    opacity: 0.5;
    pointer-events: none; /* Prevents clicks */
    cursor: not-allowed;
}


/* qr */
/* Blur effect on body */
.blur-bg {
    filter: blur(5px);
    pointer-events: none;
}

/* QR modal styles */
/* Overlay for background blur */
#blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

/* Popup for QR display */
#qr-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px 30px;
    z-index: 1000;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: none;
    text-align: center;
}
















