/* =========================================
   Google Fonts
========================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* =========================================
   CSS Variables
========================================= */
:root {
  /* ========== Main colors (HSL - hue, saturation, and lightness) ========== */

  /* Blue - hsl(217, 85%, 74%); */
  /* Purple - hsl(245, 54%, 74%); */
  /* Teal - hsl(181, 47%, 49%); */
  /* Yellow - hsl(65, 60%, 70%); */
  /* Green - hsl(162, 60%, 65%); */
  /* Red - hsl(356, 67%, 70%); */
  /* Pink - hsl(330, 73%, 72%); */
  /* Lime - hsl(72, 86%, 52%) - #C4EE1C; */
  /* Cyan - hsl(151, 82%, 54%) - #28E98C; */

  /* Cyan - hsl(155, 92%, 60%) ; */

  /* Orange - hsl(25, 100%, 50%) #FF6B00*/

  /* light-orange - hsl(24, 85%, 65%) */

  /* Blue hsl(233, 100%, 66%) #5468ff*/

  --hue: 162;
  --sat: 92%;
  --light: 60%;

  --primary-color: hsl(var(--hue) var(--sat) var(--light)); /* primary */
  --white-color: hsl(var(--hue) 45% 98%); /* white */
  --dark-color: hsl(var(--hue) 26% 12%); /* dark */

  /* ======= Changeable colors for dark/light themes ======= */
  --color-01: hsl(var(--hue) var(--sat) var(--light)); /* primary to dark */
  --color-02: hsl(var(--hue) 45% 98%); /* white to dark */
  --color-03: hsl(var(--hue) 26% 12%); /* dark to white */
  --color-04: hsl(var(--hue) 0% 75%); /* light-graygray to dark-gray */
  --color-05: hsl(var(--hue) 26% 12%); /* dark to primary */

  --body-color: hsl(190, 30%, 4%); /* dark to white */
  --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.5));
  --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%));

  /* =======New color======= */

  --back-to-top-color: #fff;
  --light-gray-color: hsl(0, 0%, 80%);
  --info-card-bg: hsl(var(--hue) 54% 74% / 0.1);
  --informative-card-color: hsl(120, 65%, 64%);

  --contact-border: hsla(0, 0%, 100%, 0.45);

  --port-card-info: hsla(0, 0%, 0%, 0.733);

  --portfolio-card-color: var(--modal-backdrop-bg);

  /* ======= Font and typography ======= */
  --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;

  /* ======= Layering order(z-index) ======= */
  --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 ======= */

.light-theme {
  /* ======= Changeable colors for dark/light themes ======= */
  --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% 26%); /* light-gray to dark-gray */
  --color-05: hsl(var(--hue) var(--hue) 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: hsla(0, 0%, 97%, 0.792);
  --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%);
  --contact-border: hsla(0, 0%, 1%, 0.815);

  --portfolio-card-color: var(--color-03);

  --port-card-info: hsla(0, 0%, 89%, 0.646);

  .pro-card,
  .skill-card,
  .service-card,
  .portfolio-card,
  .contact-form-body {
    box-shadow: 0 2px 8px hsl(0, 0%, 1%, 0.05);
    border: 1px solid hsl(0, 0%, 85%);
  }
  .contact-icon,
  .contact-social-links li {
    box-shadow: 0 2px 4px hsl(0, 0%, 1%, 0.1);
  }

  /* I ADDED THIS COLOR */

  --back-to-top-color: #333;
  --light-gray-color: hsl(0, 0%, 20%) .bottom-nav .menu-hide-btn {
    box-shadow: 0 2px 4px hsl(0, 0%, 1%, 0.25);
    --info-card-bg: hsl(0, 0%, 100%);
    --informative-card-color: hsl(120, 65%, 14%);
    --contact-border: hsla(0, 0%, 1%, 0.1);
  }

  .ab-footer .copy-right {
    color: hsl(var(--hue) 26% 30%);
  }

  .ab-footer .copy-right a {
    color: hsl(var(--hue) 26% 30%);
  }

  .ab-footer .copy-right a:hover {
    color: hsl(var(--hue) 0% 0%);
  }
}

/* =========================================
   Reset / Normalize
========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--body-font-family);
}

ul,
li {
  list-style: none;
}

a {
  color: var(--color-04);
  text-decoration: none;
  cursor: pointer;
}

/* =========================================
   Base Styles
========================================= */
html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-04);
  background: var(--body-color);
  transition: 0.3s;
}

/* Theme Selector UI */

.theme-selector {
  position: fixed;
  left: 24px;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  padding-top: 25px;
  border-radius: 10px;
  color: white;
  z-index: 1000;
  display: none;
  z-index: var(--z-modal);
  border-bottom: 2px solid hsl(var(--hue) 45% 98% / 0.1);

  /* position: fixed;
  left: 24px;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  padding-top: 25px;
  border-radius: 10px;
  color: white;
  z-index: var(--z-modal);
  border-bottom: 2px solid hsl(var(--hue) 45% 98% / 0.1); */

  /* For animation */
  /* opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  transition: opacity 0.1s ease, transform 0.3s ease, visibility 0.3s;
}

.theme-selector.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(50px); */
}

