/* GOOGLE FONTS */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Clicker+Script&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/*========================= CSS VARIABLES =========================*/
:root {
  --hue: 181;
  --sat: 47%;
  --light: 49%;

  --primary-color: hsl(var(--hue), var(--sat), var(--light));
  --white-color: hsl(var(--hue), 45%, 98%);
  --dark-color: hsl(var(--hue), 26%, 12%);

  /* Dark/Light Themes */
  --color-01: hsl(var(--hue), var(--sat), var(--light));
  --color-02: hsl(var(--hue), 45%, 98%);
  --color-03: hsl(var(--hue), 26%, 12%);
  --color-04: hsl(var(--hue), 0%, 62%);
  --color-05: hsl(var(--hue), 26%, 12%);

  --body-color: hsl(250, 26%, 12%);
  --hover-color: hsl(var(--hue), var(--sat), calc(var(--light) - 7%));

  /* Background Colors */
  --bottom-nav-bg: hsl(var(--hue), 32%, 25%, 0.65);
  --card-bg: linear-gradient(120deg,
      hsl(var(--hue), 54%, 74%, 0.15),
      hsl(var(--hue), 54%, 74%, 0.05));
  --modal-backdrop-bg: hsl(var(--hue), 54%, 74%, 0.1);
  --footer-bg: linear-gradient(360deg,
      hsl(var(--hue), 54%, 74%, 0.15),
      hsl(var(--hue), 54%, 74%, 0.1));
  --scrollbar-color: hsl(var(--hue), 25%, 20%);
  --scrollbar-thumb: hsl(var(--hue), var(--sat), var(--light));
  --scrollbar-thumb-hover: hsl(var(--hue), var(--sat), calc(var(--light) - 7%));

  /* Fonts */
  --body-font-family: "Inter", sans-serif;

  /* Font Sizes */
  --h1-font-size: 2.85rem;
  --h2-font-size: 2.25rem;
  --h3-font-size: 1.97rem;
  --h4-font-size: 1.43rem;
  --h5-font-size: 1.13rem;
  --xlarge-font-size: 1.48rem;
  --large-font-size: 1.23rem;
  --medium-font-size: 1.18rem;
  --base-font-size: 1.1rem;
  --small-font-size: 1.07rem;
  --tiny-font-size: 0.98rem;

  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* Z-Index Layers */
  --z-minus: -1;
  --z-base: 0;
  --z-low: 1;
  --z-high: 10;
  --z-content: 100;
  --z-tooltip: 1000;
  --z-fixed: 1100;
  --z-overlay: 1110;
  --z-modal: 1990;
  --z-max: 9999;
}

/* ========================LIGHT THEME================ */
/* ========== Changeable colors for dark/Light themes ======== */
.light-theme {
  --color-01: hsl(var(--hue) 26% 12%);
  /* primary to dark */
  --color-02: hsl(var(--hue) 26% 12%);
  /* white to dark */
  --color-03: hsl(var(--hue) 45% 98%);
  /* dark to white */
  --color-04: hsl(var(--hue) 9% 46%);
  /* Light-graygray to dark-gray */
  --color-05: hsl(var(--hue) var(--sat) var(--light));
  /* dark to primary */
  --body-color: hsl(var(--hue) 45% 98%);
  /* dark to white */

  /* =============Background colors ======= */
  --bottom-nav-bg: hsl(var(--hue) 32% 85% / 0.8);
  --card-bg: hsl(0 0% 100%);
  --modal-backdrop-bg: hsl(var(--hue) 50% 12% / 0.5);
  --footer-bg: linear-gradient(360deg,
      hsl(var(--hue) var(--sat) var(--light)),
      hsl(var(--hue) var(--sat) var(--light) / 0.75));
  --scrollbar-color: hsl(var(--hue) 9% 60%);
  --scrollbar-thumb: hsl(var(--hue) 9% 25%);
  --scrollbar-thumb-hover: hsl(var(--hue) 9% 17%);

  .bottom-nav .menu-hide-btn {
    box-shadow: 0 2px 4px hsl(0, 0%, 1%, 0.25);
  }

  .pro-card,
  .skill-card,
  .service-card,
  .portfolio-card,
  .contact-form-body {
    box-shadow: 0 2px 8px hsl(0, 0%, 1%, 0.05);
  }

  .contact-icon,
  .contact-social-links li {
    box-shadow: 0 2px 4px hsl(0, 0%, 1%, 0.3);
  }

  .dr-footer.copy-right {
    color: hsl(var(--hue) 26% 30%);
  }

  .dr-footer.copy-right a {
    color: hsl(var(--hue) 26% 30%);
  }

  .dr-footer .copy-right a:hover {
    color: hsl(var(--hue) 0% 0%);
  }

  .to-top-btn {
    background: hsl(var(--hue) 26% 12% / 0.2);
  }

  .bubble {
    background: teal;
  }

  .contact-form-body {
    box-shadow: 0 2px 4px hsl(0, 0%, 1%, 0.3);
  }

  .contact-form-body form .input-group input,
  .contact-form-body form .input-group textarea {
    color: hsl(0, 0%, 1%, 0.6);
  }

  .floating-quote {
    color: teal;
    font-weight: 500;
  }

  .highlight-text{
    color:#de61d4;
  }
}

