@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
/* ++++++++++++++++custom scroll bar +++++++++++++++ */

::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background:var(--scrollback); /* Color of the track */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#5b29efa7,#af6befa1); /* Color of the thumb */
  border-radius: 10px; /* Roundness of the thumb */
  width: 1000px;
}

/* Define the container height for scrolling */
.scrollable-container {
  height: 200px;
  overflow-y: scroll; /* Enable vertical scrollbar */
  
}

/*=====color variables ===========*/
:root {
  --homee:linear-gradient(#5b5d96a7 , #ffffff 70%);
  --herocontainer:linear-gradient(#5b29ef,#af6bef);
  --first-color2:rgba(91, 41, 239, 0);
  --first-color: #5b29ef;
  --second-color: #e7dbdb;
  --third-color: #ffffff;
  --black-color: #000000;
  --dark-blue: #3e227a;
  /* --bg-color: #ffffff; */
  --bg-color:linear-gradient(#5b5d9600 , #ffffff 20%);
  --skill:#ffffff;
  --blur-element-color2: #e7dbdb00;
  --blur-element-color: #e7dbdb;
  --shadow-1: 0 0 20px 5px rgb(101, 41, 240, 0.5);
  --shadow-2: 0 0 20px 5px rgb(232, 219, 219);
  --header-l: #ffffff80;
  --text-color-second:rgb(68, 68, 68);
  --text-color-hover:rgb(40,91,212);
  --first-shadow-color:rgba(0, 0, 0, 0.1);
  --bgcolor:#222;
  --secolorsubtxt:#3d7eae;
  --secolorsubtxtdeep:#246ca0;
  --footercolor:#e7dbdb;
  --dpcircle:#8f889f;
  --mail:#000000;
  --footericon:#6300ae;
  --scrollback:#e7dbdb;
  --box-shadow-scroll: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  --contact:#fff;
  --h1big:rgba(0, 0, 0, 0.1);
/* blob animation */
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  
  color: black;
  background-color: whitesmoke;
  
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
/* education */
--stick:#e6e6e6;
--edicon:#fff;
--subtext:#bfbfbf;
--timelinebody:#000000;
/* education button */
--edbg:#2a2a2a;
/* fix bc back to top */
}

/*=====dark mode ===========*/
body.dark-mode {
  --homee:#222;
  --herocontainer:linear-gradient(#5327d8,#9b5ed5);
  --black-color: #ffffff;
  --dark-blue: #6429ef;
  --bg-color: #222222;
  --skill:#222;
  --blur-element-color: #555;
  --shadow-2: 0 0 20px 5px rgb(232, 219, 219, 0.3);
  --header-l: #4f4f4f80;
  --text-color-second:rgb(199, 199, 199);
  --secolorsubtxt:#b0b0b0;
  --footercolor:#433466;
  --dpcircle:#464b54;
  --mail:#a8a7a7;
  --footericon:#b786ff;
  --scrollback:#393939; 
  --box-shadow-scroll: 9px 9px 33px #141414, -9px -9px 33px #434343;
  --contact:#c9c9c9;
  --h1big:rgba(255, 255, 255, 0.1);
  --blur-element-color2: #555;
  --first-color2:rgb(91, 41, 239);
  /* education */
  --stick:#686868;
  --edicon:#ffffffce;
  --subtext:#525252;
  --timelinebody:#b6b6b6;
  /* education button */
  --edbg:#353535;
}

body {
  /* background-color: var(--bg-color); */
  background: var(--bg-color);
  transition: 0.3s;
}
.home {
  /* background: var(--homee); */
  background: #00000000;
}
.nav-link {
  color: var(--black-color);
  transition: 0.3s;
}

body.dark-mode .nav-link {
  color: #ffffff; /* Change text color in dark mode */
}
body.dark-mode .nav-link:hover {
  color: var(--first-color);
}
.header .dark-mode{
  background-color: var(--header-l); 
}


/*=====dark mode star son wala ===========*/
.theme-switch {
  --toggle-size: 12px;
  /* the size is adjusted using font-size,
       this is not transform scale,
       so you can choose any size */
  --container-width: 5.625em;
  --container-height: 2.5em;
  --container-radius: 6.25em;
  /* radius 0 - minecraft mode :) */
  --container-light-bg: #3d7eae;
  --container-night-bg: #1d1f2c;
  --circle-container-diameter: 3.375em;
  --sun-moon-diameter: 2.125em;
  --sun-bg: #ecca2f;
  --moon-bg: #c4c9d1;
  --spot-color: #959db1;
  --circle-container-offset: calc(
    (var(--circle-container-diameter) - var(--container-height)) / 2 * -1
  );
  --stars-color: #fff;
  --clouds-color: #f3fdff;
  --back-clouds-color: #aacadf;
  --transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  --circle-transition: 0.3s cubic-bezier(0, -0.02, 0.35, 1.17);
}

.theme-switch,
.theme-switch *,
.theme-switch *::before,
.theme-switch *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: var(--toggle-size);
}

.theme-switch__container {
  width: var(--container-width);
  height: var(--container-height);
  background-color: var(--container-light-bg);
  border-radius: var(--container-radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25),
    0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  box-shadow: 0em -0.062em 0.062em rgba(0, 0, 0, 0.25),
    0em 0.062em 0.125em rgba(255, 255, 255, 0.94);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__container::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  -webkit-box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset,
    0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset,
    0em 0.05em 0.187em rgba(0, 0, 0, 0.25) inset;
  border-radius: var(--container-radius);
}

.theme-switch__checkbox {
  display: none;
}

.theme-switch__circle-container {
  width: var(--circle-container-diameter);
  height: var(--circle-container-diameter);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  left: var(--circle-container-offset);
  top: var(--circle-container-offset);
  border-radius: var(--container-radius);
  -webkit-box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
    inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
    0 0 0 0.625em rgba(255, 255, 255, 0.1),
    0 0 0 1.25em rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
    inset 0 0 0 3.375em rgba(255, 255, 255, 0.1),
    0 0 0 0.625em rgba(255, 255, 255, 0.1),
    0 0 0 1.25em rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: var(--circle-transition);
  -o-transition: var(--circle-transition);
  transition: var(--circle-transition);
  pointer-events: none;
}

.theme-switch__sun-moon-container {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  width: var(--sun-moon-diameter);
  height: var(--sun-moon-diameter);
  margin: auto;
  border-radius: var(--container-radius);
  background-color: var(--sun-bg);
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61)
      inset,
    0em -0.062em 0.062em 0em #a1872a inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
    0em -0.062em 0.062em 0em #a1872a inset;
  -webkit-filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25))
    drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0.062em 0.125em 0.125em rgba(0, 0, 0, 0.25))
    drop-shadow(0em 0.062em 0.125em rgba(0, 0, 0, 0.25));
  overflow: hidden;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