.color-hide-btn {
  position: absolute;
  top: -7px;
  right: -7px;
  padding: 5px;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--dark-color);
  cursor: pointer;

  box-shadow: 0 2px 4px hsl(0, 0%, 1%, 0.25);
}

.color-hide-btn:hover {
  color: var(--color-02);
}

.theme-selector.active {
  display: block; /* Show when active */
}

.toggle-btn {
  position: fixed;
  left: 25px;
  bottom: 45px;
  background: #333;
  color: var(--white-color);
  font-size: var(--large-font-size);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: var(--z-modal);
}

.toggle-btn:hover {
  background: #555;
}

.theme-colors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  flex-wrap: wrap;
}

.theme-color {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  /* border: 2px solid white; */
  transition: transform 0.2s;
}

.theme-color.active {
  position: relative;
  /* transform: scale(1.2); */
  border-color: #fff;
  /* border: 2px solid white; */
}

.theme-color.active::after {
  position: absolute;
  top: -4.2px;
  left: -4.2px;
  content: "";
  width: 31px;
  height: 31px;
  border: 1.5px solid #999;
  border-radius: 50%;
}

.theme-color:hover {
  transform: scale(1.2);
}

/* =========================================
   Reusable Styles
========================================= */
.ab-section {
  position: relative;
  overflow: hidden;
}

.ab-container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.ab-sub-container {
  padding-top: 7em;
  padding-bottom: 5em;
}

.ab-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 65px;
}

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

/* =========================================
   Components
========================================= */

/* ========== 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(--hover-color);
}

/* ========== Customized cursor ========== */

.cursor {
  z-index: var(--z-max);
  position: fixed;
  /* top: 50%;
  right: 50%; */
  pointer-events: none;
}

.cursor-dot {
  position: absolute;
  background: var(--primary-color);
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition-property: top, left, width, height;
  transition-duration: 0.03s, 0.03s, 0.3s, 0.3s;
}

.cursor-dot.large {
  background: hsl(var(--hue) var(--sat) var(--light) / 0.35);
  width: 75px;
  height: 75px;

  transition-property: top, left, width, height;
  transition-duration: 0.03s, 0.03s, 0.3s, 0.3s;
}

.cursor-circle {
  position: absolute;
  border: 2px solid;
  width: 30px;
  height: 30px;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition-property: top, left;
  transition-duration: 0.09s, 0.09s;
}

/* ========== 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.3 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 {
  color: var(--back-to-top-color);
  position: absolute;
  left: 0;
  bottom: 195px;
  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;
  opacity: 0.5;
  border-radius: 10px;
}

/* ========== Buttons ========== */

.ab-main-btn {
  width: fit-content;
  padding: 14px 30px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.ab-main-btn:hover {
  color: var(--white-color);
  background: var(--hover-color);
  border: 2px solid var(--hover-color);
}

.ab-main-btn a {
  color: var(--color-01);
  font-size: var(--small-font-size);
  font-weight: 500;
  transition: 0.3s;
}

.ab-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);
}

.fill-btn a {
  color: var(--dark-color);
}

/* UNIVERSE BUTTON START HERE */

.star-button {
  position: relative;
  padding: 14px 30px;
  background: var(--primary-color);
  font-size: var(--medium-font-size);
  font-weight: 500;
  color: #181818;
  border: 3px solid var(--hover-color);
  border-radius: 35px;
  box-shadow: 0 0 0 #fec1958c;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  letter-spacing: 1px;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
}

.star-button:hover {
  background: transparent;
  color: var(--color-02);
  box-shadow: 0 0 25px var(--hover-color);
}

.star-button:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.star-button:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.star-button:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.star-button:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.star-button:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.star-button:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #fffdef;
}

/* UNIVERSE BUTTON ENDS HERE */

/* =========================================
   Header
========================================= */
.ab-header {
  z-index: var(--z-fixed);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 30px 0;
  transition: 0.3s ease;
}

.ab-header.shrink {
  background: var(--body-color);
  padding: 12px 0;
}

.ab-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ab-logo a {
  color: var(--color-02);
  font-size: 2.6rem;
  font-weight: var(--font-semi-bold);
  letter-spacing: -3px;
  transition: 0.3s;
}

.ab-logo .ab {
  color: var(--color-01);
}

.ab-logo a:hover {
  color: var(--hover-color);
}

.header-btns {
  display: flex;
  align-items: center;
  justify-content: 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);
}

/* ========== Dark/Light theme buttons ========== */

.theme-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.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);
}

.theme-btn.active-sun-icon .moon-icon,
.theme-btn .sun-icon {
  opacity: 1;
  transition: 0.3s;
}

.theme-btn.active-sun-icon .sun-icon,
.theme-btn .moon-icon {
  opacity: 0;
  transition: 0.3s;
}
/* =========================================
   Bottom navigation menu
========================================= */

.bottom-nav-container {
  position: relative;
}

.bottom-nav {
  z-index: var(--z-fixed);
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  bottom: -70px;
  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.3s ease;
  transition-property: bottom, opacity;
}

.bottom-nav-inner {
  position: relative;
}

.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; */

  background-color: #32323280;
  border: 1px solid #ffffff26;
}

.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: 50px;
  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%;
  bottom: -8px;
  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.5 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.5 ease, 0.3s ease;
  transition-property: bottom, opacity;
}

