/* global animation */
#cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
}

.hidden-fields-container{
  display: none;
}

#cursor-border {
  --size: 50px;
  position: fixed;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  box-shadow: 0 0 0 1px white;
  pointer-events: none;
  transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
    height 0.15s ease-out, background-color 0.15s ease-out;
  z-index: 999;
}

.loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 26%,
    rgba(19, 15, 64, 1) 58%
  );
  justify-content: center;
  z-index: 9999999999;
}
.shape {
  position: absolute;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 50%;
  background-color: transparent;
  border: 2px solid;
  transform-origin: center;
  animation: rotateShape 1.5s infinite ease-in-out,
    neonGlow 1.5s infinite alternate;
}
.triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.square {
  transform: rotate(45deg);
}
.hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
@keyframes rotateShape {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}
@keyframes neonGlow {
  0% {
    border-color: cyan;
    box-shadow: 0 0 8px cyan;
  }
  50% {
    border-color: magenta;
    box-shadow: 0 0 12px magenta;
  }
  100% {
    border-color: lime;
    box-shadow: 0 0 8px lime;
  }
}

/* GSAP CSS END HERE */
/* universal styling start */

.ScrollSmoother-wrapper {
  position: inherit !important;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "DM Sans";
}

html {
  scroll-behavior: auto;
}

body {
  font-weight: 400;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 1) 80%;
  height: 100% !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
  padding: 0;
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  display: inline-block;
}

button {
  border: none;
  background: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

button {
  cursor: pointer;
}

ul,
ol,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
}

.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1680px;
}

p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Inter 28pt";
  color: #b1b1b1;
  margin-bottom: 40px;
}

.btn {
  font-size: 15px;
  line-height: 21px;
  font-weight: 600;
  color: #ffffff;
  padding: 16px 35px;
  border-radius: 15px;
  align-items: center;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.btn::before {
  background: linear-gradient(45deg, #4f46e5 0%, #7c3aed 50%, #4f46e5 100%);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  z-index: -1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* thickness of gradient border */
  border-radius: inherit;
  background: linear-gradient(45deg, #4f46e5 0%, #7c3aed 50%, #4f46e5 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.btn:hover::before {
  width: 0;
  left: 0;
}

.btn:hover {
  color: #ffffff;
}

.btn .fa-arrow-right {
  margin-left: 10px;
}

h2 {
  font-size: 45px;
  line-height: 51px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
	 font-family: 'Source Sans Pro';
}

h2 span {
  color: #0065f8;
}

.sub-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #b1b1b1;
  margin-bottom: 15px;
  font-family: "Inter 28pt";
  display: block;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 15px;
	font-family: 'Source Sans Pro';
}

head {
  overflow: hidden;
}
/* universal styling end */

/* header start */

header {
  padding: 36px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999;
  transition: all 0.3s ease-in-out;
}

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

.logo {
  font-family: 'Courier New', monospace; /* coding vibe */
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 5px;
	text-transform:uppercase;
}

/* Blinking slash */
.slash {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* header .logo {
line-height:0;
    max-width: 125px;
    width: 100%;
} */

header nav ul {
  display: flex;
  gap: 38px;
}

header nav a:hover {
  color: #0065f8;
}

header ul li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}

header .navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin-bottom: 5px;
  display: block;
  border-radius: 50px;
}

header .navbar-toggle :last-child {
  margin-bottom: 0;
}

header .main-menu a {
  font-size: 27px;
  line-height: 29px;
}

header .main-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 84%) 26%,
    rgb(19 15 64 / 93%) 58%
  );
  z-index: 999;
  max-width: 100%;
  text-align: center;
  height: 100vh;
  display: none;
}

.navbar-toggle.active span:first-child {
  transform: rotate(134deg) translate(7px);
  margin-bottom: 0;
  width: 29px;
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(47deg) translate(-8px);
  margin-bottom: 0;
  width: 29px;
}

header .navbar-toggle {
  z-index: 9999;
  padding: 0;
  border: 0;
}

header .navbar-toggle:active {
  display: block;
}

header .main-menu ul {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100vh;
  padding: 20px 0;
}

header .right-column {
  max-width: 170px;
  width: 100%;
  display: flex;
  justify-content: end;
  gap: 20px;
  align-items: center;
}

header .right-column .talk-btn {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
}

header.scrolled {
  padding: 15px 0;
  background: rgb(0 0 0 / 74%);
  backdrop-filter: blur(10px);
}

/* header end */

/* banner start */