/*========================= RESET =========================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--body-font-family);
}

::selection {
  background-color: #ff1493;
  color: white;
  /* optional: text color during selection */
}

::-moz-selection {
  background-color: #ff1493;
  color: white;
}

ul,
li {
  list-style: none;
}

a {
  color: var(--color-04);
  text-decoration: none;
  cursor: pointer;
}

/* ==============Page scroll bar============= */
::-webkit-scrollbar {
  width: 10px;
  background: var(--scrollbar-color);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 25px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
}

/*========================= BASE STYLES =========================*/
html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-04);
  background: var(--body-color);
  transition: background 0.3s, color 0.3s;
}

/* ====================== Reusable Styles ==================== */
.dr-section {
  position: relative;
  overflow: hidden;
}

.dr-container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.dr-sub-container {
  padding-top: 7em;
  padding-bottom: 5em;
}

.dr-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}

.section-title h3 {
  color: var(--color-01);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--color-04);
  font-size: var(--base-font-size);
  font-weight: var(--font-regular);
}

.section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 75px;
}

/* container */
.cursor-symbol {
  position: fixed;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0; */
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  /* allow clicks through the cursor */
  z-index: var(--z-max);
}

/* small dot */
.cursor-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  transform: translate3d(-50%, -50%, 0) scale(1);
  will-change: transform, background;
  transition: transform 240ms cubic-bezier(0.2, 0.9, 0.2, 1),
    background 240ms ease;
  pointer-events: none;
}

/* circle around cursor */
.cursor-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0.6;
  will-change: transform, opacity;
  transition: transform 220ms ease, opacity 180ms ease;
  pointer-events: none;
}

/* "large" state — we scale the dot for smooth animation */
.cursor-dot.large {
  /* scale instead of changing width/height to stay smooth */
  transform: translate3d(-50%, -50%, 0) scale(12);
  background: hsl(var(--hue) var(--sat) var(--light) / 0.35);
  transition-duration: 300ms;
}