@keyframes wiggle {
  0%,
  5% {
    transform: rotate(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(100%);
  }
  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;
  margin-bottom: 0.2 rem;
  margin-top: 0.2rem;
}

.menu-show-btn:hover .bar-01,
.menu-show-btn:hover .bar-02 {
  background: var(--hover-color);
}

/* =========================================
   Home
========================================= */
.home-container {
  height: 100vh;
}

.home-container .ab-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: 425px;
  height: 425px;
}

.avatar-img img {
  position: absolute;
  width: 85%;
  left: 30px;
  bottom: 30px;
}

.ab-profile-badge {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

.ab-profile-badge {
  display: none;
}

.home-social {
  position: absolute;
  left: 0;
  bottom: 27%;
}

.home-social .let-connect {
  display: flex;
  align-items: center;
  position: absolute;

  left: 10px;
  color: var(--color-04);
  font-size: var(--tiny-font-size);
  white-space: nowrap;
  transform: rotateZ(-90deg);
  transform-origin: left;
  cursor: pointer;
  background: transparent;
  border: none;
}

.home-social .let-connect:hover {
  font-size: 0.87rem;
  color: var(--color-02);
}
.home-social .let-connect:active {
  font-size: var(--tiny-font-size);
}

.home-social .let-connect span {
  margin-right: 10px;
}

.let-connect i {
  display: inline-block;
  font-size: 2rem;
  transform: rotate(47deg);
}

.home-social .social-line {
  background: var(--color-01);
  width: 1px;
  height: 100px;
  margin-top: 37px;
  margin-bottom: 25px;
  margin-left: 10px;
}

.home-social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.show-social-icon {
  opacity: 0;
}

.home-social .social-icons li a {
  color: var(--color-01);
  font-size: var(--xlarge-font-size);
  transition: 0.3s;
}

.show-social-icon.active {
  opacity: 1;
}

.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-bold);
  color: var(--color-01);
}
.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-regular);
  width: 40ch;
  line-height: 22px;
  margin-bottom: 5px;
}

/* DESCRIPTION LINE */

.description .description-lines {
  position: relative;

  display: inline-block;
  padding: 2px 5px;
  border-left: 1px solid var(--color-04);
  border-right: 1px solid var(--color-04);
  margin-bottom: 5px;
}

.description .top-left {
  position: absolute;
  top: -0.1px;
  left: -0.5px;
  width: 21px;
  height: 1px;
  background: var(--color-04);
}

.description .top-right {
  position: absolute;
  top: -0.1px;
  right: -0.5px;
  width: 21px;
  height: 1px;
  background: var(--color-04);
}

.description .bottom-left {
  position: absolute;
  bottom: -0.1px;
  left: -0.5px;
  width: 20px;
  height: 1px;
  background: var(--color-04);
}
.description .bottom-right {
  position: absolute;
  bottom: -0.1px;
  right: -0.5px;
  width: 20px;
  height: 1px;
  background: var(--color-04);
}

.my-location {
  font-size: var(--small-font-size);
  font-weight: var(--font-light);
  margin-bottom: 35px;
}

.home-scroll-btn {
  position: absolute;
  bottom: 40%;
  right: -5px;
  color: var(--color-04);
  display: grid;
  justify-items: center;
  row-gap: 3px;
  transition: 0.3s;
  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(--color-02);
}

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

.home-scroll-btn i {
  font-size: 2rem;
}
/* =========================================
   About Me
========================================= */
.about-section {
  margin-top: -100px;
}

.about-img {
  position: relative;
  width: 35%;
  justify-content: center;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.about-img.mobile {
  display: none;
}

.about-img.desk {
  display: block;
}

.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(--h3-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: 22px;
}

.pro-list {
  position: relative;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 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: 100%;
}

.about-buttons-trustpilot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
}

.trustpilot {
  background: var(--color-02);
  padding: 2px 10px;
  border-radius: 2px;
}

.trustpilot em {
  display: flex;
  column-gap: 10px;
  font-size: var(--small-font-size);
  color: var(--color-03);
}

.trustpilot img {
  width: 20px;
  color: var(--color-02);
  /* background: white; */
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 25px;
}

/* UNIVERSE DOWNLOAD BUTTON START */

.buttonDownload {
  display: inline-block;
  position: relative;
  padding: 14px 30px;
  background-color: transparent;
  color: var(--color-02);
  text-decoration: none;
  font-size: var(--small-font-size);
  text-align: center;
  text-indent: 15px;
  border-radius: 35px;
  cursor: pointer;
  border: 2px solid var(--primary-color);
}

.buttonDownload:hover {
  background-color: var(--hover-color);
  color: white;
}

.buttonDownload:before,
.buttonDownload:after {
  content: " ";
  display: block;
  position: absolute;
  left: 20px;
  top: 52%;
}

.buttonDownload:before {
  width: 10px;
  height: 2px;
  border-style: solid;
  border-width: 0 2px 2px;
}

.buttonDownload:after {
  width: 0;
  height: 0;
  margin-left: 3px;
  margin-top: -7px;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: transparent;
  border-top-color: inherit;
  animation: downloadArrow 1s linear infinite;
  animation-play-state: paused;
}