.banner {
  padding: 230px 0 135px;
  background-image: url(../images/hero-bg-img.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  display: flex
;
    align-items: center;
}

.banner .sub-heading {
  font-size: 45px;
  line-height: 51px;
  font-weight: 400;
  font-family: "Inter 28pt";
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
}

.banner h1 {
  font-size: 65px;
  line-height: 71px;
  font-weight: 400;
  color: #ffffff;
  max-width: 547px;
 font-family: 'Source Sans Pro';
  width: 100%;
  margin-bottom: 109px;
}

.banner .animation-6{
      right: 50px !important;
    left: inherit !important;
    top: -146px !important;
}

.banner .animation-4{
  right: 50px !important;
    left: inherit !important;
        bottom: -100px !important;
}

.banner .animation-3{
  max-width: 200px !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 200px !important;
   bottom: 43px !important;
    left: 0 !important;
}

.banner .animation-2{
                top: -206px !important;
    bottom: inherit !important;
    max-width: 300px !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;

}

.banner .animation-5{
          right: 0 !important;
    left: inherit !important;
   bottom: 114px !important;

}

.banner h1 span {
  font-weight: 700;
  background: -webkit-linear-gradient(#ffffff, #0065f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner .animation{
        position: absolute;
    left: 48px;
      bottom: -146px;
    max-width: 190px;
    width: 100%;
}

.banner .buttons .banner-button {
  font-size: 15px;
  line-height: 21px;
  font-weight: 600;
  color: #ffffff;
  padding: 16px 35px;
  position: relative;
  border-radius: 15px;
}

.banner .banner-button::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* thickness of gradient border */
  border-radius: inherit;
  background: linear-gradient(45deg, #4f46e5 0%, #7c3aed 50%, #4f46e5 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.banner .buttons .btn {
  max-width: 161px;
}

.banner .buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.banner .buttons a i {
  margin-left: 8px;
}

.banner .left-column {
  width: 100%;
  text-align: center;
}

.banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

.banner .center-column {
  position: relative;
  line-height: 0;
}

.banner .center-column img {
  border-radius: 50%;
}

.banner h1 {
  display: inline-block;
  vertical-align: top;
}

.banner .word {
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0;
  margin-bottom: 25px;
  transform: translateX(-50%);
}

.banner .text {
  position: relative;
}

.banner .letter {
  display: inline-block;
  position: relative;
  float: left;
  transform: translateZ(25px);
  transform-origin: 50% 50% 25px;
}

.banner .letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.banner .letter.behind {
  transform: rotateX(-90deg);
}

.banner .letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner .wisteria {
  color: #8e44ad;
}

.banner .belize {
  color: #2980b9;
}

.banner .pomegranate {
  color: #c0392b;
}

.banner .green {
  color: #16a085;
}

.banner .midnight {
  color: #2c3e50;
}

.banner .center-column {
  margin-right: 130px;
}

/* banner end */

.about-me {
  padding: 40px 0;
}

.about-me .content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.about-me .left-column {
  max-width: 653px;
  width: 100%;
}

.about-me p {
  margin-bottom: 45px;
}

.about-me .skills span {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Inter 28pt";
  color: #ffffff;
}

.about-me .skills span .fa-check {
  color: #0065f8;
  font-size: 24px;
  line-height: 0;
  margin-right: 20px;
}

.about-me .skills {
  margin-bottom: 50px;
  max-width: 507px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.about-me .skills .inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-me .links {
  padding: 20px 40px;
  background-color: #1f1f1f;
  border: 1px solid #353535;
  border-radius: 20px;
  max-width: 585px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-me .links .link {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-me .links .link span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #b1b1b1;
  margin-bottom: 10px;
  display: block;
}

.about-me .links .link a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Inter 28pt";
  color: #ffffff;
}

.about-me .links .link svg {
  font-size: 16px;
  line-height: 0;
  color: #1f1f1f;
  background-color: #0065f8;
  padding: 22px;
  border-radius: 50%;
  max-width: 16px;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}

.about-me .container {
  background-color: #070707;
  padding: 130px 15px;
}

.about-me .right-column {
  position: relative;
  overflow: hidden;
}

.about-me .right-column .about-img {
  overflow: hidden;
  line-height: 0;
}

.about-me .right-column .about-img::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.about-me .right-column .about-img:hover::after {
  height: 200%;
  transition: all 600ms linear;
  background-color: transparent;
}

.about-me .avatar {
  max-width: 266px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding: 15px 25px;
  position: absolute;
  right: 27%;
  bottom: 193px;
  transform: translateX(50%);
}

.about-me .avatar-2 {
  right: 23%;
  bottom: 60px;
}

.about-me .bottom-text .fa-arrow-right {
  transform: rotate(-50deg);
}

.about-me .text .fa-arrow-right {
  transform: rotate(-34deg);
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateY(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translateY(0px);
  }
}

.avatar {
  width: 150px;
  box-sizing: border-box;
  border: 5px white solid;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
  animation: float 3s ease-in-out infinite;
}

.avatar img {
  width: 100%;
  height: auto;
}

.about-me .text a {
  font-size: 15px;
  line-height: 21px;
  color: #070707;
}

.about-me .about-img video {
  max-width: 630px;
  width: 100%;
  position: relative;
  z-index: 99999999;
}

.about-me .about-img img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.about-me .about-img::after {
  background-color: transparent !important;
}

.about-me .right-column {
  padding: 12px 12px 79px;
}
/* about-me end */

/* resume start */

.resume {
  padding: 130px 0;
}

.resume .inner span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Inter 28pt";
  color: #b1b1b1;
  margin-bottom: 20px;
}

.resume .inner .social-media {
  color: rgb(255 255 255 / 0.35);
  margin-bottom: 0;
}

.resume .right-column {
  max-width: 938px;
  width: 100%;
}

.resume .right-column .content {
  display: flex;
  justify-content: space-between;
  background-color: #1f1f1f;
  padding: 50px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 55px;
  position: relative;
}

.resume .right-column .content::before {
  content: "";
  width: 2px;
  height: calc(100% - 120px);
  background-color: #b1b1b1;
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translate(-50%);
}

.resume .right-column .content .inner .fa-arrow-right {
  font-size: 15px;
  line-height: 0;
  color: rgb(255 255 255 / 0.35);
  transform: rotate(-50deg);
  max-width: 14px;
  width: 100%;
  padding: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background-color: #070707;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.resume .right-column .content .inner {
  display: flex;
  gap: 20px;
  align-items: self-start;
  transition: all 0.3s ease-in-out;
}

.resume .right-column h2 {
  margin-bottom: 60px;
}

.resume .right-column .content .left-box:last-child {
  border-right: 0;
  justify-content: flex-end;
}

.resume .left-column .fa-star-of-life {
  font-size: 130px;
  color: #0065f8;
  max-width: 121px;
  width: 100%;
}

.resume .left-column {
  max-width: 261px;
  width: 100%;
  border-radius: 50%;
  background-color: #1f1f1f;
  padding: 5px 5px;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume .left-column img {
  border-radius: 100%;
}

.resume .container {
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  max-width: 1320px;
  gap: 30px;
}

.resume .inner-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.resume .right-column .inner:hover .fa-arrow-right {
  background-color: #0065f8;
  color: #070707;
}

/* resume end */

/* services start */

.services {
  padding: 130px 0;
}

.services .sub-title {
  text-align: center;
}

.services H2 {
  text-align: center;
  margin: 0 auto 60px auto;
  max-width: 696px;
  width: 100%;
}

.services .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.services .card {
  background-color: #1f1f1f;
  padding: 35px 40px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  max-width: 630px;
  width: 100%;
  border: 1px solid #353535;
  transition: all 0.3s ease-in-out;
  gap: 10px;
}

.services .card:hover .fa-arrow-right {
  background-color: #0065f8;
  color: #070707;
}

.services .card span {
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  color: #b1b1b0;
  transition: all 0.3s ease-in-out;
}

.services .card:hover span {
  color: #0065f8;
}

.services .card .center-column p {
  margin-bottom: 0;
}

.services .card .fa-arrow-right {
  font-size: 15px;
  line-height: 0;
  color: #0065f8;
  transform: rotate(-50deg);
  max-width: 16px;
  width: 100%;
  padding: 20px;
  border-radius: 50%;
  display: flex;
  align-self: center;
  background-color: #131313;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.services .cards a {
  max-width: 630px;
  width: 100%;
}

/* services end */

/* experience start */

.experience {
  padding: 0 0 80px;
}

.experience .left-column {
  max-width: 542px;
  width: 100%;
}

.experience .container {
  background-color: #070707;
  padding: 130px 15px;
  position: relative;
}

.experience .top-img {
  max-width: 55px;
  width: 100%;
  margin: 0 auto 20px auto;
}

.experience .right-column .skills-box h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}

.experience .right-column .skills-box {
  padding: 25px 10px 10px;
  max-width: 191px;
  width: 100%;
  background-color: #1f1f1f;
  border-radius: 14px;
  border: 1px solid #353535;
  text-align: center;
}

.experience .right-column .skills-box span {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #656565;
  max-width: 138px;
  width: 100%;
  padding: 10px;
  background-color: #131313;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.experience .right-column {
  display: flex;
  flex-wrap: wrap;
  max-width: 854px;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  row-gap: 30px;
}

.experience .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1446px;
  width: 100%;
  margin: 0 auto;
  gap: 30px;
}

.experience .container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 35px;
  width: 100%;
  height: 220px;
  opacity: 0.1;
  filter: blur(150px);
  background-color: #2df4a1;
  z-index: -1;
}