.theme-switch__moon {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  background-color: var(--moon-bg);
  border-radius: inherit;
  -webkit-box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61)
      inset,
    0em -0.062em 0.062em 0em #969696 inset;
  box-shadow: 0.062em 0.062em 0.062em 0em rgba(254, 255, 239, 0.61) inset,
    0em -0.062em 0.062em 0em #969696 inset;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  position: relative;
}

.theme-switch__spot {
  position: absolute;
  top: 0.75em;
  left: 0.312em;
  width: 0.75em;
  height: 0.75em;
  border-radius: var(--container-radius);
  background-color: var(--spot-color);
  -webkit-box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0em 0.0312em 0.062em rgba(0, 0, 0, 0.25) inset;
}

.theme-switch__spot:nth-of-type(2) {
  width: 0.375em;
  height: 0.375em;
  top: 0.937em;
  left: 1.375em;
}

.theme-switch__spot:nth-last-of-type(3) {
  width: 0.25em;
  height: 0.25em;
  top: 0.312em;
  left: 0.812em;
}

.theme-switch__clouds {
  width: 1.25em;
  height: 1.25em;
  background-color: var(--clouds-color);
  border-radius: var(--container-radius);
  position: absolute;
  bottom: -0.625em;
  left: 0.312em;
  -webkit-box-shadow: 0.937em 0.312em var(--clouds-color),
    -0.312em -0.312em var(--back-clouds-color),
    1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color),
    2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color),
    2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color),
    3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color),
    4.5em -0.312em var(--clouds-color),
    3.375em -0.437em var(--back-clouds-color),
    4.625em -1.75em 0 0.437em var(--clouds-color),
    4em -0.625em var(--back-clouds-color),
    4.125em -2.125em 0 0.437em var(--back-clouds-color);
  box-shadow: 0.937em 0.312em var(--clouds-color),
    -0.312em -0.312em var(--back-clouds-color),
    1.437em 0.375em var(--clouds-color), 0.5em -0.125em var(--back-clouds-color),
    2.187em 0 var(--clouds-color), 1.25em -0.062em var(--back-clouds-color),
    2.937em 0.312em var(--clouds-color), 2em -0.312em var(--back-clouds-color),
    3.625em -0.062em var(--clouds-color), 2.625em 0em var(--back-clouds-color),
    4.5em -0.312em var(--clouds-color),
    3.375em -0.437em var(--back-clouds-color),
    4.625em -1.75em 0 0.437em var(--clouds-color),
    4em -0.625em var(--back-clouds-color),
    4.125em -2.125em 0 0.437em var(--back-clouds-color);
  -webkit-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  -o-transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
  transition: 0.5s cubic-bezier(0, -0.02, 0.4, 1.25);
}

