@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

@font-face {
  font-family: poppins-font;
  src: url('/fonts/Poppins-Bold.woff2') format('woff2');
  font-display: swap;
}

* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

.marzi {
  width: 100%;
  max-width: 500px;
  opacity: 0;
  animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
  animation-delay: 1s, 2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  border: 3px solid #A3FFD6;
  box-shadow: 0 0 30px rgba(163, 255, 214, 0.3);
  transition: all 0.3s ease;
  filter: drop-shadow(4px 4px 12px rgba(163, 255, 214, 0.2));
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(163, 255, 214, 0.5);
  border-color: #9F73AB;
} 


.checking-a {
height: 100px;
}
a {
  text-decoration: none;
  color: #6070ff;
}

:root {
  --bg-color: #18122B;
  --second-bg-color: #393053;
  --main-color: #9F73AB;
  --accent-gradient: linear-gradient(135deg, #A3FFD6 0%, #9F73AB 100%);
  --text-color: #F7F7F7;
}

body {
  background: var(--accent-gradient);
  color: var(--text-color);
}

body.light-mode {
  --bg-color: #f7f7f7;
  --second-bg-color: #e0e0e0;
  --main-color: #4B3F72;
  --accent-gradient: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  --text-color: #18122B;
}

body.light-mode .hero-header,
body.light-mode .projects h1,
body.light-mode .skillHd h1,
body.light-mode .myselfHd h2,
body.light-mode .contact-header h2 {
  color: #18122B;
}
body.light-mode .skillHd p,
body.light-mode .works-div p,
body.light-mode .contact-header p,
body.light-mode .myselfHd p {
  color: #333;
}
body.light-mode .box,
body.light-mode .single-skill {
  background-color: #fff;
  color: #18122B;
  box-shadow: 0 0 10px #e0e0e0;
  border: 1px solid #e0e0e0;
}
body.light-mode .btn-cv {
  background: #4B3F72;
  color: #fff;
  box-shadow: 0 0 10px #4B3F72;
}
body.light-mode .btn-cv:hover {
  box-shadow: none;
}
body.light-mode .navbar a,
body.light-mode .logo {
  color: #18122B;
}
body.light-mode .navbar a:hover,
body.light-mode .navbar a.active {
  color: #4B3F72;
}

body.light-mode .profile-image {
  border-color: #4B3F72;
  box-shadow: 0 0 30px rgba(75, 63, 114, 0.3);
  filter: drop-shadow(4px 4px 12px rgba(75, 63, 114, 0.2));
}

body.light-mode .profile-image:hover {
  box-shadow: 0 0 40px rgba(75, 63, 114, 0.5);
  border-color: #9F73AB;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float .whatsapp-text {
  display: none;
  font-size: 12px;
  font-weight: bold;
}

/* Fallback for when Font Awesome doesn't load */
.whatsapp-float:before {
  content: "💬";
  font-size: 24px;
  display: none;
}

/* Show fallback when Font Awesome icon is not available */
.whatsapp-float .fab.fa-whatsapp:not([class*="fa-whatsapp"]) {
  display: none;
}

.whatsapp-float .fab.fa-whatsapp:not([class*="fa-whatsapp"]) + .whatsapp-text {
  display: block;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

/* Mobile-only WhatsApp button (optional) */
@media (max-width: 768px) {
  .whatsapp-float {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}
.theme-toggle-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--main-color);
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.theme-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body.light-mode .theme-toggle-btn {
  background: var(--main-color);
  color: #fff;
}

#theme-toggle {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  background: none !important;
  border: none !important;
  transition: background 0.2s !important;
}
#theme-toggle:active, #theme-toggle:focus {
  outline: none;
  background: #ececec;
}

/* Hero page css */

.hero-page {
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #393053 0%, #18122B 100%);
  display: flex;
  flex-direction: column-reverse;
  padding: 20% 5%;
  align-items: center;
  gap: 35px;
}

/* .home-img img {
  max-height: 400px;
  border-radius: 20%;
  border: 1px solid #0ef;
  box-shadow: 0 0 20px #0ef;
  opacity: 0;
  animation: zoomIn 1s ease forwards, floatImage 4s ease-in-out infinite;
  animation-delay: 1s, 2s;
  display: none;
} */