.buttonDownload:hover:before {
  border-color: var(--color-02);
}

.buttonDownload:hover:after {
  border-top-color: var(--dark-color);
  animation-play-state: running;
}

@keyframes downloadArrow {
  0% {
    margin-top: -7px;
    opacity: 1;
  }

  0.001% {
    margin-top: -15px;
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    margin-top: 0;
    opacity: 0.4;
  }
}

/* UNIVERSE DOWNLOAD BUTTON ENDS */

/* =========================================
   My 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;
  background: transparent;
  border: none;
}

.resume-tabs .tab-btn:hover {
  color: var(--color-04);
}

.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;
  /* margin-top: 4px; */
}

.resume-items .item .info h4 {
  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;
}
/* .resume-items .item .info .info-date {
  position: relative;
  display: inline-block;
  background: var(--primary-color);
  color: var(--dark-color);
  font-size: var(--font-medium);
  padding: 3px 12px;
  border-radius: 3px;
} */

.resume-items .item .info .info-date i {
  color: var(--dark-color);
  font-size: var(--font-light);
}

.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) !important;
  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;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 65px;
  row-gap: 35px;
  padding: 0 50px;
}

.skills {
  display: flex;
  column-gap: 15px;
}

.skills 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);
  margin-bottom: 5px;
}

.skill-info span {
  color: var(--color-04);
  font-size: var(--tiny-font-size);
}

.education-bg h4 {
  width: 200px;
}
.resume-items .item .info .education-bg p {
  width: 200px;
  white-space: normal;
}
/* =========================================
   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) !important;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
}

.service-icon {
  display: inline-block;
  color: var(--primary-color);
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.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-info .service-see-more {
  font-size: var(--base-font-size);
  color: var(--color-01);
  cursor: pointer;
  transition: 0.3s;
}

.service-info .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: 5px;
}

.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: 835px;
  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: 5px;
  right: 0px;

  margin: 15px;
}

.service-modal .modal-content {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  max-height: 500px;
  margin-top: 50px;
  margin-bottom: 10px;
  padding-right: 15px;
  padding-bottom: 60px;
  overflow-y: auto;
}

.modal-content .modal-service-img {
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* max-width: 100%; */
  /* height: 250px; */
  /* margin-left: -13px; */
  border-radius: 15px;
  /* background: var(--color-02); */
  /* overflow: hidden; */

  /* background-image: url(/assets/images/services-images/ui-ux-design.png);
  background-size: cover;
  background-position: center; */
}

.modal-service-img img {
  /* padding-top: 8px; */
  /* width: 90%; */
  height: 280px;
  /* margin-left: -13px; */
  /* margin-top: -20px; */
}

.modal-service-img video {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.modal-tools-icons {
  display: flex;
  width: 540px;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
}
.modal-tools-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 15px;
  /* border: 1px solid var(--color-01); */
  background: var(--modal-backdrop-bg);
  color: var(--color-02);

  padding: 15px 8px;

  border-radius: 5px;
}

.modal-tools-icon small {
  font-size: 0.7rem;
}

.tool-content {
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.tool-content img {
  width: 13px;
}
.tool-content .figma-img {
  width: 10px;
}

.modal-content::-webkit-scrollbar {
  background: hsl(var(--hue) 25% 20%);
  width: 8px;
  border: 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: 10px;
  /* margin-bottom: 5px; */
}

.service-modal .modal-content h4 {
  color: var(--color-02);
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  /* margin-bottom: 5px; */
}

.modal-content .my-services li {
  display: flex;
  margin-bottom: 25px;
}

.modal-content .my-services li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-right: 15px;
  margin-top: 3px;
}

.modal-content .my-services li p {
  color: var(--light-gray-color);
  font-size: var(--tiny-font-size);
  line-height: 22px;
  letter-spacing: 0.6px;
  font-weight: var(--font-regular);
}
/* =========================================
   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-color: var(--hover-color);
}

.portfolio-container {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 35px;
  row-gap: 45px;
}

.portfolio-container .card-with-modal {
  display: block;
}

.portfolio-container .card-with-modal.hidden {
  display: none;
}

.portfolio-card {
  position: relative;
  background: var(--portfolio-card-color);
  width: 470px;
  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 25px 20px;
}

.portfolio-card .card-info h4 {
  color: var(--color-02);
  font-size: var(--medium-font-size);
  font-weight: var(--font-medium);
  margin-top: 5px;
  margin-bottom: 22px;
}

.portfolio-card .card-info span {
  color: var(--color-02);
  font-size: var(--tiny-font-size);
  font-weight: var(--font-regular);
  text-transform: capitalize;

  margin-top: 6px;
  padding: 8px 14px;
  background: var(--port-card-info);
  border-radius: 10px;
}
.portfolio-card:hover .card-info .company-name {
  display: none;
}

.portfolio-card .card-info .view-more-hover {
  opacity: 0;
}
.portfolio-card:hover .card-info .view-more-hover {
  opacity: 1;
  color: var(--color-03);
  background: var(--hover-color);
}

.portfolio-card .card-info i {
  position: absolute;
  right: 10px;
  bottom: 0;
  color: var(--color-02);
  font-size: 1.5rem;
  font-weight: var(--font-light);
  margin: 15px;
  /* transform: scale(0); */
  transition: 0.3s;

  padding: 6px;
  background: var(--port-card-info);
  border-radius: 50%;
}

