@import url("blog.css");
@import url("blogadditions.css");

/* RESET */
:root {
  color-scheme: light;
  forced-color-adjust: none;
}

/* Optional: prevent dark mode overrides in Safari iOS */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
a,
button,
textarea {
  font: inherit;
}

input {
  letter-spacing: 1px;
  padding: 0.2rem;
}

/* GENERAL STYLES */
html {
  background-color: white;
  padding: 0.3rem;
  scroll-behavior: smooth;
  touch-action: pan-y;
  width: 100%;
}
.fixed {
  position: fixed;
  top: 50px;
  right: 0;
  width: 100%;
}
.sticky {
  position: sticky;
  top: 50px;
}
.hideDisplay {
  opacity: 0 !important;
  display: flex !important;
  pointer-events: none;
}

.showDisplay {
  opacity: 1 !important;
  pointer-events: all;
  display: flex !important;
}

/* ── NAV (blog-style redesign) ── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  padding: 0 6%;
}

.div-of-all-nav-elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.debrah_kobby-on-nav {
  margin-left: 0;
  margin-top: 0;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.debrah_kobby-on-nav p {
  font-family: "Space Mono", monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #0d0d0d;
}

.only_kobby_selected_span {
  color: blueviolet;
}

.div-of-middle-nav-elements {
  background: none;
  border: none;
  box-shadow: none;
  width: auto;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

.middle-nav-elements {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  font-size: 12px;
  justify-content: center;
  font-weight: 400;
}

.middle-nav-elements a {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  color: #555;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.middle-nav-elements a:hover {
  color: blueviolet;
  transform: none;
}

#home_link_on_nav {
  color: blueviolet;
  text-decoration: none;
}

.resume_downloader_on_nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  justify-content: flex-end;
}

.downloadresumeonheader {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 14px;
  border-radius: 2px;
  cursor: pointer;
  background: none;
  box-shadow: none;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.downloadresumeonheader:hover {
  border-color: blueviolet;
  color: blueviolet;
  background: none;
  box-shadow: none;
}

.downloadresumeonheader a {
  color: inherit;
  text-decoration: none;
}

.downloadresumeonheader i {
  color: inherit;
  font-size: 11px;
}

.toggle_light-and-dark-mode {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #555;
  font-size: 14px;
  transition: color 0.25s ease;
}

.toggle_light-and-dark-mode:hover {
  color: blueviolet;
}

.elipseonsmallscreens {
  display: none;
}
/* FIRST PAGE */
#firstpage {
  margin-top: 0;
  /* padding-top: 64px; */
  height: 100vh;
  position: relative;
}

.getintouchmodalonfirstpage {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-family: "Space Mono", monospace, sans-serif;
}

.getintouchmodalonfirstpage .modal-content {
  padding: 2rem 2.2rem 1.8rem;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 340px;
}

.git-modal-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.git-modal-icon {
  width: 48px;
  height: 48px;
  background: #f3f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.2rem;
  color: blueviolet;
}

.git-modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.25rem;
}