.experience .btn {
  max-width: 184px;
}

/* .experience end */

/* peojects  start */

.projects {
  position: relative;
  padding: 100px 0;
}

.projects::after {
  content: "";
  top: -67px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 101.8%;
  clip-path: polygon(0 100%, 0 70px, 28% 70px, 33% 0, 100% 0, 100% 100%);
  background-size: cover;
  background-color: #1f1f1f;
}

.projects .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.projects .last-content {
  margin: 0 auto 70px auto;
}

.projects .project-title {
  text-align: center;
}

.projects h2 {
  text-align: center;
  margin-bottom: 60px;
}

.projects .right-column {
  max-width: 447px;
  width: 100%;
}

.projects .right-column a .fa-arrow-right {
  font-size: 15px;
  line-height: 0;
  color: #0065f8;
  transform: rotate(-50deg);
  max-width: 17px;
  width: 100%;
  padding: 30px;
  border-radius: 50%;
  display: flex;
  align-self: center;
  background-color: #070707;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.projects .right-column a .fa-arrow-right:hover {
  background-color: #0065f8;
  color: #070707;
}

.projects .right-column h3 {
  font-size: 48px;
  line-height: 44px;
}

.projects .content .sub-title {
  color: #0065f8;
}

.projects .content-wrap {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
}

.projects .btn {
  display: flex;
  max-width: 243px;
  margin: 0 auto;
}

.projects .left-column {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.projects .left-column::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.projects .left-column:hover::after {
  height: 200%;
  transition: all 600ms linear;
  background-color: transparent;
}

.projects .panel {
  background-color: #1f1f1f;
  box-shadow: #0065f84d 0px 0px 17px;
}

.projects .wrap {
  background-color: #1f1f1f;
  box-shadow: #0065f8 0px 7px 29px 0px;
  height: 100vh;
  border-radius: 15px;
  position: relative;
  z-index: 999999;
  display: flex;
  margin-bottom: 70px;
  align-items: center;
}

.projects .container {
  position: relative;
  z-index: 99;
}

/* .projects end */

/* reviews start */

.reviews {
  padding: 60px 0;
}

.reviews .left-column {
  max-width: 363px;
  width: 100%;
}

.reviews .container {
  background-color: #070707;
  padding: 130px 15px;
  position: relative;
}

.reviews .content {
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  gap: 20px;
}

.reviews .right-column {
  display: flex;
  gap: 30px;
  position: relative;
}

.reviews .right-column .top-img {
  max-width: 85px;
  width: 100%;
  margin: 0 auto 40px auto;
  position: relative;
  line-height: 0;
}

.reviews .right-column .top-img::before {
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 100%;
  height: 100%;
  color: #ffffff;
  pointer-events: none;
}

.reviews .right-column .reviews-box {
  text-align: center;
  padding: 50px;
  max-width: 406px;
  width: 100%;
  background-color: #131313;
  border-radius: 16px;
  border: 1px solid #353535;
}

.reviews .right-column .reviews-box span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Inter 28pt";
  color: #0065f8;
}