.portfolio-card:hover .card-info i {
  /* transform: scale(1); */
  color: var(--hover-color);
}

/* Portfolio popup modal */

.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);
  width: 900px;
  height: fit-content;
  margin: 25px 25px;
  padding: 50px 45px;
  border-radius: 15px;
  transform: scale(0);
  opacity: 0;
}

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

.port-trustplot-link {
  position: absolute;
  top: 15px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  background: var(--modal-backdrop-bg);
  color: var(--color-02);
  font-style: normal;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 6px;
}

.port-trustplot-link img {
  width: 100px;
}

.portfolio-modal .modal-img {
  width: 100%;
}

.portfolio-modal .modal-img img {
  width: 100%;
  border-radius: 10px;
}

.portfolio-tools-icons {
  display: flex;
  column-gap: 15px;
}

.portfolio-icon-and-buttons {
  display: flex;
  justify-content: space-between;
}

.portfolio-btns {
  display: flex;
  column-gap: 25px;
}
.portfolio-btns a {
  padding: 8px 14px;
  border: none;
  border-radius: 15px;
}

.portfolio-btns .live-site-btn {
  background: var(--primary-color);
  color: var(--color-03);
  font-weight: var(--font-bold);
}

.portfolio-btns .live-site-btn:hover {
  background: var(--hover-color);
  color: var(--color-02);
}

.portfolio-btns .git-btn {
  border: 1px solid var(--primary-color);
  color: var(--color-02);
}

.portfolio-btns .git-btn:hover {
  background: var(--hover-color);
  color: var(--color-03);
}

.portfolio-modal .modal-content .modal-title {
  color: var(--color-02);
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 14px;
  line-height: 28px;
}

.project-overview {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.portfolio-modal .modal-content .description {
  color: var(--color-04);
  font-size: var(--base-font-size);
  font-weight: var(--font-regular);
  line-height: 25px;
}

.portfolio-contents {
  display: flex;
  column-gap: 50px;
}
.portfolio-side-bar {
  width: 800px;
  padding: 35px;
  height: fit-content;
  background: var(--modal-backdrop-bg);
  border: 1px solid var(--color-04);
  border-radius: 5px;
}

.portfolio-side-bar aside {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.aside-items {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.aside-items span {
  display: flex;
  align-items: center;
  column-gap: 6px;
  color: var(--color-02);
  font-size: var(--tiny-font-size);
}
.aside-items h4 {
  font-weight: var(--font-regular);
  text-transform: uppercase;
}
.aside-items small {
  font-weight: var(--tiny-font-size);
}

.aside-items i {
  font-size: var(--medium-font-size);
}

.Portfolio-gallery {
  display: flex;
  column-gap: 30px;
}

.Portfolio-gallery .gallery-img {
  width: 100%;
  background: var(--modal-backdrop-bg);
  border-radius: 15px;
  overflow: hidden;
  padding: 4px 4px;
}

.Portfolio-gallery .gallery-img img {
  width: 100%;
  border-radius: 15px;
}

/* =========================================
   Testimonials
========================================= */

.testimonials {
  position: relative;
  width: 100%;
  margin-top: 9em;
}

.testimonials .trustpilot {
  margin-top: 25px;
}

.testimonials .trustpilot {
  padding: 2px 14px;
}

.testimonials .trustpilot em {
  font-size: var(--medium-font-size);
  display: flex;
  column-gap: 10px;
}

.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-img {
  width: 185px;
}

.swiper-slide .client-img img {
  width: 100%;
  border-radius: 10px;
}

.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(--light-gray-color);
  font-size: var(--small-font-size);
  font-weight: 300;
  margin-top: 15px;
  line-height: 25px;
}

.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);
  font-size: 4rem;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: var(--primary-color);
  margin: 20px;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  column-gap: 15px;
}

/* =========================================
   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: 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 {
  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 ease;
}

.contact-social-links li:hover a {
  color: var(--hover-color);
  margin-bottom: 5px;
}

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

/* OLD FORM CSS */

.contact-form-body form {
  display: flex;
  flex-direction: column;
  row-gap: 18px;

  margin-top: 50px;
}

.contact-form-body p {
  line-height: 25px;
}

.contact-form-body .input-group label {
  display: inline-block;
  margin-bottom: 10px;
}

.contact-form-body form .input-group input,
.contact-form-body form .input-group textarea {
  color: var(--color-02);
  font-size: var(--medium-font-size);
  background: hsl(var(--hue) 54% 74%/ 0.01);
  width: 100%;
  border: 2px solid var(--contact-border);
  outline: none;
  padding: 14px 20px;
  border-radius: 10px;
}

.contact-form-body form .input-group input:focus,
.contact-form-body form .input-group textarea:focus {
  color: var(--color-02);
  background: transparent;
  border: 1.8px solid var(--primary-color);
}

.contact-form-body label {
  position: relative;
  margin-bottom: 20px;
}
.contact-form-body .required {
  position: absolute;
  right: -15px;
  top: 4px;
}

.contact-form-body .form-contact-icon {
  margin-right: 6px;
  color: var(--primary-color);
}