.hero-header {
  color: #fff;
  width: 100%;
}

.hero-header h1 {
  font-size: 1.5rem;
  font-family: "poppins-font", sans-serif;
  font-weight: 700;
  margin: -3px 0;
}

.hero-header h3 span {
  color: #0ef;
}

.hero-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
}

.hero-header h3:nth-of-type(2) {
  margin-bottom: 20px;
}

.hero-header p {
  font-size: 13px;
  width: 90%;
}

.social-media a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 2px solid #A3FFD6;
  border-radius: 50%;
  color: #A3FFD6;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  margin: 30px 10px 30px 0;
  transition: 0.5s ease;
}

.social-media a:hover {
  background: #A3FFD6;
  color: #18122B;
  box-shadow: 0 0 22px #A3FFD6;
}

.btn-cv {
  display: inline-block;
  padding: 10px 25px;
  background: #A3FFD6;
  border-radius: 40px;
  box-shadow: 0 0 10px #A3FFD6;
  color: #18122B;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

.btn-cv:hover {
  box-shadow: none;
}

/* Project page css */

.projects {
  padding: 10% 5%;
  border: 1px solid #30353f;
  background: linear-gradient(135deg, #393053 0%, #18122B 100%);
}

.projects h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "poppins-font", sans-serif;
}

.works-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.works-div p {
  font-size: 0.7rem;
  font-weight: 500;
  color: #9c9c9c;
}

.projects h1 span {
  margin-left: 10px;
  color: #0ef;
}

.hidden {
  display: none;
}

.grid-boxes {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  gap: 26px;
}

.box {
  box-shadow: 0 0 20px #A3FFD6;
  border: 1px solid #A3FFD6;
  padding: 20px 10px 10px 10px;
  border-radius: 20px;
  height: 270px;
  width: 370px;
  transition: all 0.5s ease;
}

.imgBx {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.7s ease;
}

.imgBx h2 {
  padding: 10px;
  color: #fff;
}

.imgBx img {
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  position: relative;
}

.box-container:hover .imgBx {
  transform: translateY(-100px);
}

.project-content {
  position: absolute;
  width: 100%;
  color: #fff;
  padding: 10px 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 1s ease;
  transform: translateY(230%);
}

.project-content p {
  font-size: 14px;
}

.project-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.see-more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.see-more a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #0ef;
  border-radius: 40px;
  box-shadow: 0 0 10px #0ef;
  color: #172b4d;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

.project-technologies a {
  color: #fff;
  font-size: 26px;
}

.content-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.content-footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #0ef;
  width: 100px;
  height: 40px;
  border-radius: 40px;
  color: #0ef;
}

.content-footer a:hover {
  background-color: #0ef;
  color: #172b4d;
  box-shadow: 0 0 20px #0ef;
}

.project-technologies {
  margin: 10px 0;
}

.project-technologies a:hover {
  color: #0ef;
  text-shadow: 0 0 10px #0ef;
}

/* skill page css */

.skills-tools {
  padding: 10%;
  border: 1px solid #30353f;
  background: linear-gradient(135deg, #393053 0%, #18122B 100%);
}

.skillHd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.skillHd h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  font-family: "poppins-font", sans-serif;
}

.skillHd h1 span {
  color: #0ef;
}

.skillHd p {
  font-size: 1rem;
  font-weight: 500;
  color: #9c9c9c;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  width: 100%;
}

.skill-icon img {
  width: 70px;
  height: 70px;
}