.reviews .left-column .fa-arrow-right {
  font-size: 16px;
  line-height: 0;
  color: #ffffff;
  transform: rotate(-50deg);
  max-width: 16px;
  width: 100%;
  padding: 30px;
  border-radius: 50%;
  display: flex;
  align-self: center;
  background-color: #070707;
  justify-content: center;
  border: 1px solid #353535;
  transition: all 0.4s ease-in-out;
}

.reviews .left-column .fa-arrow-right:hover {
  background-color: #2df4a1;
  color: #070707;
}

.reviews .left-column .left-icon {
  transform: rotate(-135deg);
  margin-right: 10px;
}

.reviews .right-column .boxes {
  max-width: 843px;
  width: 100%;
}

.reviews .slick-list {
  position: unset;
}

.reviews .slick-track {
  position: unset;
}

.reviews .slick-slider {
  position: unset;
}

.slick-arrow {
  position: absolute;
  padding: 30px;
  border-radius: 100%;
  display: flex;
  background-color: #070707;
  align-items: center;
  border: 1px solid #353535;
  justify-content: center;
  align-items: center;
  max-width: 76px;
  width: 100%;
}

.slick-next {
  left: -383px;
  top: 264px;
  transform: rotate(-32deg);
}

.slick-prev {
  left: -475px;
  top: 264px;
  transform: rotate(39deg);
}

.reviews .box .top-img {
  max-width: 50%;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.open-modal {
  border: none;
  cursor: pointer;
  padding: 0;
}

.open-modal:hover {
  border: 0 !important;
}

.hero {
  padding: 100px 0;
  text-align: center;
  background: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 0;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  position: absolute;
  left: 29%;
  top: 14%;
  transform: translate(-50%);
}

.reviews .right-column .modal video {
  width: 100%;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modal-action {
  margin-top: 15px;
  padding: 8px 15px;
  border: none;
  background: #0077ff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* Show modal */
.modal-overlay.active {
  display: flex;
}

.reviews .reviews-box p {
  height: 100%;
  min-height: 110px;
}

/* .reviews end */

/* portfolio start */

.portfolio {
  padding: 130px 0;
}

.tabs-container {
  width: 100%;
}

.tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab {
  padding: 15px 16px;
  border-radius: 0;
  color: #eee;
  cursor: pointer;
  transition: all 0.3s ease;
  transition: all 0.3s ease-in-out;
  background-color: #0065f8;
  border-radius: 10px;
  max-width: 131px;
  width: 100%;
}

.tab:hover {
  border: 0;
}

.tab-content {
  display: none;
  border-radius: 6px;
  color: #ccc;
  transition: all 0.3s ease;
}

.tab-content.active {
  display: block;
}

:root {
  --marquee-width: 100%;
  --marquee-height: 120px;
  --marquee-elements-displayed: 6;
  --marquee-element-width: calc(
    var(--marquee-width) / var(--marquee-elements-displayed)
  );
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marquee {
  width: var(--marquee-width);
  background-color: transparent;
  overflow: hidden;
  position: relative;
}

.marquee::before,
.marquee::after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 2;
  pointer-events: none;
}

.portfolio .top-row {
  margin-bottom: 40px;
}

.marquee::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(0, 15, 9, var(--tw-bg-opacity, 1)) 4%,
    transparent 99%
  );
}

.marquee::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(0, 15, 9, var(--tw-bg-opacity, 1)) 4%,
    transparent 99%
  );
}

.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  animation: scrolling 130s linear infinite;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.marquee.reverse .marquee-content {
  animation: scrolling-reverse 130s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
    );
  }
}

@keyframes scrolling-reverse {
  0% {
    transform: translateX(
      calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
    );
  }
  100% {
    transform: translateX(0);
  }
}

:root {
  --marquee-elements-displayed: 3;
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  height: 100%;
  padding: 5px;
}

.marquee-content li img {
  max-height: 60%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 20px;
}

@media (max-width: 768px) {
  :root {
    --marquee-elements-displayed: 3;
  }

  .marquee::before,
  .marquee::after {
    width: 5rem;
  }
}

.marquee-content .slide-img {
  line-height: 0;
  position: relative;
}

.marquee-content .btn {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border: 0;
  background-color: transparent;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  max-width: 151px;
  width: 100%;
}

.marquee-content .btn .fa-chevron-right {
  margin-left: 15px;
}

.marquee-content li:hover .btn {
  opacity: 1;
}

.marquee-content li:hover .portfolio-img::before {
  height: 100%;
}

.marquee-content li .portfolio-img {
  position: relative;
  line-height: 0;
}

.marquee-content li .portfolio-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: rgb(19 15 64 / 80%);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.portfolio .marquee .btn::after {
  display: none;
}

.marquee .btn:hover::before {
  display: none;
}