.contact-form-body form .input-group textarea {
  height: 125px;
  resize: none;
}

.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: 200px;
  padding: 16px 30px;
  transition: 0.3s;
}
.contact-form-body i {
  font-size: var(--xlarge-font-size);
}

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

/* Floating label fix */
.contact-form-body input:focus ~ label,
input:not(:placeholder-shown) ~ label,
textarea:focus ~ label,
textarea:not(:placeholder-shown) ~ label {
  top: -35px;
  font-size: 15px;
}

.contact-form-body button {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  width: 200px;
  padding: 16px 30px;
  transition: 0.3s;
}
*/

/* =========================================
   Footer
========================================= */

.ab-footer {
  background: var(--footer-bg);
  padding-top: 100px;
  padding-bottom: 165px;
}

.ab-footer .ab-container .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 2rem;
}

.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);
}

.ab-footer .copy-right {
  color: var(--color-04);
  font-size: var(--small-font-size);
  margin-top: 10px;
  margin-bottom: 20px;
}

.ab-footer .copy-right a:hover {
  color: var(--color-01);
  transition: 0.3s;
}

/* NEW Informative cards */

/* === Informative Cards Container === */
.informative-cards {
  position: relative;
}

/* === Base Card Style === */
.informative-cards .message-card {
  position: fixed;
  bottom: 45px;
  right: 45px;
  backdrop-filter: blur(10px);
  background-color: var(--info-card-bg);
  color: var(--color-02);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: var(--z-modal);

  /* 👇 Animation setup */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.45s ease, visibility 0s linear 0.45s;
}