.theme-switch__stars-container {
  position: absolute;
  color: var(--stars-color);
  top: -100%;
  left: 0.312em;
  width: 2.75em;
  height: auto;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}

/* actions */

.theme-switch__checkbox:checked + .theme-switch__container {
  background-color: var(--container-night-bg);
}

.theme-switch__checkbox:checked
  + .theme-switch__container
  .theme-switch__circle-container {
  left: calc(
    100% - var(--circle-container-offset) - var(--circle-container-diameter)
  );
}

.theme-switch__checkbox:checked
  + .theme-switch__container
  .theme-switch__circle-container:hover {
  left: calc(
    100% - var(--circle-container-offset) - var(--circle-container-diameter) -
      0.187em
  );
}

.theme-switch__circle-container:hover {
  left: calc(var(--circle-container-offset) + 0.187em);
}

.theme-switch__checkbox:checked + .theme-switch__container .theme-switch__moon {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.theme-switch__checkbox:checked
  + .theme-switch__container
  .theme-switch__clouds {
  bottom: -4.062em;
}

.theme-switch__checkbox:checked
  + .theme-switch__container
  .theme-switch__stars-container {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*=====blur background ===========*/
/* .wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  filter: blur(50px);
  z-index: 1;
}
.wrapper::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--blur-element-color2);
  border-radius: 50%;
  z-index: 0;
}
.wrapper::after {
  content: "";
  position: absolute;
  top: 160px;
  right: 10vw;
  width: 100px;
  height: 100px;
  background-color: var(--blur-element-color2);
  border-radius: 50%;
  z-index: 0;
}
.wrapper .circle-1 {
  position: absolute;
  bottom: 100px;
  left: 60%;
  width: 50px;
  height: 50px;
  background-color: var(--first-color2);
  border-radius: 50%;
  z-index: 0;
} */

/*=====header -navigation bar ===========*/
header {
  position: fixed;
  font-family: "Abril Fatface", serif;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8vw;
  z-index: 50;
}
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--header-l); /* Adjust opacity as needed */
    backdrop-filter: blur(10px); /* Apply the blur effect */
    z-index: 100; /* Ensure the header is above other content */
    transition: all 1s ease; /* Add transition effect for smooth animation */
}
.logo span {
  font-size: 35px;
  color: var(--black-color);
}
.nav_menu {
  display: flex;
  list-style-type: none;

}
.nav-list {
  padding: 0 30px;
}
.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--black-color);
  font-size: 18px;
  transition: 0.3s;
}
.nav-link:hover {
  color: var(--first-color);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background-color: var(--first-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav_button {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn {
  padding: 0 24px;
  height: 45px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn:hover {
  opacity: 0.8;
}
.about-btn{
  margin-left: 55%;
  transform: translateY(60%);
  background-color: var(--first-color);
  border-radius: 40px;
}
.about-btn:hover {
  opacity: 0.8;
}
.about-btn a{
  color: #ffffff;
}
.hire-me-btn {
  font-family: "Abril Fatface", serif;
  background-color: var(--second-color);
  box-shadow: var(--shadow-2);
  color:var(--bgcolor);
  padding-top: 13px;
}

.hire-me-btn:hover{
  color: var(--bgcolor);
  background-color: #d6aeae;
  transition: .2s ease-in-out;
}
.nav_button span {
  color: var(--black-color);
  cursor: pointer;
}
.nav_button .dark-mode-toggle {
  font-size: 18px;
}
.nav_button .menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/*=====hero section ===========*/
.hero {
  position: relative;
  display: flex;
  padding: 0 8vw;
  width: 100%;
  height: 100vh;
  z-index: 5;
}
.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
.hero-work {
  font-family: "Abril Fatface";
  font-size: 50px;
  color: var(--black-color);
}
.hero-description {
  font-family: "Poppins", sans-serif;
  padding-block: 20px 38px;
  width: 500px;
  color: var(--black-color);
  
}
.hero-buttons {
  display: flex;
  gap: 20px;
 
}
.download-btn {
  font-family: "poppins" sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--first-color);
  color: var(--third-color);
  box-shadow: var(--shadow-1);
  text-decoration: none;
}

.hero-social-icons {
  position: absolute;
  bottom: 80px;
  display: flex;
  gap: 50px;
}
.hero-social-icons i {
  opacity: 0;
  font-size: 24px;
  color: var(--black-color);
  cursor: pointer;
  transition: color 0.3s;
  animation: fade-down 1s ease-out var(--icon-animation-delay) forwards;
}
.hero-social-icons i:hover {
  color: var(--first-color);
}
.bxl-github {
  --icon-animation-delay: 0ms;
  --icon-count: -20px;
}
.bxl-linkedin {
  --icon-animation-delay: 200ms;
  --icon-count: -50px;
}
.bxl-instagram {
  --icon-animation-delay: 400ms;
  --icon-count: -80px;
}
.bxl-twitter {
  --icon-animation-delay: 600ms;
  --icon-count: -100px;
}
/* certificate button */
.cer {
  position: relative;
  margin: 0;
  padding: 0.8em 1em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: var(--first-color);
  border-radius: 60px;
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  font-family: "poppins";
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.cer:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.cer:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.cer::before,
.cer::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.cer:hover::before,
.cer:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.cer:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.cer:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

/* resume download */
.cer1 {
  position: relative;
  margin: 0;
  padding: 0.8em 1em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: var(--first-color);
  border-radius: 60px;
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  font-family: "poppins";
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.cer1:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.cer1:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.cer1::before,
.cer1::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.cer1:hover::before,
.cer1:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.cer1:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.cer1:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

/*=====hero image section ===========*/
.col-2 {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.hero-img-container {
    width: 400px;
    height: 405px;
    background: var(--herocontainer);
    border-radius: 46% 54% 34% 66% / 54% 61% 39% 46%;
    overflow: hidden;
    animation: fade-left 1.4s ease-out, imgFloat 7s ease-in-out infinite;
  }

@keyframes imgFloat {
  50% {
    transform: translateY(10px);
    border-radius: 55% 45% 55% 45%;
  }
}

.hero-img-container::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 410px;
  height: 415px;
  border: 2px solid var(--first-color);
  border-radius: 46% 54% 34% 66% / 54% 61% 39% 46%;
  opacity: 0;
}
.hero-image {
  height: 420px;
  margin-left: -20px;
}

/*====================== animations ===============*/
@keyframes fade-right {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-down {
  from {
    transform: translateY(var(--icon-count));
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-left {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.scroll-btn{
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 40px;
    gap: 5px;
    text-decoration: none;
    color: var(--black-color);
    background: var(--bg-color);
    border-radius: 30px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.scroll-btn i{
   font-size: 30px;
   color:#3d7eae;
}

/*============== about section============ */
/* download cv cer3 */
.cer33{
  margin-left: 60%;
  transform: translateY(24px);
}
.cer3 {
  position: relative;
  margin: 0;
  padding: 0.8em 1em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: var(--first-color);
  border-radius: 60px;
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  font-family: "poppins";
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.cer3:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.cer3:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.cer3::before,
.cer3::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.cer3:hover::before,
.cer3:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.cer3:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.cer3:hover::after {
  transform: translate(50%, 0) scale(1.1);
}
/* ====================== */
.top-header h1.big {
  position: absolute;
  top: -4px;
  left: 32%;
  font-size: 7vw;
  color: var(--h1big);
  z-index: -1;
  font-weight: 900; 
  font-family: Poppins;
}
.section{
  padding-block: 5em;
  margin: 100px;
}
.row{
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 50px;

}
.col{
  display: flex;
  width: 50%;
}
.top-header{
  text-align: center;
  margin-bottom: 5em;
} 
.top-header h1{
  font-weight: 700;
  color: var(--text-color-second);
  margin-bottom: 10px;
  font-family: Poppins;
  font-size: 50px;
}
.top-header span{
  color: #999;
}
h3{
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color-second);
  margin-bottom: 15px;
  font-family: Poppins;
}
.about-info{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: 30px 70px;
  padding-inline: 20px;
  background: var(--bg-color);
  box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
  border-radius: 20px;
}
.about-info p{
  text-align: center;
  font-size: 15px;
  color: #777;
  letter-spacing: 1px; 
}
.about-btn .btn {
  display: flex;
  align-items: center; /* Align items vertically */
  gap: 8px;
}
.about-btn button{
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--first-color);
  color: var(--bg-color);
  border-radius: 30px;
}
.about-btn button:hover{
  background: var(--dark-blue);
}
/* about skills */
.row {
  display: flex;
  flex-wrap: wrap;
}
.col {
  flex: 1;
  display: flex; /* Add this line */
}
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skills-box {
  /* margin: 0; */
  margin-bottom: -20px;
}

.skills-header {
  margin-bottom: 2px;
}
.skills-header2 {
  margin-bottom: 2px;
}
.skills-header3 {
  margin-bottom: 2px;
}
.skills-header3 {
  margin-bottom: 2px;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4%;
}
.skills-list span {
  font-size: 14px;
  background: var(--first-color);
  color: var(--skill);
  padding: 2px 10px;
  border-radius: 5px;
}

/* skills icon  */
.skills-header img{
  height: 20px;
  width: 20px;
  margin-left:14%;
  margin-bottom: -5%;
}
.skills-header2 img{
  height: 20px;
  width: 20px;
  margin-left:8%;
  margin-bottom: -5%;
}
.skills-header3 img{
  height: 25px;
  width: 25px;
  margin-left:16%;
  margin-bottom: -6%;
}
.skills-header4 img{
  height: 28px;
  width: 28px;
  margin-left:10%;
  margin-bottom: -6%;
}

/* about counter python*/
.containerz{
  width: 100%;
  height: 20vh;
  display: flex;
  margin-bottom: -20%;
  margin-top: -1%;
}

.progress-bar1{
  background: #959595;
  width: 400px;
  height: 5px;
  border-radius: 5px;
}
.progress-bar1 div{
  height: 5px;
  border-radius: 5px;
  width: 0%;
}
.count{
  margin-left:350px;
  transform: translateY(-185%);
  position: fixed;
  color: var(--text-color-second);
  font-family: Poppins;
  font-size: 15px;
}
.progress-bar1 div span{
  opacity: 0;
} 

.python{
  background:#ffcd00;
  animation: python 1.7s linear forwards ;
}


@keyframes python{
  100%{
      width: 90%;
  }
}

/* about counter sql*/
.containerx{
  width: 100%;
  height: 20vh;
  background: #22222200;
  display: flex;
  margin-bottom: -20%;
  margin-top: -1%;
}
.progress-bar2{
  background: #959595;
  width: 400px;
  height: 5px;
  border-radius: 5px;
}
.progress-bar2 div{
  height: 5px;
  border-radius: 5px;
  width: 0%;
}
.progress-bar2 div span{
  opacity: 0;
}

.sql{
  background:#428bc7 ;
  animation: sql 1.8s linear forwards ;
}
@keyframes sql{
  100%{
      width: 95%;
  }
}
/* about counter tableau*/
.containery{
  width: 100%;
  height: 20vh;
  background: #22222200;
  display: flex;
  margin-bottom: -20%;
  margin-top: -1%;
}
.progress-bar3{
  background: #959595;
  width: 400px;
  height: 5px;
  border-radius: 5px;
}
.progress-bar3 div{
  height: 5px;
  border-radius: 5px;
  width: 0%;
}
.progress-bar3 div span{
  opacity: 0;
}

.tableau{
  background:#e9762d;
  animation: tableau 1.6s linear forwards ;
}

@keyframes tableau{
  100%{
      width: 86%;
  }
}
/* about counter excel*/
.containerw{
  width: 100%;
  height: 20vh;
  background: #22222200;
  display: flex;
  margin-bottom: -20%;
  margin-top: -1%;
}
.progress-bar4{
  background: #959595;
  width: 400px;
  height: 5px;
  border-radius: 5px;
}
.progress-bar4 div{
  height: 5px;
  border-radius: 5px;
  width: 0%;
}
.progress-bar4 div span{
  opacity: 0;
}
@keyframes excel{
  100%{
      width: 96%;
  }
}
.excel{
  background:#137340;
  animation: excel 1.7s linear forwards ;
}
/* backtotop fixed button */
.fixbc {
  opacity: 0; 
  transition: opacity 0.5s ease; 
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  z-index: 999;
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  border-radius: 50%; /* Make it circular */
  background-color: var(--edbg);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
}
.fixbc i{
  margin-left: -5px;
  font-size: 16px;
}

.fixbc.show {
  opacity: 1; 
}


/*=============project sections =========*/
#projects {
  margin-top: -20px; /* Adjust this value as needed */
}
.wrapper2 {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.container2 {
  height: 400px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
}

.card {
  width: 80px;
  border-radius: .75rem;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  transition: .6s cubic-bezier(.28,-0.03,0,.99);
  box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);

}

.card > .row {
  color: #ffffff;
  display: flex;
  flex-wrap: nowrap;
}

.card > .row > .icon {
  background: var(--first-color);
  color: white;
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.card > .row > .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 80px;
  width: 520px;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: .3s;
  transition: all .8s ease;
}

.description p {
  color:  #989898;
  padding-top: 5px;
}  

.description h4 {
  text-transform: uppercase;
  text-decoration: underline;
}

input {
  display: none;
}

input:checked + label {
  width: 600px;
}

input:checked + label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.card[for="c1"] {
  background-image: url("https://github.com/jyotirmaya16/EXCEL-Data-Analysis/blob/main/crop.jpg?raw=true");
}
.card[for="c2"] {
  background-image: url("https://github.com/jyotirmaya16/EXCEL-Data-Analysis/blob/main/hr.jpg?raw=true");
}
.card[for="c3"] {
  background-image: url("https://github.com/jyotirmaya16/EXCEL-Data-Analysis/blob/main/train.jpg?raw=true");
}
.card[for="c4"] {
  background-image: url("https://github.com/jyotirmaya16/EXCEL-Data-Analysis/blob/main/road.jpg?raw=true");
}

/* buttons showmore */
button {
  --primary-color: var(--first-color);
  --secondary-color: #fff;
  --hover-color: #111;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 1em 1.8em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
}

button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

button:hover {
  background-color: var(--hover-color);
}

button:hover .arrow {
  background: var(--secondary-color);
}

button:hover .arrow:before {
  right: 0;
}
a {
  text-decoration: none;
}
/* button for show individual projects */
.icon1{
  text-decoration: none;
  color: #f05f2b;
}
.icon2{
  text-decoration: none;
  color: #2090df;
}
.icon3{
  text-decoration: none;
  color: #2073df;
}
.icon4{
  text-decoration: none;
  color: #01ba0d;
}

/*contact form=====================*/
#contact{
  transform: translateY(-20%);
}
.contact-card {
  width: 550px;
  height: 280px;
  transition: all 0.2s;
  position: relative;
  cursor: pointer;
  margin-left: 26%;
}

.contact-card-inner {
  width: inherit;
  height: inherit;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}

.circle {
  width: 130px;
  height: 130px;
  background: radial-gradient(var(--first-color), var(--first-color));
  border-radius: 50%;
  position: absolute;
  animation: move-up6 2s ease-in infinite alternate-reverse;
}

.circle:nth-child(1) {
  top: -25px;
  left: -25px;
}

.circle:nth-child(2) {
  bottom: -25px;
  right: -25px;
  animation-name: move-down1;
}

@keyframes move-up6 {
  to {
      transform: translateY(-10px);
  }
}

@keyframes move-down1 {
  to {
      transform: translateY(10px);
  }
}

/*dp contact */
.dpcircle {
  width: 150px;
  height: 155px;
  background: linear-gradient(#614385ae,#516395b2);
  border-radius: 50%;
  /* overflow: hidden; */
  margin-left: 15%;
  transform: translateY(40%);
}

.dp-hero-image {
  height: 280px;
  margin-left: -65px;
  transform: translateY(-25%);
}
.arrow{
  height: 220px;
  margin-left: 150%;
  transform: translateY(-165%);
  mix-blend-mode: lighten;
}
/* gmail and contact */
.contact-info{
  margin-left: 46%;
  transform: translateY(-65%);
  text-decoration: none;
}
.contact-info>h2{
  color: var(--first-color);
  margin-bottom: 20px;
  font-family: "poppins", sans-serif;
}
.mailcall {
  margin-top: 20px; 
}

.mailcall a {
  display: block;
  color:var(--mail); 
  text-decoration: none;
  margin-bottom: 10px; 
  font-size: 18px;
}

.mailcall a:hover {
  color: #3d7eae;
  transition: .3s ease-out;
}

/* .mailcall i {
  margin-right: 5px;
  color: var(--first-color);
  font-size: 20px;
} */

.mailcall span{
    height: auto;
    background:var(--contact);
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    border-radius: 50%;
    /* -webkit-box-shadow: none !important;
    box-shadow: none !important; */
    border: 2px solid #b1b493; 
}

.mailcall span{
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 10px;
}


/*footer*/
#contact{
  transform: translateY(-15%);
}
footer{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
  background: var(--footercolor);
  padding-block: 40px 60px;
}
.top-footer p{
  font-size: 25px;
  font-weight: 600;
}
.middle-footer .footer-menu{
  display: flex;
}
.footer_menu_list{
  list-style: none;
}
.footer_menu_list a{
  text-decoration: none;
  color: var(--text-color-second);
  font-weight: 500;
  margin-inline: 20px;
}
.footer-social-icons{
  display: flex;
  gap: 30px;
}
.footer-social-icons .icon i {
  color:var(--footericon); /* Replace with your desired color code */
}
.bottom-footer{
  font-size: 14px;
  margin-top: 10px;
}
/*===================== back to top button================== */
.new-button {
  display: flex;
  height: 3em;
  width: 166px;
  border-radius: 20px;
  transition: all 0.2s linear;
  cursor: pointer;
  border: none;
  background: #000000;
  margin: 0 auto;
  margin-bottom: 4%;
  box-shadow: 9px 9px 33px #ffffff00, -9px -9px 33px #ffffff00;
  background:var(--scrollback);
  /* 434343 */
  color:var(--text-color-second);
}


.new-button > i {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 20px;
  color: #3d7eae;
  transition: all 0.4s ease-in;
}

.new-button:hover > i {
  font-size: 1.2em;
  transform: translateX(-5px);
}

.new-button:hover {
  box-shadow: var(--box-shadow-scroll);
  /* box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff; */
  transform: translateY(-2px);
  background: var(--scrollback);
}


/*============ bloob animation code pane ============*/
.bouncing-blob {
  width: 32vw;
  aspect-ratio:1;
  border-radius: 50%;
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform-origin: left top;
}

.bouncing-blob--blue {
  background: #4783c7;
}

.bouncing-blob--white {
  background: #0028db;
  z-index: 2;
  width: 15vw;
}

.bouncing-blob--purple {
  background: #8c8ff1;
}

.bouncing-blob--pink {
  background: #e289cd50;
}


.bloobmain {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bouncing-blobs-glass {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(140px);
  -webkit-backdrop-filter: blur(140px);
  pointer-events: none;
}

.bouncing-blobs {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*============== my education ======================*/
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
  margin-top: 4%;
  animation: zoomInDown 1.4s;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}
.timeline:before {
  top: 65px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 2px;
  background-color: var(--stick);
  left: 50%;
  margin-left: 0px;
  margin-bottom: -3%;
}
@media screen and (max-width: 768px) {
  .timeline:before {
    margin-left: -64px;
  }
}
@media screen and (max-width: 480px) {
  .timeline:before {
    margin-left: -64px;
  }
}
@media screen and (max-width: 768px) {
  .timeline .timeline-heading {
    margin-bottom: 30px;
  }
}
.timeline .timeline-heading > div h3 {
  display: inline-block;
  margin-left: 42.4%;
  padding: 7px 15px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  background: var(--stick);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .timeline .timeline-heading > div h3 {
    float: left;
    margin-bottom: 0;
  }
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .timeline > li {
    margin-bottom: 4em;
  }
}
.timeline > li:before, .timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-panel {
  width: 45%;
  float: left;
  margin-bottom: 0;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .timeline > li > .timeline-panel {
    width: 85% !important;
  }
}
@media screen and (max-width: 480px) {
  .timeline > li > .timeline-panel {
    width: 75% !important;
  }
  .timeline > li > .timeline-panel:before {
    top: 30px;
  }
  .timeline > li > .timeline-panel:after {
    top: 31px;
  }
}
.timeline > li > .timeline-badge {
  color: var(--edicon);
  width: 44px;
  height: 44px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -21px;
  background-color: var(--first-color);
  z-index: 100;
  display: table;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .timeline > li > .timeline-badge {
    margin-left: -10px !important;
  }
}
@media screen and (max-width: 992px) {
  .timeline > li > .timeline-badge {
    margin-left: -10px !important;
  }
}
.timeline > li > .timeline-badge i {
  display: table-cell;
  vertical-align: middle;
  height: 44px;
  font-size: 18px;
}
.timeline > li.timeline-unverted {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .timeline > li.timeline-unverted {
    text-align: left;
  }
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-title {
  margin-top: 0;
}

.company {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: normal;
  color: var(--subtext);
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
  color: var(--timelinebody);
  font-family: "poppins";
}

.timeline-body > p + p {
  margin-top: 5px;
}

/* butoon for certification */
.educationcerdiv{
  transform: translateY(14px);
}
.educationcer {
  font-family: inherit;
  font-size: 15px;
  height: 40px;
  font-family: "poppins";
  background: var(--edbg);
  color: white;
  fill: rgb(155, 153, 153);
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  border-radius: 65px;
  font-weight: 300;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.educationcer span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.educationcer svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.educationcer:hover {
  background: var(--edbg);
}

.educationcer:hover .svg-wrapper {
  transform: scale(1.25);
  transition: 0.5s linear;
}

.educationcer:hover svg {
  transform: translateX(2.6em) scale(1.1);
  fill: #fff;
}

.educationcer:hover span {
  opacity: 0;
  transition: 0.5s linear;
}

.educationcer:active {
  transform: scale(0.95);
}

/*============== resplonsive design============ */
@media (max-width: 1052px) {
  header,
  .hero {
    padding: 0 4vw;
  }
}
@media (max-width: 962px) {
  header {
    position: relative;
  }
  .nav_button .menu-toggle {
    display: block;
  }
  .nav_menu.display-menu {
    display: flex;
  }
  .nav_menu {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    flex-direction: column;
    align-items: center;
    background-color: rgba(215, 215, 215, 0.585);
    backdrop-filter: blur(20px);
    width: 300px;
    padding: 40px 0;
    border-radius: 20px 0px 20px 20px;
    border-radius: 20px 0px 20px 20px;
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.2);
  }
  .nav-list {
    margin: 20px 0;
  }
  .nav-link {
    color: #000000;
  }
  .hero {
    flex-direction: column;
  }
  .col {
    width: 100%;
  }
  .col-1 {
    order: 2;
  }
  .col-2 {
    order: -2;
    align-items: center;
    margin: 7px;
  }
  .hero-img-container::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-social-icons {
    position: static;
    margin: 60px 0;
  }
  .custom-shape-divider-bottom-1712244195 {
    opacity: 0;
  }
  .scroll-icon-box {
    display: none;
 }
 .row{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
 }
 .col{
  display: flex;
  justify-content: center;
  gap: 100px;
 }
 .about-info{
  width: 100%;
 }
 .top-header{
  width: 80px;
 }
}
@media (max-width: 514px) {
  header,
  .hero {
    padding: 6vw;
  }
  .hire-me-btn {
    display: none;
  }
  .hero-work {
    font-size: 40px;
  }
  .hero-img-container {
    width: 270px;
    height: 275px;
  }
  .hero-img-container::before {
    width: 280px;
    height: 285px;
  }
  .hero-image {
    height: 275px;
  }
  .hero-description {
    width: inherit;
  }
  .theme-switch {
    --toggle-size: 8px;
  }
  .hire-me-btn {
    display: block;
  }
  .scroll-icon-box {
    display: none;
 }
 .form-inputs{
  flex-direction: column;
}
.input-field{
  width: 100%;
}
}