.marquee .btn::before {
  display: none;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.draw-btn {
  background: none;
  border: 0;
  box-sizing: border-box;
  margin: 0;

  box-shadow: inset 0 0 0 2px #7a7579;
  color: #7a7579;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

.draw-btn.cut {
  background: none;
  border: 0;
  box-sizing: border-box;
  margin: 0;

  box-shadow: inset 0 0 0 2px #7a7579;
  color: #7a7579;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  vertical-align: middle;
  cursor: pointer;

  /* cut top-left and bottom-right corners */
  clip-path: polygon(
    12px 0,
    /* cut top-left */ 100% 0,
    /* go to top-right */ 100% calc(100% - 12px),
    /* before bottom-right cut */ calc(100% - 12px) 100%,
    /* cut bottom-right */ 0 100%,
    /* bottom-left */ 0 12px /* up left edge */
  );
}

.portfolio .tab-btn {
  max-width: 131px;
  width: 100%;
  position: relative;
}

.portfolio .tab-btn::before {
  max-width: 2px;
  width: 100%;
  background-color: #7a7579;
  content: "";
  position: absolute;
  left: 5px;
  top: -1px;
  height: 15px;
  transform: rotate(42deg);
  transition: all 0.1s ease-in-out;
}

.portfolio .tab-btn::after {
  max-width: 2px;
  width: 100%;
  background-color: #7a7579;
  content: "";
  position: absolute;
  right: 6px;
  bottom: -1px;
  height: 15px;
  transform: rotate(42deg);
  transition: 1.5s;
}

.portfolio .tab-btn:hover::after {
  background-color: #ffffff;
}

.portfolio .tab-btn:hover::before {
  background-color: #ffffff;
}

.draw-btn.icon {
  width: 40px;
  height: 40px;
  padding: 0;
}

.draw-btn.text {
  padding: 10px;
}

.portfolio .tabs .link.active {
  color: #ffffff;
  border-color: #ffffff;
}

.draw-btn::before,
.draw-btn::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}

.draw-btn {
  -webkit-transition: color 0.25s;
  -moz-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
  border-radius: 0;
}
.draw-btn::before {
  top: 0;
  left: 0;
}
.draw-btn::after {
  bottom: 0;
  right: 0;
}
.draw-btn:hover {
  color: #ffffff;
  border: 0;
}
.draw-btn:hover::before,
.draw-btn:hover::after {
  width: 100%;
  height: 100%;
}
.draw-btn:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;

  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -moz-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.draw-btn:hover::after {
  border-bottom-color: #ffffff;
  border-left-color: #ffffff;

  -webkit-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s,
    height 0.25s ease-out 0.75s;
  -moz-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s,
    height 0.25s ease-out 0.75s;
  -o-transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s,
    height 0.25s ease-out 0.75s;
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s,
    height 0.25s ease-out 0.75s;
}

/* contact-us start */

.contact-us {
  padding: 130px 0;
}

.contact-us .left-column {
  max-width: 409px;
  width: 100%;
}

.contact-us .left-column ul li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #b1b1b1;
  margin-bottom: 25px;
}

.contact-us .left-column ul li i {
  color: #1f1f1f;
  line-height: 0;
  max-width: 30px;
  width: 100%;
  background-color: #2df4a1;
  padding: 21px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-us .left-column ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-us label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex
;
    flex-direction: column;
    gap: 13px;
}

.contact form p{
max-width:
100%;
width:100%;
}

.contact-us .form-group p {
    max-width: 48%;
    width: 100%;
}



.wpcf7-submit {
    background: linear-gradient(45deg, #4f46e5 0%, #7c3aed 50%, #4f46e5 100%);
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    border: 0 !important;
}
}

.hidden-fields-container{
display:none !important;
}


}

.contact-us label span {
  color: #0065f8;
}

.contact-us .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact-us form .form-item {
  display: flex;
  flex-direction: column;
  max-width: 48%;
  width: 100%;
}

.contact-us form input {
  padding: 18px 45px 18px 30px;
  border: 1px solid #353535;
  background-color: #1f1f1f;
  border-radius: 14px;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #ffffff;
}

.contact-us form input::placeholder {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #fff3;
}

.contact-us form .form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
  margin-bottom: 30px;
}

.contact-us form textarea {
  padding: 18px 45px 18px 30px;
  border: 1px solid #353535;
  background-color: #1f1f1f;
  border-radius: 14px;
  width: 100%;
  min-height: 125px;
  resize: none;
}

.contact-us form .form-message {
  max-width: 100%;
  margin-bottom: 20px;
}

.contact-us form {
  max-width: 814px;
  width: 100%;
}

.wpcf7{
width: 100%;
    max-width: 814px;
}

.contact-us form .btn {
  max-width: 218px;
}

/* contact-us end */

/* footer */

footer .footer-top {
  background-color: #070707;
  padding: 100px 0 80px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

footer .footer-top .container {
  display: flex;
  flex-direction: column;
  text-align: center;
}

footer .social-contact {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  padding-top: 35px;
  border-top: 1px solid #353535;
}

footer .footer-top .social-contact .links a {
  font-size: 17px;
  line-height: 23px;
  font-weight: 400;
  color: #ffffff;
  padding: 10px;
  border: 1px solid #353535;
  border-radius: 50px;
}

footer .footer-top .link-circle span {
  font-size: 17px;
  line-height: 23px;
  font-weight: 400;
  color: #ffffff;
}

footer .footer-top .links-circle {
  max-width: 187px;
  width: 100%;
  border-radius: 100%;
  background: linear-gradient(45deg, #4f46e5 0%, #7c3aed 50%, #4f46e5 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 78px 0;
  margin-top: -126px;
  margin-right: 21px;
}

footer .logo {
  max-width: 175px;
  width: 100%;
}

footer h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}

footer .center-column li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #b1b1b1;
}

footer .center-column ul {
  display: flex;
  gap: 44px;
  margin-bottom: 40px;
}

footer .center-column input {
  padding: 12px 20px 13px 30px;
  border-bottom: 1px solid #fff3 !important;
  border: 0;
  background-color: transparent;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  max-width: 358px;
  width: 100%;
  color: #ffffff;
}

footer .center-column input::placeholder {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #fff3;
}

footer .center-column .btn {
  border-radius: 0;
}