/* ===========To top button with scroll indicator bar ======= */
.to-top-btn {
  z-index: var(--z-fixed);
  position: fixed;
  background: hsl (var(--hue) 54% 74% / 0.2);
  height: 100px;
  width: 2px;
  bottom: 25px;
  right: -30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.to-top-btn.active {
  right: 30px;
}

.to-top-btn a {
  color: var(--color-01);
  transition: 0.3s;
}

.to-top-btn a:hover {
  color: var(--hover-color);
}

.to-top-btn a span {
  position: absolute;
  left: 0;
  bottom: 155px;
  transform: rotateZ(90deg);
  transform-origin: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.to-top-btn .scroll-indicator-bar {
  position: absolute;
  background: var(--color-01);
  width: 2px;
  /* height: auto; */
  height: 50%;
  opacity: 0.5;
}

/* ======================= BUTTONS ============================ */
.dr-main-btn {
  width: fit-content;
  padding: 14px 30px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.dr-main-btn:hover {
  color: var(--white-color);
  background: var(--hover-color);
  border: 2px solid var(--hover-color);
}

.dr-main-btn a {
  color: var(--color-01);
  font-size: var(--small-font-size);
  font-weight: 500;
  transition: 0.3s;
}

.dr-main-btn:hover a {
  color: var(--white-color);
}

.border-btn {
  border: 2px solid var(--color-01);
}

.fill-btn {
  background: var (--primary-color);
  border: 2px solid var(--primary-color);
}

/* =======================HEADER====================== */
.dr-header {
  z-index: var(--z-fixed);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 30px 0;
  transition: 0.3s ease;
}

.dr-header.shrink {
  background: var(--body-color);
  padding: 12px 0;
}

.dr-header .inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dr-logo a {
  color: var(--color-01);
  font-size: 2.6rem;
  font-weight: var(--font-semi-bold);
  letter-spacing: -3px;
  transition: 0.3s;
}

.dr-logo a:hover {
  color: var(--hover-color);
}

.header-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}

.lets-talk-icon {
  color: var(--color-01);
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}

.lets-talk-icon:hover {
  color: var(--hover-color);
}

/* ================== Floating mute button ================= */
#mute-btn {
  color: var(--color-01);
  font-size: 1.7rem;
  cursor: pointer;
  transition: 0.3s;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

#mute-btn:hover {
  color: var(--hover-color);
}

/* =================Floating Button ends ====================== */

/* ====================== Dark/Light theme buttons ===============*/
.theme-btn {
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 27px;
  cursor: pointer;
}

.theme-btn i {
  position: absolute;
  color: var(--color-01);
  font-size: 1.7rem;
  cursor: pointer;
  transition: 0.3s;
}

.theme-btn:hover i {
  color: var(--hover-color);
  transform: rotate(-15deg);
}

/* Default state (dark theme) - show moon, hide sun */
.theme-btn .moon-icon {
  opacity: 0;
  transition: 0.3s;
}

.theme-btn .sun-icon {
  opacity: 1;
  transition: 0.3s;
}

/* When light theme is active - show sun, hide moon */
.theme-btn.active-sun-icon .sun-icon {
  opacity: 0;
  transition: 0.3s;
}

.theme-btn.active-sun-icon .moon-icon {
  opacity: 1;
}

/* ======================= Bottom navigation menu ===================== */
.bottom-nav-container {
  position: relative;
}

.bottom-nav {
  z-index: var(--z-fixed);
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  /* bottom: 50px; */
  bottom: -75px;
  opacity: 0;
  transition: 0.5s ease, 0.3s ease;
  transition-property: bottom, opacity;
}

.bottom-nav.active {
  bottom: 50px;
  opacity: 1;
  transition: 0.5s ease, 0.3 ease;
  transition-property: bottom, opacity;
}

.bottom-nav-inner {
  position: relative;
}

.my-name {
  font-family: "Clicker Script", cursive;
  letter-spacing: 1.5px;
  /* margin-left: 10px; */
  /* margin: 10px 5px; */
  padding: 5px 2px;
}

.bottom-nav .menu {
  background: var(--bottom-nav-bg);
  backdrop-filter: blur (10px);
  padding: 16px 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
  border-bottom: 1px solid hsl (var(--hue) 45% 98% / 0.1);
  border-left: 1px solid hsl (var(--hue) 45% 98% / 0.1);
  border-radius: 50px;
  /* display: none; */
}

.bottom-nav .menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bottom-nav .menu li a i {
  color: var(--color-02);
  font-size: 1.4rem;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.bottom-nav .menu li:hover a i {
  color: var(--white-color);
  background: var(--hover-color);
}

.bottom-nav .menu .current i {
  color: var(--dark-color);
  background: var(--primary-color);
}

.bottom-nav .menu li a span {
  z-index: var(--z-tooltip);
  position: absolute;
  color: var(--dark-color);
  background: var(--primary-color);
  font-size: var(--tiny-font-size);
  font-weight: var(--font-medium);
  padding: 3px 10px;
  transform: translateY(-53px);
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
}

.bottom-nav .menu li:hover a span {
  opacity: 1;
}

.bottom-nav .menu li a span:before {
  content: "";
  /* z-index: var(--z-minus); */
  position: absolute;
  background: var(--primary-color);
  width: 10px;
  height: 10px;
  left: 50%;
  top: 90%;
  transform: rotate(45deg) translateX(-50%);
}

.bottom-nav .menu-hide-btn {
  z-index: var(--z-fixed);
  position: absolute;
  top: -5px;
  right: 0;
  color: var(--dark-color);
  font-size: 1.52rem;
  background: var(--primary-color);
  padding: 2px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  pointer-events: none;
  opacity: 0;
}

.menu-hide-btn.active {
  pointer-events: all;
  opacity: 1;
}

.bottom-nav .menu-hide-btn:hover {
  color: var(--white-color);
  background: var(--hover-color);
}

.menu-show-btn {
  z-index: var(--z-fixed);
  position: fixed;
  background: var(--bottom-nav-bg);
  backdrop-filter: blur (10px);
  width: 85px;
  height: 50px;
  border-bottom: 1px solid hsl (var(--hue) 45% 98% / 0.1);
  border-left: 1px solid hsl (var(--hue) 45% 98% / 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 5px;
  translate: -50% 0;
  left: 50%;
  /* bottom: 50px; */
  bottom: -75px;
  opacity: 0;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s ease, 0.3s ease;
  transition-property: bottom, opacity;
  overflow: hidden;
  animation: wiggle 2s linear infinite;
  animation-delay: 1s;
}

.menu-show-btn.active {
  bottom: 50px;
  opacity: 1;
  transition: 0.5s ease, 0.3s ease;
  transition-property: bottom, opacity;
}

@keyframes wiggle {

  0%,
  5% {
    transform: rotateZ(0);
  }

  15% {
    transform: rotateZ(-15deg);
  }

  20% {
    transform: rotateZ(10deg);
  }

  25% {
    transform: rotateZ(-10deg);
  }

  30% {
    transform: rotateZ(6deg);
  }

  35% {
    transform: rotateZ(-4deg);
  }

  40%,
  100% {
    transform: rotateZ(0);
  }
}

.menu-show-btn .bar-01,
.menu-show-btn .bar-02 {
  background: var(--primary-color);
  width: 40px;
  height: 4px;
  transition: 0.15s;
}

.menu-show-btn:hover .bar-01,
.menu-show-btn:hover .bar-02 {
  background: var(--hover-color);
}

/* ======================== HOME ====================== */
.home-container {
  height: 100vh;
}

.home-container .dr-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}

.avatar-img {
  position: relative;
  width: 400px;
  height: 400px;
  margin-bottom: 190px;
}

.avatar-img img {
  position: absolute;
  width: 100%;
  transition: filter 0.5s ease;
}

.avatar-img img:hover {
  filter: brightness(1.2);
}

.home-social {
  position: absolute;
  left: 0;
}

.home-social span {
  position: absolute;
  left: 10px;
  color: var(--color-01);
  font-size: var(--tiny-font-size);
  white-space: nowrap;
  transform: rotateZ(-90deg);
  transform-origin: left;
  z-index: 0;
}

.home-social .social-line {
  background: var(--color-01);
  width: 1px;
  height: 100px;
  margin-top: 37px;
  margin-bottom: 25px;
  margin-left: 10px;
  position: relative;
  /* creates stacking context */
  z-index: 1;
  /* ensures it's above the rotated text */
}

.home-social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.home-social .social-icons li a {
  color: var(--color-01);
  font-size: var(--xlarge-font-size);
  transition: 0.3s;
}

.home-social .social-icons li a:hover {
  color: var(--hover-color);
}

.avatar-container .hire-btn-01 {
  display: none;
}

.avatar-info {
  position: relative;
}

.avatar-info.text-content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.avatar-info .hello-text {
  font-size: var(--base-font-size);
  font-weight: var(--font-semi-bold);
}

.avatar-info .my-name {
  color: var(--color-02);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
}

.avatar-info .what-i-do {
  font-size: var(--base-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 35px;
}

.home-scroll-btn {
  position: absolute;
  right: -5px;
  color: var(--color-01);
  display: grid;
  justify-items: center;
  row-gap: 3px;
  animation: up-down 1.5s linear infinite;
  animation-delay: 1.85s;
}

@keyframes up-down {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(8px);
  }
}

.home-scroll-btn:hover {
  color: var(--hover-color);
}

.home-scroll-btn div {
  font-size: var(--tiny-font-size);
  font-weight: var(--font-regular);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  white-space: nowrap;
  transform: rotate(180deg);
  margin-top: 7px;
  letter-spacing: 3px;
}

.home-scroll-btn i {
  font-size: 2rem;
}

/* ============== About me ================ */
.about-img {
  position: relative;
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.about-img img {
  width: 100%;
  border-radius: 15px;
}

.about-details {
  width: 65%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.about-info .iam {
  color: var(--color-02);
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 20px;
}

.about-description {
  font-size: var(--base-font-size);
  font-weight: var(--font-regular);
  line-height: 30px;
  text-align: justify;
}

.pro-list {
  position: relative;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  column-gap: 10px;
  row-gap: 12px;
  margin: 38px 0;
}

.pro-card {
  background: var(--card-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  padding: 35px 25px;
  text-align: left;
  border-radius: 5px;
}

.pro-card span {
  color: var(--primary-color);
  font-size: 2.75rem;
  font-weight: var(--font-bold);
}

.pro-card p {
  color: var(--color-02);
  font-size: var(--tiny-font-size);
  font-weight: var(--font-regular);
  line-height: 20px;
  max-width: 100px;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 25px;
}

/* ===========================RESUME==================== */
.resume-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
  margin-bottom: 100px;
}

.resume-tabs .tab-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  color: var(--color-01);
  font-size: var(--medium-font-size);
  font-weight: var(--font-medium);
  padding: 12px 0;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.resume-tabs .tab-btn:hover {
  color: var(--hover-color);
}

.resume-tabs .tab-btn i {
  font-size: var(--xlarge-font-size);
  margin-right: 3px;
}

.resume-tabs .tab-btn.active {
  color: var(--dark-color);
  background: var(--primary-color);
  padding: 12px 15px;
}

.resume-tabs .tab-btn.active:hover {
  color: var(--white-color);
  background: var(--hover-color);
}

.resume-tab-content {
  position: relative;
  /* display: flex; */
  width: 100%;
  justify-content: center;
  margin-bottom: 25px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resume-tab-content.active {
  display: flex;
  opacity: 1;
}

.education .resume-line {
  background: var(--primary-color);
  width: 2px;
  height: 380px;
}

.resume-items {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 125px;
}

.resume-items .item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resume-items .item:before {
  content: "";
  position: absolute;
  background: var(--primary-color);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.resume-items .item .info {
  position: absolute;
  width: 250px;
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.resume-items .item-left .info {
  right: 35px;
}

.resume-items .item-right .info {
  left: 50px;
}

.resume-items .item .info i {
  color: var(--primary-color);
  font-size: 2.15rem;
}

.resume-items .item .info h5 {
  color: var(--color-02);
  font-size: var(--h5-font-size);
  font-weight: var(--font-semi-bold);
  white-space: break-spaces;
  margin-bottom: 10px;
}

.resume-items .item .info p {
  color: var(--color-04);
  font-size: var(--small-font-size);
  white-space: nowrap;
  margin-bottom: 18px;
}

.resume-items .item .info span {
  position: relative;
  background: var(--primary-color);
  color: var(--dark-color);
  font-size: var(--font-medium);
  padding: 3px 12px;
  border-radius: 3px;
}

.experience .resume-line {
  background: var(--primary-color);
  width: 2px;
  height: 250px;
}

.education,
.experience {
  transform: translateY(35px);
}

.skill-container {
  max-width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 50px;
}

.skill-card {
  position: relative;
  background: var(--card-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 25px;
  border-bottom: 5px solid var(--primary-color);
  border-radius: 10px;
}

.skill-title {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 50px;
}

.skill-title i {
  font-size: 2.15rem;
  color: var(--primary-color);
}

.skill-title span {
  color: var(--color-02);
  font-size: var(--medium-font-size);
  font-weight: var(--font-semi-bold);
}

.skill-categories {
  display: grid;
  place-items: start;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 65px;
  row-gap: 35px;
  padding: 0 50px;
}

.skill {
  display: flex;
  column-gap: 15px;
}

.skill-info {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.skill i {
  color: var(--primary-color);
  font-size: 1.35rem;
}

.skill-info h5 {
  color: var(--color-02);
  font-size: var(--h5-font-size);
  font-weight: var(--font-semi-bold);
}

.skill-info span {
  color: var(--color-04);
  font-size: var(--tiny-font-size);
}

.skill-info span {
  color: var(--color-04);
  font-size: var(--tiny-font-size);
}

/* =============================Services======================== */
.service-container {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 35px;
  row-gap: 38px;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  width: 275px;
  height: 285px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  border-bottom: 5px solid var(--primary-color);
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}

.service-icon {
  color: var(--primary-color);
  font-size: 4.15rem;
}

.service-info h4 {
  color: var(--color-02);
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  white-space: nowrap;
  max-width: 150px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.service-see-more {
  font-size: var(--base-font-size);
  color: var(--color-01);
  cursor: pointer;
  transition: 0.3s;
}

.service-see-more:hover {
  color: var(--hover-color);
}

.service-see-more i {
  font-size: 1.15rem;
  transition: margin-left 0.3s;
}

.service-see-more:hover i {
  margin-left: 3px;
}

.service-modal-backdrop {
  z-index: var(--z-overlay);
  position: fixed;
  background: var(--modal-backdrop-bg);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-modal-backdrop.active {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.service-modal {
  position: relative;
  background: var(--color-03);
  width: 825px;
  height: fit-content;
  margin: 75px 25px;
  padding: 50px 25px 50px 45px;
  border-radius: 15px;
  border-bottom: 5px solid var(--primary-color);
  overflow: hidden;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.service-modal.active {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s;
}

.modal-close-btn {
  position: absolute;
  color: var(--color-01);
  font-size: 1.35rem;
  top: 0;
  right: 0;
  margin: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-close-btn:hover {
  color: var(--hover-color);
}

.service-modal .modal-content {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  max-height: 360px;
  margin-top: 5px;
  padding: 10px;
  overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
  background: hsl(var(--hue) 25% 20%);
  width: 5px;
  border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--hover-color);
}

.service-modal .modal-title {
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-modal .modal-title h3 {
  color: var(--color-01);
  font-size: var(--h3-font-size);
  font-weight: 700;
}

.service-modal .modal-title p {
  color: var(--color-04);
  font-size: var(--small-font-size);
  font-weight: var(--font-regular);
  margin-top: 30px;
  margin-bottom: 20px;
}

.service-modal .modal-content h4 {
  color: var(--color-02);
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 15px;
}

.modal-content .my-services li {
  display: flex;
  margin-bottom: 25px;
}

.modal-content .my-services li i {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-right: 10px;
}

.modal-content .my-services li p {
  color: var(--color-02);
  font-size: var(--base-font-size);
  line-height: 22px;
}

/* ===================== PORTFOLIO ===================== */

.portfolio-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 15px;
  margin-bottom: 85px;
}

.portfolio-tabs .tab-btn {
  color: var(--color-01);
  font-size: var(--medium-font-size);
  font-weight: var(--font-medium);
  padding: 12px 0;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-tabs .tab-btn:hover {
  color: var(--hover-color);
}

.portfolio-tabs .tab-btn.active {
  color: var(--dark-color);
  background: var(--primary-color);
  padding: 12px 25px;
}

.portfolio-tabs .tab-btn.active:hover {
  color: var(--white-color);
  background: var(--hover-color);
}

.portfolio-container {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 55px;
}

.portfolio-container .card-with-modal {
  display: block;
}

.portfolio-container .card-with-modal.hidden {
  display: none;
}

.portfolio-card {
  position: relative;
  background: var(--card-bg);
  width: 350px;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}

.portfolio-card .card-img {
  width: 100%;
}

.portfolio-card .card-img img {
  width: 100%;
}

.portfolio-card .card-info {
  position: relative;
  padding: 10px 15px 20px 20px;
}

.portfolio-card .card-info span {
  color: var(--color-04);
  font-size: var(--tiny-font-size);
  font-weight: var(--font-regular);
  text-transform: uppercase;
}

.portfolio-card .card-info h4 {
  color: var(--color-02);
  font-size: var(--medium-font-size);
  font-weight: var(--font-medium);
  margin-top: 5px;
}

.portfolio-card .card-info i {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--primary-color);
  font-size: 1.7rem;
  margin: 15px;
  transform: scale(0);
  transition: 0.3s;
}

.portfolio-card:hover .card-info i {
  transform: scale(1);
}

.portfolio-modal-backdrop {
  z-index: var(--z-overlay);
  position: fixed;
  background: var(--modal-backdrop-bg);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  overflow-y: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-modal-backdrop.active {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.portfolio-modal-backdrop::-webkit-scrollbar {
  background: hsl (var(--hue) 25% 20%);
  width: 8px;
  border-radius: 5px;
}

.portfolio-modal-backdrop::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

.portfolio-modal-backdrop::-webkit-scrollbar-thumb:hover {
  background: var(--hover-color);
}

.portfolio-modal {
  position: relative;
  background: var(--color-03);
  max-width: 900px;
  height: fit-content;
  margin: 60px 25px;
  padding: 30px 45px;
  border-radius: 15px;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.portfolio-modal.active {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s;
}

.portfolio-modal .modal-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 25px;
}

.portfolio-modal .modal-content .modal-title {
  color: var(--color-02);
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
}

.portfolio-modal .modal-content .description {
  color: var(--color-04);
  font-size: var(--base-font-size);
  font-weight: var(--font-regular);
}

/* self starts */
.modal-img img {
  max-width: 100%;
  max-height: 100vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

/* Testimonials */
.testimonials {
  position: relative;
  width: 100%;
  margin-top: 12em;
}

.swiper {
  width: 100%;
  max-width: 1050px;
  height: 275px;
}

.swiper-slide {
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 45px;
}

.swiper-slide .client-details {
  max-width: 500px;
  text-align: left;
}

.swiper-slide .client-details h3 {
  color: var(--color-02);
  font-size: var(--xlarge-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 5px;
}

.swiper-slide .client-details span {
  font-size: var(--small-font-size);
  font-weight: var(--font-regular);
}

.swiper-slide .client-details p {
  color: var(--color-02);
  font-size: var(--base-font-size);
  font-weight: var(--font-regular);
  margin-top: 15px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
  color: var(--primary-color);
  font-size: 4.5rem;
  transition: 0.3s ease;
}

.swiper-button-next i:hover,
.swiper-button-prev i:hover {
  color: var(--hover-color);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.swiper-slide .client-img {
  width: 200px;
}

.swiper-slide .client-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* ========================Contact Me======================== */
.contact-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 60px;
}

.contact-info h3 {
  color: var(--color-02);
  font-size: var(--base-font-size);
  font-weight: var(--medium-font-size);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.contact-icon {
  color: var(--primary-color);
  font-size: 2rem;
  background: var(--card-bg);
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}

.contact-method span {
  font-size: var(--tiny-font-size);
  text-transform: uppercase;
}

.contact-method h4 {
  color: var(--color-02);
  font-size: var(--base-font-size);
  font-weight: var(--medium-font-size);
}

.contact-method a {
  color: var(--primary-color);
  transition: 0.3s;
}

.contact-method a:hover {
  color: var(--hover-color);
}

.contact-method a span {
  font-size: var(--small-font-size);
  text-transform: none;
}

.contact-method a i {
  font-size: var(--medium-font-size);
}

.contact-social-links {
  width: 100%;
  display: flex;
  column-gap: 25px;
}

.contact-social-links li {
  font-size: 1.75rem;
  background: var(--card-bg);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}

.contact-social-links li a {
  color: var(--primary-color);
  transition: 0.3s;
}

.contact-social-links li:hover a {
  color: var(--hover-color);
}

.contact-form-body {
  position: relative;
  background: var(--card-bg);
  width: 100%;
  padding: 50px;
  border-radius: 35px;
}

.contact-form-body h2 {
  color: var(--color-02);
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form-body h2 span {
  color: var(--primary-color);
}

.contact-form-body p {
  font-size: var(--tiny-font-size);
  margin-bottom: 45px;
}

.contact-form-body form {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.contact-form-body form .input-group input,
.contact-form-body form .input-group textarea {
  color: var(--color-03);
  font-size: var(--small-font-size);
  background: hsl(var(--hue) 54% 74% / 0.1);
  width: 100%;
  border: none;
  outline: none;
  padding: 17px 20px;
  border-radius: 10px;
  color: white;
}

.contact-form-body form .input-group textarea {
  height: 100px;
  resize: none;
  color: white;
}

.contact-form-body form .send-message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.contact-form-body .input-group button {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  width: 150px;
  padding: 10px 10px;
  margin-top: 10px;
  transition: 0.35;
}

.contact-form-alert {
  cursor: pointer;
}

.contact-form-alert span {
  color: var(--color-02);
  font-size: var(--tiny-font-size);
  font-weight: var(--font-regular);
}

.contact-form-alert i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* ==========================FOOTER====================== */
.dr-footer {
  background: var(--footer-bg);
  padding-top: 100px;
  padding-bottom: 165px;
}

.dr-footer .dr-container .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 40px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 22px;
  row-gap: 22px;
}

.footer-menu .menu-item a {
  color: var(--color-01);
  font-size: calc(var(--tiny-font-size) - 0.07rem);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 15px;
  transition: 0.3s;
}

.footer-menu .menu-item a:hover {
  color: var(--color-03);
  background: var(--color-01);
}

.dr-footer .copy-right {
  color: var(--color-04);
  font-size: var(--small-font-size);
  margin-top: 10px;
}

.dr-footer .copy-right a:hover {
  color: var(--color-01);
  transition: 0.3s;
}

/* =======================Media Queries ================= */
/* Media Queries (max-width: 1600px) */
@media screen and (max-width: 1600px) {
  .cursor-symbol {
    /* display: none; */
  }

  .dr-container {
    max-width: 1075px;
  }

  .avatar-img {
    width: 385px;
    height: 385px;
  }
}

/* Media Queries (max-width: 1200px) */
@media screen and (max-width: 1200px) {
  .dr-container {
    max-width: 100%;
    margin-left: 50px;
    margin-right: 50px;
  }

  .section-content {
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    column-gap: 0;
    flex-direction: column;
    row-gap: 50px;
  }

  .about-img {
    width: 375px;
  }

  .about-details {
    width: unset;
  }

  .about-info {
    display: grid;
    place-items: center;
  }

  .about-description {
    max-width: 700px;
  }

  .about-buttons {
    width: 100%;
    justify-content: center;
  }

  .skill-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Media Queries (max-width: 992px) */
@media screen and (max-width: 992px) {
  .avatar-container {
    flex-direction: column-reverse;
    row-gap: 10px;
  }

  .avatar-container .hire-btn-01 {
    display: block;
  }

  .avatar-container .hire-btn-02 {
    display: none;
  }

  .avatar-img {
    width: 350px;
  }

  .avatar-info .text-content {
    align-items: center;
    text-align: center;
  }

  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .swiper {
    max-width: 700px;
    height: 450px;
  }

  .swiper-slide {
    flex-direction: column;
  }

  .swiper-slide .client-img {
    margin-bottom: 35px;
  }

  .swiper-slide .client-details {
    text-align: center;
  }

  .contact-container {
    flex-direction: column;
    row-gap: 75px;
  }

  .contact-info {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .contact-social-links {
    width: 100%;
    display: flex;
    column-gap: 25px;
    justify-content: center;
  }
}

/* ===================================
    Media Queries (max-width: 768px)
====================================== */
@media screen and (max-width: 768px) {
  :root {
    /* ======= Font sizes ======= */
    --h1-font-size: 2.3rem;
    --h2-font-size: 1.97rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.3rem;
    --h5-font-size: 1.05rem;

    --xlarge-font-size: 1.28rem;
    --large-font-size: 1.13rem;
    --medium-font-size: 1.06rem;
    --base-font-size: 1rem;
    --small-font-size: 0.93rem;
    --tiny-font-size: 0.88rem;
  }

  .dr-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .dr-logo a {
    font-size: 2.35rem;
  }

  .lets-talk-btn {
    display: none;
  }

  .lets-talk-icon {
    font-size: 1.6rem;
    display: block;
  }

  .theme-btn i {
    font-size: 1.6rem;
  }

  .bottom-nav {
    bottom: -30px;
  }

  .bottom-nav.active {
    bottom: 30px;
  }

  .bottom-nav .menu li a i {
    font-size: 1.25rem;
  }

  .home-social .social-line {
    margin-top: 32px;
    margin-bottom: 20px;
  }

  .resume-items .item .info {
    width: 185px;
    column-gap: 15px;
  }

  .resume-items .item-left .info {
    right: 25px;
  }

  .resume-items .item-right .info {
    left: 75px;
  }

  .resume-items .item .info i {
    display: none;
  }

  .skill-card {
    padding: 50px 0;
  }

  .skill i {
    font-size: 1.25rem;
  }

  .service-container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }

  .service-card {
    width: 245px;
    height: 250px;
  }

  .service-icon {
    font-size: 3.25rem;
  }

  .service-info h4 {
    white-space: wrap;
    max-width: unset;
  }

  .service-modal {
    padding: 50px 20px;
  }

  .portfolio-container {
    row-gap: 35px;
  }

  .portfolio-modal {
    padding: 50px 20px;
  }

  .swiper-button-next i,
  .swiper-button-prev i {
    font-size: 4rem;
  }

  .contact-form-body {
    padding: 35px;
    border-radius: 10px;
  }

  .footer-menu {
    column-gap: 10px;
  }

  .to-top-btn.active {
    right: 20px;
  }
}

/* ===================================
    Media Queries (max-width: 480px)
====================================== */
@media screen and (max-width: 480px) {
  :root {
    /* ============= Font sizes ======= */
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.9rem;
    --h3-font-size: 1.65rem;
    --h4-font-size: 1.25rem;
    --h5-font-size: 1.02rem;

    --xlarge-font-size: 1.25rem;
    --large-font-size: 1.1rem;
    --medium-font-size: 1.03rem;
    --base-font-size: 1rem;
    --small-font-size: 0.9rem;
    --tiny-font-size: 0.85rem;
  }

  .dr-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .dr-header {
    padding: 20px 0;
  }

  .header-btns {
    column-gap: 15px;
  }

  .home-container .dr-wrapper {
    flex-direction: column-reverse;
  }

  .home-social {
    position: relative;
  }

  .home-social span {
    display: none;
  }

  .home-social .social-line {
    display: none;
  }

  .home-social .social-icons {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 35px;
  }

  .home-scroll-btn {
    display: none;
  }

  .avatar-container {
    row-gap: 0;
    width: 100%;
  }

  .avatar-img {
    width: 80%;
    height: fit-content;
    padding-bottom: 94%;
    display: block;
    margin: 0 auto;
  }

  .bottom-nav {
    width: 100%;
    padding: 0 20px;
  }

  .bottom-nav .menu {
    padding: 17px 25px;
    justify-content: space-between;
    column-gap: 7px;
    width: 100%;
  }

  .bottom-nav .menu li a i {
    font-size: 1.15rem;
    padding: 7px;
  }

  .bottom-nav .menu-hide-btn {
    font-size: 1.25rem;
  }

  .menu-show-btn {
    width: 75px;
    height: 45px;
    row-gap: 4px;
    bottom: -30px;
  }

  .menu-show-btn.active {
    bottom: 70px;
    /* display:none; */
  }

  .menu-show-btn .bar-01,
  .menu-show-btn .bar-02 {
    width: 37px;
    height: 3px;
  }

  .about-img {
    width: 100%;
    max-width: 375px;
  }

  .pro-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 2fr));
  }

  .pro-card {
    flex-direction: column;
    row-gap: 3px;
  }

  .pro-card span {
    font-size: 2.5rem;
  }

  .pro-card p {
    text-align: center;
  }

  .about-buttons {
    column-gap: 15px;
  }

  .resume-items .item .info {
    width: 140px;
  }

  .resume-items .item-left .info {
    right: 20px;
  }

  .resume-items .item-right .info {
    left: 45px;
  }

  .resume-items .item .info p {
    white-space: break-spaces;
  }

  .skill-container {
    row-gap: 35px;
  }

  .skill-card {
    padding: 35px 0;
  }

  .skill-title {
    margin-bottom: 35px;
  }

  .skill-categories {
    column-gap: 35px;
    padding: 0 25px;
  }

  .service-container {
    width: 100%;
  }

  .card-with-modal {
    width: 100%;
  }

  .service-card {
    margin: 0 auto;
  }

  .service-modal {
    padding: 50px 15px;
    margin: 75px 20px;
  }

  .portfolio-container {
    row-gap: 25px;
    width: 100%;
  }

  .portfolio-card {
    width: 100%;
  }

  .portfolio-modal {
    padding: 65px 20px;
  }

  .contact-details {
    row-gap: 35px;
  }

  .contact-social-links {
    column-gap: 20px;
  }

  .contact-social-links li {
    font-size: 1.65rem;
    width: 75px;
    height: 75px;
  }

  .contact-form-body {
    padding: 35px 20px;
  }

  .contact-form-body h2 {
    text-align: center;
  }

  .contact-form-body .input-group {
    display: grid;
    place-items: center;
  }

  .to-top-btn {
    display: none;
  }

  .copy-right {
    text-align: center;
  }

  .cursor-symbol {
    display: none;
  }

  .bottom-nav-inner {
    position: relative;
    margin-bottom: 40px;
  }

  .swiper-slide .client-img img {
    width: 70%;
    height: 120px;
  }
}

/* ==================AIR Bubbles =================== */
.bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* So it doesn't block clicks */
  z-index: -2;
  /* Keep behind content */
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(188, 211, 220, 0.46);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  to {
    transform: translateY(-120vh);
    opacity: 0;
  }
}

/* ===================AIR Bubbles End ====================== */
/* ===================Auto Typing=========================== */
h3.my-profession {
  font-size: 30px;
  margin: 15px 0;
  font-weight: 600;
}

.typing {
  color: dodgerblue;
}

/* ===================Auto Typing Ends here ================ */
/* ====================Loader Animation===================== */

/* ====================Loader Animation ends================ */
/* =========================Quatation======================= */
.floating-quote {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(5px);
  /* glass effect */
  padding: 12px 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  z-index: 999;
  pointer-events: none;
  /* So it doesn't block clicks */
}

/* ======================Gradient for my name ===================== */

@keyframes rainbowGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.my-name {
  background: linear-gradient(270deg,
      #ff3c78,
      #ffcc00,
      #00f0ff,
      #7264e9ff,
      #7c00ff);
  background-size: 1000% 1000%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowGradient 8s ease infinite;
  text-align: center;
}

/* =========================logo Animation======================= */
.dr-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  /* space between sword and text */
  font-family: "Segoe UI", sans-serif;
}

.sword {
  width: 50px;
  height: 10px;
  position: relative;
  background: linear-gradient(120deg,
      #ff0000,
      #ffa500,
      #ffff00,
      #ffa500,
      #ff0000);
  background-size: 300% 300%;
  animation: fireWave 2s ease-in-out infinite;
  box-shadow: 0 0 10px #ff4500, 0 0 20px #ff8c00, 0 0 30px #ffd700,
    0 0 40px #ff0000;
}

.left-sword {
  clip-path: polygon(0 50%, 90% 0, 100% 50%, 90% 100%, 0 50%);
}

.right-sword {
  clip-path: polygon(0 50%, 90% 0, 100% 50%, 90% 100%, 0 50%);
  transform: scaleX(-1);
}

.dr-logo {
  text-decoration: none;
  /* color: white; */
}

@keyframes fireWave {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.highlight-text {
  color: rgb(108, 241, 93)
}

.value-privacy{
  font-style: italic;
  margin: 0 auto;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 6px;
  /* medium thickness */
  background: linear-gradient(90deg, rgb(0, 255, 255), rgb(255, 0, 255), rgb(255, 255, 0));
  border-radius: 3px;
  z-index: 9999;
  transition: width 0.2s ease, background 0.4s ease;
}
/* the painted stroke */
/* .underline_paint::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 36%;
  z-index: -1;
  background: linear-gradient(90deg, #ffd166 0%, #ef476f 40%, #8ac6d1 100%);
  transform: skewX(-12deg);
  filter: blur(6px) saturate(120%);
  opacity: 0.95;
  border-radius: 18px;
  pointer-events: none;
}   */