.single-skill {
  width: 160px;
  height: 160px;
  background-color: #30353f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: border 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

.single-skill:hover {
  border: 1px solid #0ef;
  box-shadow: 0 0 10px #0ef;
  transform: scale(1.1);
}

.skill-name h3 {
  font-size: 12px;
  color: #fff;
  text-align: center;
}

/* about page css */

.aboutSection {
  background-color: #323846;
  width: 100%;
  height: 100%;
  padding: 10% 5%;
}

.myself-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.myselfHd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.myselfHd h2 {
  color: #fff;
  font-size: 2.5rem;
  margin: 0;
  padding: 0;
  font-family: "poppins-font", sans-serif;
}

.myselfHd p {
  color: #9c9c9c;
  font-size: 0.7rem;
  margin: 0;
  padding: 0;
}

.myself-paragraph p span {
  color: #0ef;
}

.myselfHd h2 span {
  color: #0ef;
}

.button-cv {
  display: flex;
  justify-content: center;
}

.myself-paragraph a {
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.myself-paragraph p {
  color: #fff;
  font-size: 0.9rem;
  text-align: justify;
  width: 100%;
}

.myself-experience {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.last {
  display: none;
}

/* contact page css */

.contact-container {
  width: 100%;
  height: 100%;
  padding: 10%;
  background: linear-gradient(135deg, #393053 0%, #18122B 100%);
}

.contact-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.contact-header p {
  font-size: 1rem;
  font-weight: 500;
  color: #9c9c9c;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  font-family: "poppins-font", sans-serif;
}

.contact-header span {
  color: #0ef;
}

.contact-content {
  display: flex;
  flex-direction: column-reverse;
  border: 2px solid #323846;
  border-radius: 10px;
}

.contact-info {
  width: 100%;
  padding: 30px 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #9c9c9c;
}

form {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #323846;
  padding: 30px 20px 60px;
  gap: 20px;
}

form input,
textarea {
  width: 100%;
  background-color: #323846;
  border: none;
  color: #fff;
  border-bottom: 1px solid rgb(94, 93, 93);
}

form input {
  padding: 5px 0 60px 0;
}

form textarea {
  padding: 10px 0 70px 0;
  margin-bottom: 10px;
}

input::placeholder,
textarea::placeholder {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

input:focus,
textarea:focus {
  outline: none;
}

.btn {
  width: 170px;
  background-color: #0ef;
  height: 50px;
  border: none;
}

.willing {
  display: flex;
  align-items: center;
}

.willing h3 {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  position: relative;
  padding: 10px 15px 10px 30px;
  border: 1px solid rgb(90, 90, 90);
}

.last .single-skill,
.first .single-skill {
  gap: 15px;
  padding: 0 10px;
}

.last .single-skill .skill-name h3,
.first .single-skill .skill-name h3 {
  font-size: 0.9rem;
  font-weight: 600;
}

.last .skill-icon img,
.first .skill-icon img {
  width: 50px;
  height: 50px;
}

.willing h3::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: changeOpacity 1s ease forwards infinite;
}

@keyframes changeOpacity {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  /* hero page css */
  .profile-image {
    max-width: 280px;
  }

  /* skill page css */
  .single-skill {
    width: 145px;
    height: 145px;
  }

  .skills-tools {
    padding: 10% 5%;
  }

  .skill-icon img {
    width: 50px;
    height: 50px;
  }

  .skillHd p {
    font-size: 0.7rem;
  }

  /* contact page css */

  .contact-container {
    padding: 10% 5%;
  }

  .contact-header p {
    font-size: 0.7rem;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 0.8rem;
  }

  form input {
    padding: 5px 0 40px 0;
  }

  form textarea {
    padding: 10px 0 50px 0;
  }

  .btn {
    width: 160px;
    height: 40px;
    font-size: 0.7rem;
  }

  .willing h3 {
    font-size: 0.7rem;
    padding: 10px 10px 10px 25px;
  }

  .contact-info p {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .box-container:hover .project-content {
    opacity: 0;
    animation: slideUp 0.3s ease forwards;
    animation-delay: 0.5s;
  }

  .box-container:hover .box {
    height: 400px;
    margin-top: 60px;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(130%);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(110%);
      height: auto;
    }
  }
}

@media (min-width: 623px) {
  .grid-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .box {
    width: 260px;
    height: 220px;
  }

  .box-container:hover .project-content {
    opacity: 0;
    animation: slideUp 0.3s forwards;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(230%);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(80%);
      height: auto;
    }
  }
}

@media (min-width: 768px) {
  /* hero page */
  .hero-page {
    flex-direction: row;
    padding: 20% 10%;
  }

  .profile-image {
    max-width: 350px;
  }

  /* .home-img img {
    display: block;
  } */

  .hero-header h1 {
    font-size: 2.3rem;
  }

  .hero-header h3 {
    font-size: 1.3rem;
  }

  .hero-header p {
    font-size: 13px;
  }

  .social-media a {
    width: 40px;
    height: 40px;
  }

  .btn-cv {
    padding: 12px 28px;
    font-size: 16px;
  }

  /* projects page css */

  .projects {
    padding: 10%;
  }

  .works-div p {
    font-size: 1rem;
  }

  /* about page css */
  .myselfHd {
    margin-bottom: 40px;
  }

  .myselfHd h2 {
    font-size: 2.5rem;
  }

  .myselfHd p {
    font-size: 1rem;
  }

  .myself-paragraph p {
    font-size: 1rem;
  }

  .aboutSection {
    padding: 10%;
  }
}

@media (min-width: 900px) {
  /* projects page css */
  .box {
    width: 345px;
    height: 255px;
  }

  .box-container:hover .box {
    height: 390px;
  }

  .box-container:hover .project-content {
    opacity: 0;
    animation: slideUp 0.3s forwards;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(230%);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(110%);
      height: auto;
    }
  }
}

@media (min-width: 1024px) {
  /* project page css */
  .box {
    width: 400px;
    height: 300px;
    padding: 20px;
  }

  .box-container:hover .box {
    height: 430px;
    margin-top: 60px;
  }

  .box-container:hover .project-content {
    opacity: 0;
    animation: slideUp 0.3s forwards;
  }

  .project-technologies a {
    font-size: 36px;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(230%);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(110%);
      height: auto;
    }
  }
}

@media (min-width: 1150px) {
  /* about page css */
  .myself-content {
    flex-direction: row;
  }

  .myself-experience {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1300px) {
  /* hero page */

  .hero-page {
    padding: 10% 15%;
    height: 100vh;
  }

  .profile-image {
    max-width: 450px;
  }

  /* .home-img img {
    max-height: 450px;
  } */

  .hero-header h1 {
    font-size: 3.5rem;
  }

  .hero-header h3 {
    font-size: 1.5rem;
  }

  .hero-header p {
    font-size: 15px;
  }

  /* project page css */
  .grid-boxes {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects {
    padding: 5% 15%;
  }

  .box {
    width: 300px;
    height: 220px;
  }

  .box-container:hover .project-content {
    opacity: 0;
    animation: slideUp 0.3s forwards;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(230%);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(80%);
      height: auto;
    }
  }

  /* skill page css */
  .skills-tools {
    padding: 5% 15%;
  }

  /* about page css */
  .aboutSection {
    padding: 5% 15%;
  }

  /* contact page css */

  .contact-content {
    flex-direction: row;
  }

  .contact-info {
    width: 35%;
    padding: 20px 30px;
  }

  form {
    width: 65%;
  }

  .contact-container {
    padding: 5% 15% 8%;
  }
}

@media (min-width: 1500px) {
  /* project page css */
  .box {
    width: 325px;
    height: 235px;
  }

  .box-container:hover .box {
    height: 400px;
  }

  .box-container:hover .project-content {
    opacity: 0;
    animation: slideUp 0.3s forwards;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(230%);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(90%);
      height: auto;
    }
  }
}

@media (min-width: 1800px) {
  /* project page css */
  .box {
    width: 400px;
    height: 270px;
  }

  .box-container:hover .box {
    height: 420px;
  }

  .box-container:hover .project-content {
    opacity: 0;
    animation: slideUp 0.3s forwards;
  }

  @keyframes slideUp {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(230%);
    }

    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(110%);
      height: auto;
    }
  }

  /* skill page css */
  .single-skill {
    width: 148px;
    height: 148px;
  }
}

.profile-business-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  margin: 2rem auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 200px;
  max-width: 220px;
  max-height: 220px;
  overflow: visible;
}
.profile-business-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  width: 60px;
  height: 100%;
  background: linear-gradient(135deg, #1de9b6 0%, #00bfae 100%);
  border-radius: 0 24px 24px 0;
  z-index: 0;
}
.business-profile-img {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.15);
  background: #fff;
  margin: 0 0 0 0;
  display: block;
}
@media (max-width: 600px) {
  .profile-business-card {
    min-width: 80px;
    min-height: 80px;
    max-width: 100px;
    max-height: 100px;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem;
  }
  .profile-business-card::after {
    right: -20px;
    width: 30px;
  }
  .business-profile-img {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }
}