footer .center-column form .fa-envelope {
  font-size: 16px;
  color: #0065f8;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

footer .center-column form {
  position: relative;
  display: flex;
}

footer .center-column {
  max-width: 504px;
  width: 100%;
}

footer .right-column li {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #b1b1b1;
  margin-bottom: 20px;
}

footer .right-column li i {
  font-size: 18px;
  color: #2df4a1;
  padding-right: 15px;
}

footer .right-column li i {
  margin-right: 15px;
}

footer .right-column li a {
  color: #b1b1b1;
}

footer .right-column .number a {
  color: #ffffff;
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

footer .copyright {
  background-color: #070707;
}

footer .footer-top h2 {
  margin-bottom: 95px;
}

footer .copyright span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #ffffff;
}

footer .copyright span a {
  color: #ffffff;
}

footer .copyright li a {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Inter 28pt";
  color: #ffffff;
}

footer .copyright ul {
  display: flex;
  gap: 25px;
}

footer .copyright {
  padding: 30px 0;
}

footer .btn {
  max-width: 162px;
  width: 100%;
  border-radius: 0;
}

footer .btn::before {
  border-radius: 0;
}

footer .fa-map {
  margin-right: 15px;
}

footer .fa-envelope {
  margin-right: 15px;
}

footer .fa-phone {
  margin-right: 15px;
}

/* footer end */

/* responsive start */

@media screen and (max-width: 1490px) {
  .banner h1 {
    font-size: 50px;
    line-height: 56px;
  }

  .banner .buttons .banner-button {
    padding: 16px 20px;
  }

  .btn {
    padding: 16px 25px;
  }

  .banner .center-column img {
    max-width: 350px;
    width: 100%;
  }

  .banner .center-column {
    margin-right: 35px;
  }

  .banner .circle-sm {
    width: 400px;
    height: 400px;
  }

  .banner .circle-md {
    width: 450px;
    height: 450px;
  }

  .banner .circle-lg {
    width: 518px;
    height: 518px;
  }

  .banner .circles-wrapper {
    left: -80px;
    top: 50%;
  }

  .services .cards a {
    max-width: 47%;
  }

  .experience .left-column {
    max-width: 38%;
  }

  .experience .right-column .skills-box {
    max-width: 23%;
  }

  .slick-next {
    left: inherit;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
  }

  .slick-prev {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
  }

  .slick-arrow {
    max-width: 35px;
    padding: 10px;
  }

  .resume .right-column .content {
    gap: 21px;
    padding: 30px;
  }

  .services .center-column h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .services .center-column p {
    font-size: 14px;
    line-height: 20px;
  }

  .services .card {
    padding: 35px 30px;
  }
}

@media screen and (max-width:1270px) {
  .banner .elementor{
    width: 200px !important;
    height: 200px !important;
  }

  .banner .shopify{
        width: 200px !important;
    height: 200px !important;
  }

  .banner .wordpress{
        width: 110px !important;
        height: 110px !important;
  }

  .banner .animation{
    bottom: -65px;
  }

  .banner .animation-2{
        top: -44px !important;
  }

  .banner .animation-4{
    bottom: -26px !important;
  }

  .banner .animation-5{
                      bottom: 101px !important;
  }

  .banner .animation-6{
        top: 0px !important;

  }
}

@media screen and (max-width: 1230px) {
  .projects .panel video {
    max-width: 593px;
  }

  .projects .video-frame img {
    left: 50%;
    transform: translateX(-50%);
    max-width: 615px;
  }
  
}

@media screen and (max-width: 1190px) {
  .projects .panel video {
    max-width: 96%;
  }

  .projects .video-frame {
    padding: 10px 0 77px;
  }
  .banner .container {
    flex-wrap: wrap;
  }

  .banner .circles-wrapper {
    left: -61px;
    top: 58%;
  }

  .banner .container {
    column-gap: 20px;
    row-gap: 100px;
  }

  .banner .center-column {
    margin-right: 129px;
  }

  .banner .circle-lg {
    width: 418px;
    height: 418px;
  }

  .banner .circle-md {
    width: 350px;
    height: 350px;
  }

  .banner .circle-sm {
    width: 300px;
    height: 300px;
  }

  .banner .center-column img {
    max-width: 298px;
  }

  .banner .right-column .achivement {
    display: flex;
    width: 100%;
  }

  .banner .right-column .inner {
    padding: 0;
    margin-bottom: 0;
    max-width: 34%;
    width: 100%;
    border-bottom: 0;
    border-right: 1px solid #353535;
    text-align: center;
  }

  .banner .right-column .inner:last-child {
    border-right: 0;
  }

  .banner .right-column .inner p {
    margin-bottom: 0;
  }

  .banner .right-column {
    width: 100%;
  }

  h2 {
    font-size: 35px;
    line-height: 41px;
    margin-bottom: 25px;
  }
  .about-me .links {
    padding: 15px 25px;
  }

  .about-me .left-column {
    max-width: 47%;
  }

  .about-me .links .link svg {
    font-size: 14px;
    padding: 15px;
  }

  .about-me .links .link a {
    font-size: 15px;
    line-height: 21px;
  }

  .about-me .links .link {
    gap: 10px;
  }

  .about-me .right-column {
    max-width: 43%;
  }

  .about-me .avatar {
    right: 22%;
  }

  .about-me .avatar-2 {
    right: 19%;
  }

  .about-me .links .link {
    width: 100%;
  }

  .about-me .container {
    padding: 80px 15px;
  }

  h3 {
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 10px;
  }

  .resume .right-column .content .inner .fa-arrow-right {
    padding: 15px;
  }

  .resume .right-column .content .inner {
    gap: 10px;
  }

  .resume .left-column {
    max-width: 235px;
    padding: 34px 56px;
  }

  .resume {
    padding: 80px 0;
  }

  .resume .right-column .content {
    padding: 35px;
    gap: 14px;
  }

  .services {
    padding: 80px 0;
  }

  .services .card {
    padding: 20px;
  }

  .services .card .fa-arrow-right {
    padding: 15px;
  }

  .services .card span {
    font-size: 18px;
    line-height: 24px;
  }

  .experience .container {
    padding: 80px 15px;
  }

  .projects {
    padding: 80px 0;
  }

  .contact-us form input {
    padding: 13px 45px 13px 30px;
  }

  .contact-us label {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .contact-us .left-column ul li {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  footer .center-column ul {
    gap: 20px;
  }

  footer .center-column input {
    max-width: 251px;
  }

  footer .btn {
    max-width: 136px;
  }

  footer .center-column {
    max-width: 409px;
  }

  header .main-menu a {
    font-size: 20px;
    line-height: 26px;
  }

  .reviews .right-column .reviews-box {
    padding: 34px;
    max-width: 335px;
  }

  .reviews .right-column .boxes {
    max-width: 696px;
  }

  .services .center-column h3 {
    font-size: 17px;
    line-height: 23px;
  }

      .banner h1 {
        font-size: 38px;
        line-height: 44px;
    }
}

@media screen and (max-width: 990px) {
  .banner .left-column {
    max-width: 100%;
  }

  header nav {
    display: none;
  }

  .banner .circles-wrapper {
    left: 0;
    top: 58%;
    display: flex;
    justify-content: center;
  }

  .banner .center-column {
    margin-right: 0;
    width: 100%;
    margin-bottom: 30px;
  }

  .banner .center-column img {
    margin: 0 auto;
    display: flex;
  }

  .banner .circle {
    row-gap: 70px;
  }

  .about-me .content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .about-me .left-column {
    max-width: 100%;
  }

  .about-me .right-column {
    max-width: 368px;
  }

  .about-me .avatar {
    right: 46%;
    bottom: 140px;
  }

  .about-me .avatar-2 {
    right: 40%;
    bottom: 35px;
  }

  .resume .left-column {
    display: none;
  }

  .resume .right-column h2 {
    margin-bottom: 25px;
  }

  .services .cards {
    gap: 20px;
  }

  .services .card {
    padding: 15px 15px;
    gap: 15px;
  }

  h3 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 5px;
  }

  .services .card .fa-arrow-right {
    padding: 10px;
    max-width: 10px;
    font-size: 10px;
  }

  .services H2 {
    margin: 0 auto 30px auto;
  }

  .experience .content {
    flex-direction: column;
  }

  .experience .left-column {
    max-width: 100%;
  }

  .sub-title {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .projects .right-column h3 {
    font-size: 30px;
    line-height: 36px;
  }

  .projects .right-column p {
    margin-bottom: 25px;
  }

  .projects .right-column a .fa-arrow-right {
    padding: 18px;
  }

  .portfolio {
    padding: 80px 0;
  }

  .tabs {
    margin-bottom: 25px;
  }

  .contact-us .left-column ul li {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 15px;
    gap: 10px;
  }

  .contact-us .left-column {
    max-width: 37%;
  }

  .contact-us {
    padding: 80px 0;
  }

  footer .footer-top {
    padding: 80px 0;
  }

  footer .container {
    flex-wrap: wrap;
  }

  footer .logo {
    max-width: 22%;
  }

  footer .center-column {
    max-width: 54%;
  }

  footer .right-column li {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 15px;
  }

  footer .copyright span {
    font-size: 14px;
    line-height: 20px;
  }

  footer .copyright li a {
    font-size: 14px;
    line-height: 20px;
  }

  footer .copyright ul {
    gap: 15px;
  }

  footer .copyright {
    padding: 15px 0;
  }

  .reviews .content {
    flex-direction: column;
  }

  .reviews .right-column .boxes {
    max-width: 100%;
  }

  .reviews .slick-slider {
    display: flex;
    justify-content: center;
  }

  .reviews .container {
    padding: 80px 15px;
  }

  .banner .animation{
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .projects .video-frame img {
    max-width: 643px;
  }

  .banner {
    padding: 150px 0 100px;
  }

  .banner .sub-heading {
    font-size: 35px;
    line-height: 41px;
  }

  .banner h1 {
    font-size: 40px;
    line-height: 46px;
  }
  .banner .center-column img {
    max-width: 255px;
  }
  .banner .circle-lg {
    width: 350px;
    height: 350px;
  }
  .banner .circle-md {
    width: 300px;
    height: 300px;
  }
  .banner .circle-sm {
    width: 250px;
    height: 250px;
  }

  .banner .word {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .banner .buttons {
    justify-content: center;
  }

  .banner h1 {
    margin-bottom: 77px;
  }

  .shape {
    display: flex;
    justify-self: center;
    align-self: center;
  }
  .loader {
    left: 0;
    top: 0;
  }

  .banner .right-column .achivement {
    flex-direction: column;
  }

  .banner .right-column .inner {
    max-width: 100%;
    border-right: 0;
    padding: 0 0 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #353535;
  }
  .banner .left-column {
    text-align: center;
  }

  .about-me .left-column {
    text-align: center;
  }

  .about-me .skills {
    margin: 0 auto 30px auto;
  }

  h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }

  p {
    font-size: 14px;
    line-height: 20px;
  }

  .about-me p {
    margin-bottom: 35px;
  }

  .about-me .links .link {
    flex-direction: column;
  }

  .about-me .avatar {
    right: 19%;
    bottom: 97px;
    position: unset;
  }

  .about-me .avatar-2 {
    right: 18%;
    bottom: 8px;
  }

  .about-me .skills span .fa-check {
    font-size: 18px;
    margin-right: 10px;
  }

  .about-me .container {
    padding: 40px 15px;
  }

  .about-me .links {
    margin: 0 auto;
  }

  .resume .right-column .content::before {
    width: 0;
  }

  .resume .right-column .content .inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 100%;
  }

  .resume .inner-content {
    gap: 30px;
  }

  .resume .right-column .content {
    gap: 30px;
  }

  .resume .right-column .content .inner .fa-arrow-right {
    margin: 0 auto 15px auto;
  }

  .resume .inner-content {
    max-width: 100%;
    width: 100%;
  }

  .resume .inner-text {
    width: 100%;
  }

  .resume {
    padding: 40px 0;
    text-align: center;
  }

  .services .cards a {
    max-width: 100%;
  }

  .services {
    padding: 40px 0;
  }

  .experience .container {
    padding: 40px 15px;
  }
  .experience .right-column .skills-box {
    max-width: 31%;
  }

  .experience .left-column {
    text-align: center;
  }

  .experience .btn {
    margin: 0 auto;
  }

  .btn {
    padding: 15px 15px;
    max-width: 174px;
  }

  .projects .content {
    flex-direction: column;
    text-align: center;
  }

  .projects .panel {
    padding: 0 15px;
  }

  .projects .content-wrap {
    padding: 0 15px;
  }

  .reviews .left-column {
    max-width: 100%;
  }

  :root {
    --marquee-elements-displayed: 2; /* Show only 4 at a time */
  }

  .portfolio {
    padding: 40px 0;
  }

  .contact-us .container {
    flex-direction: column;
  }

  .contact-us .left-column {
    max-width: 100%;
    text-align: center;
  }

  .contact-us .left-column ul li {
    justify-content: center;
  }

  .contact-us label {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-us form input {
    padding: 10px 15px 10px 15px;
    font-size: 14px;
    line-height: 20px;
  }

  .contact-us form input::placeholder {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-us {
    padding: 40px 0;
  }

  .contact-us form .btn {
    max-width: 178px;
  }

  footer .center-column {
    max-width: 100%;
  }

  footer .logo {
    max-width: 182px;
  }

  footer .container {
    gap: 35px;
  }

  footer .footer-top {
    text-align: center;
    padding: 40px 0;
  }

  footer .right-column {
    width: 100%;
  }

  footer .center-column ul {
    justify-content: center;
  }

  footer .container {
    justify-content: center;
  }

  header .main-menu a {
    font-size: 16px;
    line-height: 22px;
  }

  .services .card {
    width: 100%;
    max-width: 100%;
  }

  .reviews .container {
    text-align: center;
    padding: 40px 15px;
  }

  .projects .wrap {
    min-height: 835px;
  }

  .projects .left-column {
    margin-top: 30px;
  }

  .projects .right-column {
    padding-bottom: 30px;
  }

  .projects .btn {
    max-width: 203px;
  }

  footer .center-column form {
    max-width: 387px;
    margin: 0 auto;
  }

  .modal {
    left: 16.5%;
  }

  .tabs {
    gap: 20px;
  }

  .tab {
    font-size: 13px;
    line-height: 19px;
    padding: 5px 5px;
  }

  .marquee-content {
    gap: 20px;
  }

  .portfolio .top-row {
    margin-bottom: 20px;
  }

  footer .footer-top .links-circle {
    max-width: 91px;
    padding: 34px 0;
    margin-top: -211px;
  }

  footer .footer-top .links-circle span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }

  footer .social-contact {
    padding-top: 60px;
  }

  footer .footer-top .links {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }

  footer .footer-top .social-contact .links a {
    padding: 5px;
    font-size: 14px;
    line-height: 20px;
  }

  footer .footer-top {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

@media screen and (max-width: 425px) {
  .banner .buttons {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .about-me .skills {
    flex-direction: column;
    gap: 20px;
  }

  .about-me .links {
    flex-direction: column;
    gap: 20px;
  }

  .services .card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .experience .right-column .skills-box {
    max-width: 48%;
  }

  .projects .right-column h3 {
    font-size: 25px;
    line-height: 31px;
  }

  .tabs {
    margin-bottom: 15px;
    gap: 10px;
  }

  .contact-us form .form-item {
    max-width: 100%;
  }

  footer .btn {
    max-width: 106px;

    padding: 10px 10px;
  }
  footer .copyright {
    text-align: center;
  }

  footer .center-column ul {
    gap: 7px;
  }

  .banner .circle-lg {
    width: 280px;
    height: 280px;
  }

  .banner .circle-md {
    width: 250px;
    height: 250px;
  }

  .banner .circle-sm {
    width: 230px;
    height: 230px;
  }

  .banner .center-column img {
    max-width: 213px;
  }

  header .logo {
    max-width: 132px;
  }

  header .right-column .talk-btn {
    display: none;
  }

  header .right-column {
    max-width: 106px;
    gap: 10px;
  }

  .modal {
    max-width: 250px;
    padding: 10px;
  }

  .marquee-content .btn .fa-chevron-right {
    margin-left: 5px;
  }

  .marquee-content .btn {
    max-width: 108px;
    font-size: 10px;
    line-height: 16px;
  }

  .marquee-content {
    gap: 0;
  }

  .portfolio .top-row {
    margin-bottom: 0;
  }

  footer .footer-top .links-circle {
    padding: 22px 0;
    margin-top: -190px;
  }

  footer .footer-top .links-circle span {
    font-size: 10px;
    line-height: 16px;
  }
}