.git-modal-sub {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.git-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.git-row:hover {
  transform: translateX(4px);
  opacity: 0.9;
}

.git-wa {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.git-em {
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
}
.git-ph {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.git-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: white;
}

.git-wa-box {
  background: #22c55e;
}
.git-em-box {
  background: #7c3aed;
}
.git-ph-box {
  background: #2563eb;
}

.git-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.git-label {
  font-size: 0.88rem;
  font-weight: 600;
}
.git-wa .git-label {
  color: #15803d;
}
.git-em .git-label {
  color: #5b21b6;
}
.git-ph .git-label {
  color: #1d4ed8;
}

.git-value {
  font-size: 0.75rem;
}
.git-wa .git-value {
  color: #166534;
}
.git-em .git-value {
  color: #6d28d9;
}
.git-ph .git-value {
  color: #1e40af;
}

.git-arrow {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.git-wa .git-arrow {
  color: #22c55e;
}
.git-em .git-arrow {
  color: #7c3aed;
}
.git-ph .git-arrow {
  color: #2563eb;
}

.git-footer-note {
  text-align: center;
  font-size: 0.72rem;
  color: #bbb;
  margin: 0.5rem 0 0;
}

.toastforresumedownloaded {
  gap: 1.3rem;
  width: 260px;
  padding: 0.5rem;
  background-color: rgba(129, 129, 129, 0.678);
  border-radius: 15px;
  border: 1px solid blueviolet;
  align-items: center;
  position: fixed;
  top: 12%;
  right: 1%;
  font-family: "Space Mono", monospace;
  display: none;
  color: white;
  font-size: 0.9rem;
}

#correctonresumetoast {
  width: 25px;
  height: 25px;
  background-color: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.firstpage_div_of_items {
  display: grid;
  grid-template-columns: 2fr 1fr 0.06fr;
  grid-template-areas: "writing pic social";
  align-items: center;
  padding: 0.4rem;
  margin-top: 5%;
  margin-left: 1.4rem;
  margin-right: 1.8rem;
}

.writing_area_on_first_page {
  grid-area: writing;
  white-space: wrap;
}

.picture_on_firstpage {
  grid-area: pic;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  border-radius: 50%;
  width: 380px;
  height: 380px;
}

.social_on_first_page {
  grid-area: social;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.social_on_first_page_last {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.social_on_first_page i,
.social_on_first_page_last i {
  color: #aaa;
  font-size: 1.3rem;
  transition: color 0.25s ease;
}

.social_on_first_page i:hover {
  color: blueviolet;
  transform: none;
}

.social_on_first_page_last i {
  color: white;
}

.social_on_first_page_last i:hover {
  color: rgb(199, 199, 199);
  transform: scale(1.1);
}

.modsforsocilaicons {
  position: fixed;
  top: 11%;
  right: 1%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  background-color: blueviolet;
  padding: 0.5rem;
  border-radius: 17px;
}

.hey_im {
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: blueviolet;
  margin-bottom: 12px;
}

.actualnameonfirstpage {
  font-family: "Space Mono", monospace;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  color: #0d0d0d;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 0;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.secondactualnameonfirstpage {
  font-family: "Lavishly Yours", cursive;
  font-size: clamp(52px, 7vw, 96px);
  color: blueviolet;
  line-height: 1;
  margin-top: -4px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: blueviolet;
  font-weight: 400;
}

.textwritingstackonfirstpage {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  margin: 20px 0 12px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 2rem;
}

.amtext {
  position: relative;
}

.fixedtext {
  color: #555;
  font-family: "Space Mono", monospace;
}

.variabletext::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border-left: 2px solid blueviolet;
  transform: translateX(0%);
  animation: typewriter 6s steps(15) infinite;
}

@keyframes typewriter {
  40%,
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.variabletext {
  display: inline-block;
  min-width: 16ch;
  overflow: hidden;
  color: blueviolet;
  font-family: "Space Mono", monospace;
}

.long_intro_text_on_first_page {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  display: flex;
  max-width: 420px;
  margin-bottom: 32px;
}
.buttons_div_on_first_page {
  margin-top: 0;
  display: flex;
  gap: 12px;
}

.get_in_touch_button_on_first_page {
  padding: 12px 24px;
  border-radius: 2px;
  background: blueviolet;
  color: white;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease;
  width: auto;
}

.get_in_touch_button_on_first_page:hover {
  background: #6a0dad;
}

.browse_projects_button_on_first_page {
  padding: 12px 24px;
  border-radius: 2px;
  background: none;
  color: #555;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
  width: auto;
}

.browse_projects_button_on_first_page:hover {
  border-color: blueviolet;
  color: blueviolet;
  background: none;
}

/* ABOUT PAGE */
#about_me {
  padding: 0.4rem;
  margin-left: 1.4rem;
}

.aboutmepageheading {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: #0d0d0d;
  display: flex;
  justify-content: center;
  letter-spacing: -1px;
}

.first_text_under_about {
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #999;
  width: 80%;
  margin: 16px auto 0;
  text-align: center;
}

.left-and-right-div-in-in-about {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  grid-template-areas: "art abt";
  margin-top: 3rem;
}

.left-image-in-about {
  grid-area: "art";
  margin-top: -2rem;
  margin-left: 2rem;
}

.right-text-under-about {
  grid-area: "abt";
  margin-top: 1.5rem;
}

.rightside_onabout_heading {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0d0d0d;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.rightside_onabout_heading::before {
  content: "/ ";
  color: blueviolet;
  font-family: "Space Mono", monospace;
}

.actualrighttxt {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  width: 80%;
}
.actualrighttxt p {
  margin-bottom: 16px;
}
.dottedstuff {
  display: flex;
  gap: 2rem;
  margin-top: 1.3rem;
  margin-left: 0;
  font-family: "Space Mono", monospace;
  font-size: 12px;
}
.dottedstuff ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dottedstuff ul li {
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dottedstuff ul li::before {
  content: "→";
  color: blueviolet;
  font-size: 11px;
}
/* SKILLS PAGE */
.skillstab {
  display: flex;
  gap: 0.3rem;
  background-color: #f0ebff;
  border-radius: 50px;
  width: fit-content;
  max-width: 90%;
  padding: 0.35rem;
  font-family: "Poppins", sans-serif;
  margin: 0 auto;
  font-size: 0.85rem;
  justify-content: center;
  border: 1px solid rgba(138, 43, 226, 0.15);
  box-shadow: 0 2px 12px rgba(138, 43, 226, 0.08);
  flex-wrap: wrap;
}

.individualtab {
  cursor: pointer;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.individualtab:hover {
  color: blueviolet;
  background-color: rgba(138, 43, 226, 0.07);
}
.individualtabcontent {
  display: flex;
  background-color: white;
  border: 2px solid blueviolet;
  width: 95%;
  margin: 0 auto;
  margin-top: 2rem;
  border-radius: 7px;
  padding: 2rem;
  padding-top: 1rem;
  display: none;
  transition: all 0.3s ease-in-out;
}
.active_tab_content {
  display: flex;
  transition: all 0.3s ease-in-out;
}

.content-for-skills-tabs {
  background: linear-gradient(135deg, #f5f0ff 0%, #faf8ff 100%);
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(138, 43, 226, 0.12);
}

.individualtabcontent {
  display: none;
  gap: 2rem;
  transition: all 0.3s ease-in-out;
}

.active_tab_content {
  display: flex;
}

.left_content_on_webdevcontent {
  width: 40%;
  transition: all 0.3s ease-in-out;
  border-right: 1px solid rgba(138, 43, 226, 0.12);
  padding-right: 2rem;
}

.chevronbeofrewebdevtext {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0ebff;
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 10px;
  padding: 0.6rem;
  color: blueviolet;
  font-size: 0.8rem;
  box-shadow: none;
  backdrop-filter: none;
  margin-right: 0.6rem;
}

.main-content-heading {
  display: flex;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  align-items: center;
  margin-bottom: 0.5rem;
}

.main-content-heading p {
  font-size: 1.3rem;
  font-weight: bold;
  color: #111;
}

.secondary-content-heading {
  margin-top: 0.3rem;
  color: rgb(100, 100, 100);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  width: 90%;
}

.rightwebdevcontentstuff {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-content: flex-start;
}

.eachwebdevstack {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  background: #fff;
  color: #5b21b6;
  border: 1px solid rgba(138, 43, 226, 0.22);
  box-shadow: 0 2px 8px rgba(138, 43, 226, 0.07);
  backdrop-filter: none;
  height: auto;
  transition: all 0.2s ease;
}

.eachwebdevstack:hover {
  background: blueviolet;
  color: white;
  border-color: blueviolet;
  box-shadow: 0 4px 14px rgba(138, 43, 226, 0.3);
}
.active_skill_tab {
  background-color: blueviolet;
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(138, 43, 226, 0.35);
}
.active_skill_tab:hover {
  color: white;
  background-color: blueviolet;
}
.content-for-skills-tabs {
  background-color: rgb(240, 240, 240);
  border-radius: 15px;
  padding: 1rem;
  margin-top: 2rem;
}

.overall_div_of_skills_page {
  display: flex;
  flex-direction: column;
  padding: 0.4rem;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════
   EXPERIENCE — NEW CARD LAYOUT
   ═══════════════════════════════════ */
.experience_article {
  padding: 0.4rem;
  margin-left: 1.4rem;
  margin-right: 1.4rem;
  margin-top: 4rem;
}

.experience_section_header {
  color: blueviolet;
  font-size: 2.5rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  margin-bottom: 2rem;
}

.eachexpereinceboxwrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.eachexpereincebox {
  position: relative;
  border: 1.5px solid rgba(138, 43, 226, 0.18);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.06);
  min-height: 420px;
}

.eachexpereincebox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, blueviolet, #c084fc);
  border-radius: 20px 20px 0 0;
}

.eachexpereincebox:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(138, 43, 226, 0.14);
}

.experiencecardnumberbadge {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(138, 43, 226, 0.35);
  font-family: "Poppins", sans-serif;
}

.imageforexperience {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #f3edfa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(138, 43, 226, 0.12);
}

.imageforexperience img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.lefttextforexpereinces {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.positionforexperience {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.companyforexperience {
  font-size: 0.9rem;
  font-weight: 600;
  color: blueviolet;
}

.locationofexperience {
  font-size: 0.78rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: "Poppins", sans-serif;
}

.locationofexperience i {
  font-size: 0.7rem;
  color: blueviolet;
}

.datesfroexperiencediv {
  display: flex;
}

.dateforexperience {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f3edfa;
  color: blueviolet;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(138, 43, 226, 0.15);
  font-family: "Poppins", sans-serif;
}

.dateforexperience i {
  font-size: 0.65rem;
}

.rulerforimageandtextforexperinece {
  border: none;
  border-top: 1px solid rgba(138, 43, 226, 0.1);
  margin: 0;
  width: 100%;
}

.rightactualexperinece {
  flex: 1;
}

.actualexperieence {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

.experiencetagsdiv {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.eachexperiencetag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(138, 43, 226, 0.25);
  color: blueviolet;
  letter-spacing: 0.02em;
  font-family: "Poppins", sans-serif;
}

#services {
  padding: 0.4rem;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.servicesarticleheading {
  font-size: 3rem;
  margin: 0 auto;
  color: blueviolet;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  text-align: center;
}

.secondheadingforservicesarticle {
  color: rgb(110, 110, 110);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.overalldivforserviceboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 1.5rem;
  width: 96%;
  max-width: 1100px;
}

/* base card */
.eachservicebox {
  position: relative;
  border: 1.5px dashed rgba(138, 43, 226, 0.3);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.3rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  transition:
    border 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 4px 18px rgba(138, 43, 226, 0.05);
}

/* hover — solid border */
.eachservicebox:hover {
  border: 2px solid blueviolet;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.13);
  transform: translateY(-5px);
}

/* top accent line fades in on hover */
.eachservicebox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, blueviolet, #c084fc);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.eachservicebox:hover::before {
  opacity: 1;
}

/* icon + badge row */
.serviceiconandnumberdiv {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.iconwrapforeachservicebox {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f5f0ff;
  border: 1px solid rgba(138, 43, 226, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: blueviolet;
  font-size: 0.9rem;
}

.servicecardnumberbadge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(138, 43, 226, 0.3);
  font-family: "Poppins", sans-serif;
  margin-left: auto;
}

.service_box_heading {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  color: #111;
  margin: 0;
}

.service_box_paragraph {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* flow chips */
.servicechiptrack {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.eachservicechip {
  padding: 0.22rem 0.6rem;
  border: 1.5px solid rgba(138, 43, 226, 0.28);
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: blueviolet;
  background: #fff;
  white-space: nowrap;
}

.servicearrowbetweenchips {
  font-size: 0.75rem;
  color: rgba(138, 43, 226, 0.45);
  font-weight: 700;
}

/* tool tags */
.servicetooldiv {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.eachservicetool {
  padding: 0.18rem 0.55rem;
  background: #f5f0ff;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #5b21b6;
  border: 1px solid rgba(138, 43, 226, 0.12);
  white-space: nowrap;
}

/* PROJECTS */
.prrojectsection {
  padding: 1rem;
}

.alldivforprojectheadings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.overalldivforallprojects {
  margin-left: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.projectssectionmainheader {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  font-size: 2.5rem;
  color: blueviolet;
}

.secondprojectsheading {
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
}

.rulerunderproectsheadings {
  border: 1px solid blueviolet;
  width: 100px;
  height: 1px;
  border-radius: 15px;
}

.individualprojectcards {
  width: 400px;
}

.individualporjectcardimages {
  position: relative;
  width: 400px;
  height: 330px;
  padding: 1rem;
  padding-top: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f3edfa;
  border-radius: 7px;
}

.phonemockupimageforprojects {
  position: absolute;
  top: 50%;
  left: 70%;
}

.eachprojectcardlogo {
  margin-bottom: 0.5rem;
}

.textundereachprojectcard {
  padding: 0.5rem;
  border: 1px solid rgb(246, 236, 255);
  border-radius: 7px;
}

.textunderprojectcardsheading {
  font-family: "Space Mono", monospace, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
}

.actualtextunderproject {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: rgb(80, 80, 80);
}

.mainindividualprojectimage {
  border-radius: 10px;
}
.project_card_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overall_div_for_full_project_card_display {
  width: 580px;
  height: auto;
  background-color: #d5cddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  padding: 0.4rem;
  border-radius: 12px;
  z-index: 1000;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
}
.FPCD_close_btn {
  position: sticky;
  top: 0;
  display: flex;
  margin-left: auto;
  margin-bottom: -2rem;
  background: rgba(213, 205, 221, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  z-index: 20;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  backdrop-filter: blur(4px);
}
.FPCD_close_btn:hover {
  color: blueviolet;
  background: rgba(255, 255, 255, 0.85);
}

.stack_on_FPCD_mobile {
  display: none;
}
.laptop_and_mobile_view_for_projects_div,
.category_and_stack_div_on_FPCD,
.youtube_and_live_icons_on_FPCD {
  display: flex;
}

.live_on_FPCD {
  margin: 0 auto;
}
.youtube_and_live_icons_on_FPCD a {
  text-decoration: none;
  color: black;
}
.youtube_and_live_icons_on_FPCD i {
  display: flex;
  justify-content: center;
  font-size: 1.3rem;
}
.youtube_and_live_icons_on_FPCD p {
  font-size: 0.7rem;
}
.youtube_on_FPCD i {
  color: red;
}
.live_on_FPCD i {
  color: rgb(0, 162, 255);
}
.short_description_on_FPCD {
  width: 80%;
  font-size: 0.9rem;
}
.laptop_and_mobile_view_for_projects_div {
  gap: 1rem;
  font-family: "Exo 2", sans-serif;
}
.tagline_on_FPCD {
  font-family: "Lavishly Yours", cursive;
  font-size: 1.3rem;
  text-align: center;
  margin-top: -0.6rem;
  color: #421dfc;
}
.name_on_FPCD {
  font-size: 1.5rem;
  font-family: "Exo 2", sans-serif;
  margin-top: 0.3rem;
}
.category_and_stack_div_on_FPCD,
.youtube_and_live_icons_on_FPCD {
  width: 80%;
  margin-top: 1rem;
}
.category_on_FPCD,
.youtube_on_FPCD {
  margin-right: auto;
}
.category_on_FPCD {
  font-size: 0.9rem;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
}
.stack_on_FPCD,
.live_on_FPCD {
  margin-left: auto;
}
.stack_on_FPCD i {
  font-size: 2.5rem;
}
.logo_of_project img {
  width: 115px;
  height: 59px;
}

/* FOOTER SECTION */
.footer-overall-div {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 2rem;
}

.my-socials-in-footer {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.links-div-in-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 3rem;
  row-gap: 1rem;
}

.links-div-in-footer i {
  font-size: 1.6rem;
  color: rgb(59, 59, 59);
  margin-top: 1rem;
}

.links-div-in-footer i:hover {
  color: blueviolet;
  transform: scale(1.2);
  transition: all 0.3s ease-in;
}

.all-rights-reserved-text {
  font-size: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: "Exo 2", sans-serif;
}

/* RECENT POSTS AND NEWSLETTERS */
.overall_div_for_recent_post_and_newsletters {
  display: flex;
  padding: 2rem;
  margin-left: 3rem;
  margin-right: 2rem;
  margin-top: 4rem;
}
.recent_posts_div {
  width: 750px;
}
.heading_for_recent_posts {
  font-family: "Exo 2", sans-serif;
  font-size: 2.5rem;
}
.actual_recent_posts_cards_div {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.date_read_time_category_on_RP {
  font-family: "Exo 2", sans-serif;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

.category_on_RP {
  padding: 0.2rem 0.4rem;
  background-color: rgb(185, 185, 185);
  border-radius: 12px;
}
.category_on_RP i {
  font-size: 0.7rem;
  margin-right: 0.1rem;
}
.heading_on_RP {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  width: 60%;
  margin-bottom: 0.5rem;
}
.short_text_on_RP {
  font-family: "Exo 2", sans-serif;
  width: 70%;
  color: rgb(97, 97, 97);
}
.see_n_the_social_on_RP {
  display: flex;
  gap: 0.5rem;
  margin-top: -0.4rem;
}
.see_n_the_social_on_RP p {
  font-family: "Exo 2", sans-serif;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
}
.icon_for_social_on_RP {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.2rem;
}
.icon_for_social_on_RP a {
  text-decoration: none;
}
.icon_for_social_on_RP I {
  font-size: 3rem;
}
.view_all_on_RP {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 270px;
  display: flex;
  justify-content: center;
  padding: 0.4rem;
  border-radius: 7px;
  font-family: "Exo 2", sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.view_all_on_RP:hover {
  cursor: pointer;
}

.lets_talk_div {
  width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid gray;
  border-radius: 7px;
  padding: 0.2rem;
}
.newsletter_div {
  width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid gray;
  border-radius: 7px;
  padding: 0.2rem;
  margin-top: 1rem;
  gap: 1.3rem;
}
.headingon_NL {
  font-family: "Exo 2", sans-serif;
  font-size: 0.9rem;
  margin: 0 auto;
}
.headingon_NL i {
  font-weight: bold;
}
.short_text_on_NL,
.last_text_NL {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.email_field_on_newsletter {
  position: relative;
}
.email_field_on_newsletter input {
  border: 1px solid gray;
  padding: 0.6rem;
  border-radius: 7px;
  font-family: "Exo 2", sans-serif;
  font-size: 0.9rem;
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.email_field_on_newsletter input::placeholder {
  font-size: 0.8rem;
}
.subscribe_buttn_on_NL {
  border: 1px solid gray;
  padding: 0.4rem;
  border-radius: 7px;
  position: absolute;
  top: 9%;
  left: 72%;
  background-color: rgb(168, 168, 168);
  font-family: "Exo 2", sans-serif;
  font-size: 0.9rem;
}
.bulb_on_LT {
  width: 100px;
  margin: 0 auto;
}
.text_on_LT {
  margin: 0 auto;
}
.lets_talk_button_on_LT {
  margin: 0 auto;
}

.first-text-in_LT {
  font-family: "Exo 2", sans-serif;
  font-size: 1.3rem;
  width: 90%;
  text-align: center;
}
.second-text-in_LT {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.3rem;
}
.lets_talk_button_on_LT {
  border: 1px solid gray;
  padding: 0.7rem;
  display: flex;
  gap: 0.2rem;
  font-family: "Exo 2", sans-serif;
  font-size: 0.9rem;
  border-radius: 10px;
  margin-top: 0.3rem;
}
.lets_talk_button_on_LT:hover {
  cursor: pointer;
}

.postsinellipsis {
  display: none;
}
/* ══════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
   ══════════════════════════════════════════ */

@media screen and (max-width: 1024px) {
  .firstpage_div_of_items {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    gap: 1rem;
  }
  .picture_on_firstpage {
    width: 300px;
    height: 300px;
  }
  .picture_on_firstpage img {
    width: 280px;
  }
  .hey_im,
  .actualnameonfirstpage,
  .secondactualnameonfirstpage {
    font-size: 3rem;
  }
  .left-and-right-div-in-in-about {
    grid-template-columns: 1fr 1.5fr;
  }
  .left-image-in-about img {
    width: 300px;
    height: 300px;
  }
  .skillstab {
    width: 85%;
    gap: 1.5rem;
    font-size: 0.85rem;
  }

  /* EXPERIENCE */
  .eachexpereinceboxwrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .overalldivforallprojects {
    justify-content: center;
    margin-left: 0;
  }

  .overall_div_for_recent_post_and_newsletters {
    flex-direction: column;
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
    gap: 2rem;
  }
  .recent_posts_div {
    width: 100%;
    max-width: 700px;
  }
  .newsleter_and_lets_talk_div {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .lets_talk_div,
  .newsletter_div {
    width: 320px;
  }
  .overalldivforserviceboxes {
    grid-template-columns: repeat(2, 1fr);
    width: 98%;
  }
}

@media screen and (max-width: 768px) {
  .resume_downloader_on_nav {
    display: none !important;
  }
  .postsinellipsis {
    display: flex;
  }
  .debrah_kobby-on-nav {
    margin-left: 1rem;
  }
  .div-of-middle-nav-elements {
    width: auto;
    margin-right: 1rem;
    margin-top: 0;
    margin-left: auto;
  }
  .div-of-all-nav-elements {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .middle-nav-elements {
    gap: 0.8rem;
    font-size: 0.85rem;
  }
  .middle-nav-elements a {
    transition: all 0.3s ease-in-out;
  }
  .div-of-middle-nav-elements {
    width: auto;
    padding: 0.3rem 0.8rem;
  }
  .middle-nav-elements .aboutme_on_nav,
  .middle-nav-elements .skills_on_mid_nav,
  .middle-nav-elements .posts_on_nav {
    display: none;
  }

  #firstpage {
    margin-top: 5rem;
    height: auto;
    min-height: 100vh;
  }
  .firstpage_div_of_items {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    gap: 2rem;
  }
  .picture_on_firstpage {
    order: 1;
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
  .picture_on_firstpage img {
    width: 250px;
  }
  .social_on_first_page {
    order: 2;
    flex-direction: row;
    gap: 1.5rem;
    margin: 0;
  }
  .writing_area_on_first_page {
    order: 3;
    text-align: center;
    width: 100%;
  }
  .hey_im {
    font-size: 2.5rem;
    margin-bottom: -0.5rem;
  }
  .actualnameonfirstpage {
    font-size: 2.5rem;
  }
  .secondactualnameonfirstpage {
    font-size: 2.5rem;
    margin-top: -0.3rem;
  }
  .textwritingstackonfirstpage {
    font-size: 1.1rem;
    justify-content: center;
    display: flex;
  }
  .long_intro_text_on_first_page {
    font-size: 1rem;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
  }
  .buttons_div_on_first_page {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .get_in_touch_button_on_first_page,
  .browse_projects_button_on_first_page {
    width: 140px;
    font-size: 0.85rem;
    padding: 0.7rem;
  }
  .toastforresumedownloaded {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    top: 5%;
    font-size: 0.9rem;
  }
  .getintouchmodalonfirstpage .modal-content {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.2rem;
  }
  .getintouchmodalonfirstpage i {
    font-size: 2rem;
  }

  #about_me {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .aboutmepageheading {
    font-size: 2.5rem;
    text-align: center;
  }
  .first_text_under_about {
    width: 95%;
  }
  .left-and-right-div-in-in-about {
    grid-template-columns: 1fr;
    grid-template-areas: "art" "abt";
    gap: 2rem;
  }
  .left-image-in-about {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }
  .left-image-in-about img {
    width: 280px;
    height: 280px;
  }
  .right-text-under-about {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .actualrighttxt {
    width: 95%;
  }
  .dottedstuff {
    margin-left: 0;
    justify-content: center;
  }

  .skillstab {
    width: 95%;
    gap: 0.8rem;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }
  .individualtabcontent {
    flex-direction: column;
    width: 98%;
    padding: 1.5rem;
  }
  .left_content_on_webdevcontent {
    width: 100%;
  }
  .rightwebdevcontentstuff {
    margin-top: 1.5rem;
    justify-content: center;
  }

  /* EXPERIENCE */
  .experience_article {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .experience_section_header {
    font-size: 2rem;
  }
  .eachexpereinceboxwrapper {
    grid-template-columns: 1fr;
  }
  .eachexpereincebox {
    min-height: auto;
  }

  .servicesarticleheading {
    font-size: 2.5rem;
    padding: 0 1rem;
  }
  .secondheadingforservicesarticle {
    padding: 0 1rem;
  }
  .overalldivforserviceboxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 98%;
  }
  .eachservicebox {
    padding: 1.1rem 1rem 1rem;
  }

  .projectssectionmainheader {
    font-size: 2rem;
  }
  .overalldivforallprojects {
    margin-left: 0;
    justify-content: center;
  }
  .individualprojectcards {
    width: 350px;
  }
  .individualporjectcardimages {
    width: 350px;
    height: 300px;
  }

  .my-socials-in-footer {
    font-size: 1.8rem;
  }
  .links-div-in-footer {
    column-gap: 2rem;
  }
  .all-rights-reserved-text {
    font-size: 1rem;
    text-align: center;
    padding: 0 1rem;
  }
  .elipseonsmallscreens {
    display: flex;
  }

  .project_card_overlay {
    align-items: flex-start;
    padding-top: 2.5rem;
    overflow-y: auto;
  }
  .overall_div_for_full_project_card_display {
    width: 92vw;
    max-height: 88vh;
    padding: 0 0.8rem 1.5rem;
  }
  .laptop_and_mobile_view_for_projects_div {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .latop_view_for_full_project_card_display {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pc_image_on_FPCD img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  .mobile_view_for_ful_project_card_display {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  .mobile_image_on_FPCD img {
    width: 80px;
    height: auto;
  }
  .stack_on_FPCD_mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    max-width: 130px;
  }
  .stack_on_FPCD_mobile i {
    font-size: 2rem;
  }
  .stack_on_FPCD {
    display: none;
  }
  .category_and_stack_div_on_FPCD,
  .youtube_and_live_icons_on_FPCD {
    width: 90%;
  }
  .short_description_on_FPCD {
    width: 90%;
    font-size: 0.85rem;
  }
  .name_on_FPCD {
    font-size: 1.3rem;
  }
  .logo_of_project img {
    width: 90px;
    height: auto;
  }
  .individual_recent_posts_cards {
    border: 1px solid rgb(230, 230, 230);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
  }
  .individual_recent_posts_cards:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .overall_div_for_recent_post_and_newsletters {
    flex-direction: column;
    padding: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 2rem;
    gap: 2rem;
  }
  .recent_posts_div {
    order: 1;
    width: 100%;
  }
  .newsleter_and_lets_talk_div {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
  }
  .lets_talk_div {
    order: 1;
    width: 90%;
    max-width: 400px;
  }
  .newsletter_div {
    order: 2;
    width: 90%;
    max-width: 400px;
  }
  .heading_for_recent_posts {
    font-size: 1.8rem;
  }
  .heading_on_RP {
    width: 90%;
    font-size: 1.1rem;
  }
  .short_text_on_RP {
    width: 95%;
  }
  .view_all_on_RP {
    width: 200px;
    margin-top: 1rem;
  }
  .subscribe_buttn_on_NL {
    left: 76%;
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    top: 11%;
  }
}

@media screen and (max-width: 480px) {
  html {
    padding: 0.2rem;
  }
  .debrah_kobby-on-nav {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
  .elipsecontentonsmallscreens.active {
    display: flex;
  }
  .elipseonsmallscreens {
    display: flex;
  }
  .elipsecontentonsmallscreens {
    flex-direction: column;
    gap: 0.5rem;
    background-color: whitesmoke;
    border: 1px solid rgb(223, 221, 221);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.8rem;
    width: 130px;
    align-items: center;
    border-radius: 15px;
    height: auto;
    position: fixed;
    top: 5%;
    right: 5%;
    z-index: 100;
    font-size: 1rem;
    font-weight: bold;
    font-family:
      "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    display: none;
  }
  .elipsecontentonsmallscreens a {
    text-decoration: none;
    color: black;
  }
  .middle-nav-elements {
    gap: 0.8rem;
    font-size: 1rem;
  }
  .middle-nav-elements .skills_on_mid_nav {
    display: none;
  }
  .div-of-middle-nav-elements {
    padding: 0.25rem 0.6rem;
  }
  .middle-nav-elements .aboutme_on_nav,
  .middle-nav-elements .skills_on_mid_nav,
  .middle-nav-elements .posts_on_nav {
    display: none;
  }

  .picture_on_firstpage {
    width: 320px;
    height: 320px;
  }
  .picture_on_firstpage img {
    width: 300px;
  }
  .hey_im,
  .actualnameonfirstpage,
  .secondactualnameonfirstpage {
    font-size: 2rem;
  }
  .textwritingstackonfirstpage {
    font-size: 1.2rem;
  }
  .long_intro_text_on_first_page {
    font-size: 1.1rem;
  }
  .social_on_first_page {
    gap: 1.2rem;
  }
  .secondactualnameonfirstpage {
    margin-top: 3px;
  }
  .social_on_first_page i {
    font-size: 1.8rem;
  }
  .buttons_div_on_first_page {
    gap: 0.6rem;
    flex-direction: column;
    align-items: center;
  }
  .get_in_touch_button_on_first_page,
  .browse_projects_button_on_first_page {
    width: 220px;
    font-size: 1.2rem;
    padding: 0.6rem;
  }

  .aboutmepageheading {
    font-size: 2rem;
  }
  .first_text_under_about {
    font-size: 1rem;
  }
  .left-image-in-about img {
    width: 250px;
    height: 250px;
  }
  .rightside_onabout_heading {
    font-size: 1.5rem;
  }
  .actualrighttxt {
    font-size: 1rem;
  }
  .right-text-under-about {
    margin-top: -2rem;
  }
  .dottedstuff {
    flex-direction: column;
    gap: 0;
    font-size: 1.2rem;
  }

  .skillstab {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    gap: 1.3rem;
  }
  .individualtabcontent {
    padding: 1rem;
  }
  .main-content-heading p {
    font-size: 1.2rem;
  }
  .secondary-content-heading {
    font-size: 0.9rem;
    width: 100%;
  }
  .eachwebdevstack {
    font-size: 0.85rem;
  }

  /* EXPERIENCE */
  .experience_section_header {
    font-size: 1.8rem;
  }

  .service_box_heading {
    font-size: 0.95rem;
  }
  .service_box_paragraph {
    font-size: 0.74rem;
  }
  .eachservicechip {
    font-size: 0.65rem;
  }
  .eachservicetool {
    font-size: 0.6rem;
  }

  .projectssectionmainheader {
    font-size: 1.8rem;
  }
  .secondprojectsheading {
    font-size: 0.8rem;
    text-align: center;
  }
  .individualprojectcards {
    width: 300px;
  }
  .individualporjectcardimages {
    width: 300px;
    height: 280px;
  }
  .mainindividualprojectimage {
    width: 280px;
    height: auto;
  }
  .phonemockupimageforprojects {
    width: 60px;
    height: 120px;
  }
  .textunderprojectcardsheading {
    font-size: 1.1rem;
  }
  .actualtextunderproject {
    font-size: 0.85rem;
  }

  .my-socials-in-footer {
    font-size: 1.5rem;
  }
  .links-div-in-footer i {
    font-size: 1.4rem;
  }
  .all-rights-reserved-text {
    font-size: 0.9rem;
  }

  .overall_div_for_full_project_card_display {
    width: 96vw;
    padding: 0 0.6rem 1.2rem;
  }
  .pc_image_on_FPCD img {
    max-width: 100%;
    height: auto;
  }
  .mobile_image_on_FPCD img {
    width: 65px;
  }
  .stack_on_FPCD_mobile i {
    font-size: 1.8rem;
  }
  .name_on_FPCD {
    font-size: 1.1rem;
  }
  .tagline_on_FPCD {
    font-size: 1.1rem;
  }
  .short_description_on_FPCD {
    font-size: 0.8rem;
    width: 95%;
  }
  .youtube_and_live_icons_on_FPCD {
    width: 95%;
  }

  .heading_for_recent_posts {
    font-size: 1.5rem;
  }
  .overall_div_for_recent_post_and_newsletters {
    padding: 0.5rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
  }
  .heading_on_RP h4 {
    font-size: 1rem;
  }
  .short_text_on_RP {
    font-size: 0.85rem;
    width: 100%;
  }
  .date_read_time_category_on_RP {
    font-size: 0.75rem;
  }
  .lets_talk_div,
  .newsletter_div {
    width: 95%;
    max-width: none;
  }
  .first-text-in_LT {
    font-size: 1.1rem;
  }
  .headingon_NL {
    font-size: 0.85rem;
  }
  .email_field_on_newsletter input {
    width: 100%;
    font-size: 0.8rem;
  }
  .subscribe_buttn_on_NL {
    left: 65%;
    font-size: 0.9rem;
  }
  .view_all_on_RP {
    width: 100%;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 360px) {
  .middle-nav-elements {
    font-size: 0.7rem;
    gap: 0.4rem;
  }
  .picture_on_firstpage {
    width: 200px;
    height: 200px;
  }
  .picture_on_firstpage img {
    width: 180px;
  }
  .hey_im,
  .actualnameonfirstpage,
  .secondactualnameonfirstpage {
    font-size: 1.8rem;
  }
  .individualprojectcards,
  .individualporjectcardimages {
    width: 280px;
  }
  .overalldivforserviceboxes {
    gap: 0.8rem;
  }
  .elipseonsmallscreens {
    display: flex;
  }
}

/* ── Fix floating social icons pointer-events ── */
.modsforsocilaicons {
  pointer-events: none;
}
.modsforsocilaicons.showDisplay {
  pointer-events: all;
}

@supports (-webkit-touch-callout: none) {
  .email_field_on_newsletter input {
    font-size: 16px;
  }
  .email_field_on_newsletter input::placeholder {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .skillstab {
    width: 95%;
    gap: 0.3rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.35rem 0.5rem;
    /* hide scrollbar but keep scroll */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .skillstab::-webkit-scrollbar {
    display: none;
  }

  .individualtab {
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }
  .dottedstuff {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 3rem;
  }
}

@media screen and (max-width: 480px) {
  .skillstab {
    width: 98%;
    font-size: 0.75rem;
  }

  .individualtab {
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
  }
  .dottedstuff {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2rem;
  }
}

.stickynoteonnewsletter {
  background-color: #bae6fd;
  padding: 1rem 1.2rem;
  border-radius: 4px;
  transform: rotate(-1.5deg);
  box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.12);
  width: 100%;
  margin: 0.8rem auto 0.5rem;
  position: relative;
  box-sizing: border-box;
}

.stickynotelabel {
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #475569;
  display: block;
  margin-bottom: 0.5rem;
}

.stickynoteicon {
  color: red;
  font-size: 0.75rem;
  margin-right: 0.4rem;
}

.stickynotetext {
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  color: #0c4a6e;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

/* CHANGE TO */
.stickynoteauthor {
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  color: #475569;
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}