/* === Active State (show + animate) === */
.informative-cards .message-card.actives {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

/* === Slide Directions === */

/* Default: slide from RIGHT */
.informative-cards .light-switch-card,
.informative-cards .dark-switch-card,
.informative-cards .let-meet-card,
.informative-cards .color-theme-card,
.informative-cards .resume-theme-card {
  transform: translateX(100%);
}

/* === Close Icon === */
.informative-cards .info-card-close-icon {
  position: absolute;
  color: var(--color-04);
  font-size: var(--medium-font-size);
  top: 8px;
  right: 8px;
  cursor: pointer;
}

.informative-cards .info-card-close-icon:hover {
  color: var(--color-02);
}

/* === Card Content === */
.info-card-icon {
  display: flex;
  column-gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.info-card-icon i {
  font-size: var(--small-font-size);
  color: var(--informative-card-color);
  padding: 4px 8px;
  background: #69df693a;
  border-radius: 4px;
}

.info-card-icon h6 {
  font-size: var(--small-font-size);
}

.message-card small {
  color: var(--light-gray-color);
  font-size: var(--tiny-font-size);
}

/* === Hidden Elements (for other UI parts) === */
.light-switch {
  display: none;
}

.color-theme-selection {
  display: none;
}

.info-card-padding {
  padding-right: 20px;
}

/* OLD Informative cards working but no slide in*/

/* .informative-cards {
  position: relative;
}
.informative-cards .message-card {
  position: fixed;
  bottom: 45px;
  right: 45px;
  backdrop-filter: blur(10px);
  background-color: var(--info-card-bg);
  color: var(--color-02);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  display: none;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.informative-cards .message-card.actives {
  display: block;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.informative-cards .info-card-close-icon {
  position: absolute;
  color: var(--color-04);
  font-size: var(--medium-font-size);
  top: 8px;
  right: 8px;
  cursor: pointer;
}
.informative-cards .info-card-close-icon:hover {
  color: var(--color-02);
}
.info-card-icon {
  display: flex;
  column-gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.info-card-icon i {
  font-size: var(--small-font-size);
  color: var(--informative-card-color);
  padding: 4px 8px;
  background: #69df693a;
  border-radius: 4px;
}
.info-card-icon h6 {
  font-size: var(--small-font-size);
}
.message-card small {
  color: var(--light-gray-color);
  font-size: var(--tiny-font-size);
}
.light-switch {
  display: none;
}
.let-meet {
  display: none;
}
.color-theme-selection {
  display: none;
} */

/* =========================================
   Media Queries (max-width: 1600px)
========================================= */

@media screen and (max-width: 1600px) {
  .ab-container {
    /* max-width: 1075px; */
    max-width: 1165px;
  }
  .avatar-img {
    width: 385px;
    height: 385px;
  }

  .home-social .social-line {
    height: 55px;
    margin-top: 26px;
    margin-bottom: 14px;
  }
}

/* =========================================
   Media Queries (max-width: 1400px)
========================================= */

@media screen and (max-width: 1400px) {
  :root {
    /* --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;
  }

  .ab-container {
    max-width: 1075px;
    /* max-width: 1140px; */
  }

  .ab-logo a {
    font-size: 2rem;
  }

  .ab-main-btn {
    padding: 14px 25px;
  }

  .theme-btn i {
    font-size: 1.4rem;
  }

  .home-social .social-line {
    height: 55px;
    margin-top: 26px;
    margin-bottom: 14px;
  }

  .home-social .social-icons {
    gap: 15px;
  }

  .home-social .social-icons li a {
    font-size: var(--medium-font-size);
  }

  .avatar-img img {
    width: 75%;
    bottom: 40px;
    left: 50px;
  }

  .bottom-nav .menu {
    padding: 11px 28px;
  }

  .bottom-nav .menu li a i {
    font-size: 1.2rem;
  }

  .bottom-nav.active {
    bottom: 20px;
  }

  .bottom-nav .menu-hide-btn {
    font-size: 1.2rem;
  }

  .menu-show-btn.active {
    bottom: 30px;
  }

  .resume-tabs .tab-btn.active {
    padding: 10px 15px;
  }

  .resume-items .item .info i {
    font-size: 1.55rem;
  }

  .service-modal {
    width: 700px;
    height: 516px;
    padding: 20px 25px 20px 45px;
  }

  .swiper-button-next i,
  .swiper-button-prev i {
    font-size: 3.5rem;
  }

  .to-top-btn a span {
    bottom: 175px;
    font-size: 0.65rem;
  }
}

/* =========================================
   Media Queries (max-width: 1200px)
========================================= */

@media screen and (max-width: 1200px) {
  .cursor {
    display: none;
  }

  .ab-container {
    max-width: 100%;
    margin-left: 50px;
    margin-right: 50px;
  }

  .section-content {
    flex-direction: column;
    column-gap: 0;
    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: start;
  }

  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .skill-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =========================================
   Media Queries (max-width: 992px)
========================================= */

@media (max-width: 992px) {
  .avatar-container {
    flex-direction: column;
    row-gap: 10px;
  }

  .avatar-img {
    width: 350px;
    height: 350px;
  }

  .avatar-img img {
    position: absolute;
    width: 61%;
    left: 30%;
    bottom: 12px;
  }

  .avatar-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .avatar-info .text-content {
    align-items: center;
  }

  .about-buttons {
    width: 100%;
  }

  .about-buttons-trustpilot .trustpilot {
    width: 100%;
  }

  .avatar-info .what-i-do {
    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;
  }
}

/* =========================================
   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;
  }

  .ab-container {
    margin-left: 25px;
    margin-right: 25px;
  }

  .ab-header {
    padding: 3px 0;
  }

  .ab-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: 20px;
  }

  .bottom-nav .menu li a i {
    font-size: 1.25rem;
  }

  .menu-show-btn.active {
    bottom: 30px;
  }

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

  .skills i {
    font-size: 1.25rem;
  }

  .service-container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }

  .service-card {
    width: 245px;
    height: 250px;
  }

  .service-modal {
    width: 673px;
    height: 446px;
  }

  .service-modal .modal-content {
    margin-top: 0;
  }

  .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 {
    width: 731px;
    margin: 10px 7px;
    padding: 50px 20px;
  }

  .swiper-button-next i,
  .swiper-button-prev i {
    font-size: 4rem;
  }

  .contact-form-body {
    border-radius: 10px;
  }

  .contact-form-body {
    width: 80%;
  }

  .footer-menu {
    column-gap: 10px;
  }

  .to-top-btn.active {
    right: 20px;
  }

  .informative-cards {
    /* bottom: 190px;
    right: 63px; */

    opacity: 0;
  }
}

/* =========================================
   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;
  }

  .ab-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .home-container .ab-wrapper {
    height: 100vh;
  }

  .ab-sub-container {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .ab-wrapper {
    height: 80%;
  }

  .ab-header {
    padding: 20px 0;
  }

  .ab-header .ab-logo a {
    font-size: 1.75rem;
  }

  .header-btns {
    column-gap: 15px;
  }

  .theme-selector {
    position: absolute;
    top: 35px;
    right: 115px;
    left: auto;
    bottom: auto;
  }

  .theme-color {
    width: 20px;
    height: 20px;
  }

  .theme-color.active::after {
    width: 27px;
    height: 27px;
  }

  .toggle-btn {
    background: var(--primary-color);
    position: absolute;
    padding: 2px 6px;
    color: var(--dark-color);
    top: 25px;
    right: 105px;
    left: auto;
    bottom: auto;
  }

  .home-container .ab-wrapper {
    flex-direction: column-reverse;
  }

  .avatar-info {
    margin-top: 1em;
  }

  .home-social {
    position: relative;
  }
  .home-social span {
    display: none;
  }
  .home-social .social-line {
    display: none;
  }

  .home-social .let-connect {
    display: none;
  }

  .home-social .social-icons {
    flex-direction: row;
    margin-top: 35px;
  }

  .home-scroll-btn {
    display: none;
  }

  .mobile-hero-badge {
    display: flex;
    display: none;
    align-items: center;
    column-gap: 16px;
    padding: 5px 17px;
    background: var(--modal-backdrop-bg);
    margin-bottom: 3em;
    margin-top: -5px;
    border-radius: 8px;
  }

  .mobile-hero-badge strong {
    color: var(--light-gray-color);
  }

  .mobile-hero-badge .dot {
    display: inline-block;
    width: 0.375rem; /* 6px */
    height: 0.375rem; /* 6px */
    border-radius: 50%; /* circle */
    background-color: #69df69;
    animation: pulseScale 1.5s infinite ease-in-out;
  }

  @keyframes pulseScale {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.4447);
    }
    100% {
      transform: scale(1);
    }
  }

  .avatar-container {
    row-gap: 0;
    width: 100%;
  }

  .avatar-img {
    display: none;
  }

  .ab-profile-badge {
    display: flex;
  }
  .ab-profile-img {
    overflow: hidden;
    border-radius: 75%;
    width: 104%;
    height: 85%;
  }
  .ab-profile-img img {
    width: 125px;
    /* height: 150px; */
  }
  /* .ab-profile-img video {
    width: 150px;
  } */

  .avatar-img {
    margin-top: 24px;
    margin-bottom: 25px;
  }

  .bottom-nav {
    width: 100%;
    padding: 0 22px;
  }

  .bottom-nav .menu {
    padding: 13px 20px;
    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;
  }

  .about-img {
    width: 100%;
    max-width: 375px;
  }

  .about-img.desk {
    display: none;
  }
  .about-img.mobile {
    display: block;
  }
  .about-info {
    place-items: start;
  }
  .about-details {
    max-width: 390px;
  }

  .about-buttons-trustpilot {
    display: flex;
    flex-direction: column;
  }

  .about-buttons-trustpilot .trustpilot {
    width: fit-content;
    margin-top: 35px;
    display: none;
  }

  .pro-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 2fr));
  }

  .pro-card {
    flex-direction: column;
    row-gap: 10px;
  }

  .pro-card span {
    font-size: 2.5rem;
  }

  .pro-card p {
    text-align: center;
  }

  .resume-items .item .info {
    width: 140px;
  }

  .resume-items .item-left .info {
    right: 20px;
  }

  .resume-items .item-right .info {
    left: 45px;
  }

  .resume-items .item-right .info {
    left: 35px;
  }

  .resume-items .item .info p {
    white-space: break-spaces;
  }

  .skill-container {
    row-gap: 35px;
    place-items: stretch;
  }

  .section-title {
    margin-bottom: 55px;
  }

  .skill-title {
    margin-bottom: 35px;
  }

  .skill-categories {
    column-gap: 35px;
    padding: 0 25px;
  }

  .education-bg h4 {
    width: 180px;
  }

  .resume-items .item .info .education-bg p {
    width: 150px;
    white-space: normal;
  }

  .service-container {
    width: 100%;
  }

  .card-with-modal {
    width: 100%;
  }

  .service-card {
    margin: 0 auto;
  }

  .service-modal {
    height: 620px;
  }

  .service-modal {
    padding: 50px 15px;
    margin: 75px 20px;
  }

  .modal-tools-icons {
    width: 100%;
    flex-wrap: wrap;
    gap: 9px;
  }

  .tool-content img {
    width: 12px;
  }

  .modal-service-img video {
    width: 100%;
  }

  .portfolio-container {
    row-gap: 25px;
    width: 100%;
  }

  .portfolio-card {
    width: 100%;
  }
  .portfolio-modal {
    width: 450px;
    margin: 10px 7px;
    padding: 50px 20px;
  }

  .port-trustplot-link {
    font-size: 11px;
  }
  .port-trustplot-link img {
    width: 65px;
  }

  .portfolio-icon-and-buttons {
    flex-direction: column;
    row-gap: 25px;
  }

  .portfolio-contents {
    flex-direction: column;
    row-gap: 25px;
  }

  .portfolio-side-bar {
    width: 230px;
  }

  .Portfolio-gallery {
    flex-direction: column;
    row-gap: 30px;
  }

  .Portfolio-gallery .gallery-img {
    width: 100%;
  }

  .testimonials .section-title p {
    width: 270px;
    text-align: center;
  }

  .testimonials .trustpilot {
    padding: 2px 10px;
  }
  .testimonials .trustpilot em {
    font-size: 12px;
  }
  .testimonials .trustpilot img {
    width: 12px;
  }

  .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 {
    width: 100%;
  }

  .contact-form-body h2 {
    text-align: center;
  }

  .contact-form-body p {
    text-align: center;
  }

  .to-top-btn {
    display: none;
  }

  .port-trustplot-link {
    top: 20px;
  }

  .contact-form-body .input-group button {
    color: var(--dark-color);
  }

  .modal-service-img img {
    width: 100%;
    height: 100%;
  }
}

/* Still working on */
/* ANDROID PHONES SCREEN */

@media screen and (max-width: 360px) {
  :root {
    --h1-font-size: 2rem;
    --h2-font-size: 1.8rem;
    --h3-font-size: 1.45rem;
    --h4-font-size: 1.02rem;
    --h5-font-size: 0.95rem;

    --xlarge-font-size: 1.1rem;
    --large-font-size: 1rem;
    --medium-font-size: 0.9rem;
    --base-font-size: 0.92rem;
  }

  .ab-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  .modal-service-img img {
    width: 100%;
    height: 100%;
  }

  .port-trustplot-link {
    font-size: 10px;
  }

  .port-trustplot-link img {
    width: 51px;
  }

  .ab-header .ab-logo a {
    font-size: 1.75rem;
  }

  .header-btns {
    column-gap: 15px;
  }

  .ab-main-btn {
    padding: 12px 22px;
  }

  .ab-main-btn {
    padding: 12px 22px;
  }
  .buttonDownload {
    padding: 12px 24px;
  }

  .portfolio-tabs .tab-btn.active {
    padding: 12px 22px;
  }

  .contact-form-body .input-group button {
    width: 160px;
    padding: 12px 23px;
  }
}
