* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

#wrapper {
  min-height: 100vh;
  overflow-x: hidden;
  background-image: linear-gradient(
    -76deg,
    rgba(46, 94, 177, 0.9) 20%,
    rgba(2, 21, 56, 0.9) 40%,
    /* rgba(25, 55,109, 1) 30% */ rgba(4, 21, 45, 1) 40%
  );
}
#container-header {
  display: flex;
  min-height: 10vh;
  /* background-image: linear-gradient(rgb(39 89 177 / 70%) 20%,rgb(2 12 34 / 70%) 50%,black 30%); */
  /* background-image: linear-gradient(
    0.1turn,
    rgba(46, 94, 177, 0.8) 20%,
    rgba(2, 21, 61, 0.9) 50%,
    rgba(25, 55, 109, 1) 30%
  ); */
}
.header-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50vw;
  height: 10vh;
  cursor: pointer;
}
.portfolio-text {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 30px;
  color: white;
}
.header-2 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 50vw;
  cursor: pointer;
  height: 10vh;
}
.about-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: white;
}
.experience-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: white;
}
.contact-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: white;
}

#intro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  /* background-image: linear-gradient(
    0.1turn,
    rgba(46, 94, 177, 0.8) 20%,
    rgba(2, 21, 61, 0.9) 50%,
    rgba(25, 55, 109, 1) 30%
  ); */
}
.intro-image {
  display: flex;
  justify-content: center;
  min-width: 50vw;
  min-height: 210px;
  /* background-color: white;
  border: 2px solid yellow; */
}
.intro-desc {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 50vw;
  min-height: 200px;
}
/* .karan-pic {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
} */

.name-text {
  font-family: "Roboto", sans-serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: white;
}

.desc-text {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  margin-top: 15px;
  color: white;
  padding: 0px 15px 0px 0px;
}

.btn {
  margin-top: 15px;
  background-image: linear-gradient(to right, #2e5eb1 0%, #576cbc 100%);
  border-radius: 40px;
  border: 2px solid black;
  color: black;
  /* display: block; */
  font: 1.125rem "Roboto", sans-serif; /*18*/
  height: 80px;
  letter-spacing: 1px;
  /* margin: 0 auto;
	padding: 4px; */
  /* position: relative; */
  text-decoration: none;
  text-transform: uppercase;
  width: 210px;
  height: 73px;
  z-index: 2;
}

.btn:hover {
  color: #fff;
}

.btn span {
  align-items: center;
  background: #e7e8e9;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: background 0.5s ease;
  width: 100%;
}

.btn:hover span {
  background: transparent;
}

/* CSS Document */

/******* Common Element CSS Start ******/
* {
  margin: 0px;
  padding: 0px;
  outline: none;
}

.main-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 480px;
  overflow: hidden;
}
.main {
  margin: 0px 40px;
  width: 400px;
  height: 400px;
  position: relative;
}
.big-circle {
  height: 100%;
  width: 100%;
  position: relative;
  border: 3px solid #6495f2;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
  padding: 30px;
}
.icon-block {
  width: 64px;
  height: 64px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  box-shadow: 0 2px 4px 0 #3e5ada;
  -webkit-box-shadow: 0 2px 4px 0 #3e5ada;
}
.icon-block img {
  margin: 0px auto;
  width: 86%;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;
}
.icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}
.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* circle content */
.circle {
  animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 75%;
  height: 75%;
  border: 3px solid #6495f2;
  border-radius: 50%;
}
.circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}
/* center logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.center-logo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 60%;
  padding: 20px;
}

/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }
  to {
    -webkit-transform: rotate(-405deg);
  }
}

#about-section {
  min-height: 600px;
  /* background-image: linear-gradient(
    0.1turn,
    rgba(46, 94, 177, 0.8) 20%,
    rgba(2, 21, 61, 0.9) 50%,
    rgba(25, 55, 109, 1) 30%
  ); */
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-container {
  width: 80vw;
  height: 600px;
  background-color: rgba(12, 12, 12, 0.6);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-text-container {
  width: 80vw;
  height: 100px;
  display: flex;
  align-items: center;
}
.about-text-container-1 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.75px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: white;
  margin: 0px 0px 0px 16px;
}
.about-details {
  width: 80vw;
  height: 500px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.box1 {
  width: 400px;
  height: 400px;
  border-radius: 12px;
  /* background-color: red; */
  background-image: url("https://images.unsplash.com/photo-1618477388954-7852f32655ec?q=80&w=2864&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
.box1-details {
  visibility: hidden;
}
.box1:hover .box1-details {
  visibility: visible;
  width: 120px;
  background-color: black;
  /* margin-top: 25%; */
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  /* Position the tooltip */
  z-index: 1;
}
.box1:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  box-shadow: 30px 30px 30px 30px rgba(220, 222, 226, 0.6);
    transition: 0.2s;
    transform: translateY(-5px) scale(1.32, 1.32) translateZ(0);
}

.box2 {
  width: 400px;
  height: 400px;
  border-radius: 12px;
  background-image: url("https://img.freepik.com/free-vector/app-development-concept-with-programming-languages_23-2148688949.jpg?w=1060&t=st=1705990600~exp=1705991200~hmac=82c8b54172b03eb7856d73272b6c0d9aaeb2825196a848b49a6c3b94d194ce22");
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
.box2-details {
  visibility: hidden;
}
.box2:hover .box2-details {
  visibility: visible;
  width: 120px;
  background-color: black;
  /* margin-top: 25%; */
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  /* Position the tooltip */
  z-index: 1;
}
.box2:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  box-shadow: 30px 30px 30px 30px rgba(220, 222, 226, 0.6);
    transition: 0.2s;
    transform: translateY(-5px) scale(1.32, 1.32) translateZ(0);
}

#experience-section {
  min-height: 500px;
  /* background-image: linear-gradient(
    0.1turn,
    rgba(46, 94, 177, 0.8) 20%,
    rgba(2, 21, 61, 0.9) 50%,
    rgba(25, 55, 109, 1) 30%
  ); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.experience-container {
  min-width: 80vw;
  min-height: 500px;
  /* background-color: rgba(12, 12, 12, 0.60); */
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.experience-text-container {
  min-width: 80vw;
  min-height: 100px;
  display: flex;
  align-items: center;
}
.experience-text-container-1 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.75px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: white;
  margin: 0px 0px 0px 16px;
}
.experience-details {
  min-height: 400px;
  display: flex;
}
.exp-box1 {
  min-width: 40vw;
  min-height: 400px;
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.skills-row-1 {
  border-radius: 12px;
  min-width: 30vw;
  min-height: 150px;
  /* background-color: white; */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.skills-row-2 {
  border-radius: 12px;
  min-width: 30vw;
  min-height: 150px;
  /* background-color: white; */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#skill {
  width: 120px;
  height: 120px;
  background-color: #19376d;
  border-radius: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.skill-text {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.25px;
}

.exp-box2 {
  min-width: 40vw;
  min-height: 400px;
  /* background-color: orange; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.company1 {
  border-radius: 12px;
  min-width: 30vw;
  min-height: 120px;
  /* background-color: white; */
  background-image: linear-gradient(
    55deg,
    rgba(46, 94, 177, 0.9) 10%,
    rgba(2, 21, 56, 0.9) 40%,
    /* rgba(25, 55,109, 1) 30% */ rgba(4, 21, 45, 1) 40%
  );
  display: flex;
}
.company1:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  box-shadow: 20px 20px 20px 20px rgba(220, 222, 226, 0.4);
  transition: 0.2s;
  transform: translateY(-5px) scale(1.8, 1.8) translateZ(0);
}
.company2 {
  border-radius: 12px;
  min-width: 30vw;
  min-height: 120px;
  /* background-color: white; */
  background-image: linear-gradient(
    55deg,
    rgba(46, 94, 177, 0.9) 10%,
    rgba(2, 21, 56, 0.9) 40%,
    /* rgba(25, 55,109, 1) 30% */ rgba(4, 21, 45, 1) 40%
  );
  display: flex;
}
.company2:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  box-shadow: 20px 20px 20px 20px rgba(220, 222, 226, 0.4);
  transition: 0.2s;
  transform: translateY(-5px) scale(1.8, 1.8) translateZ(0);
}

.company2-logo,
.company1-logo {
  min-width: 8vw;
  min-height: 100px;
  /* background-color: pink; */
  border-radius: 12px 0px 0px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company2-details,
.company1-details {
  min-width: 22vw;
  min-height: 100px;
  /* background-color: aqua; */
  border-radius: 0px 12px 12px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.company-title-text {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
}

#contact-section {
  min-height: 250px;
  background-color: rgba(25, 55, 109, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-container {
  min-width: 80vw;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-box-1 {
  min-width: 40vw;
  min-height: 250px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.cntct {
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: white;
}
.frcht {
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: white;
}

.contact-box-2 {
  min-width: 40vw;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.contact-box-2-text-1 {
  min-width: 30vw;
  min-height: 80px;
  /* background-color: white; */
  display: flex;
  justify-content: start;
  align-items: center;
}

.contact-box-2-text-2 {
  min-width: 30vw;
  min-height: 80px;
  /* background-color: white; */
  display: flex;
  justify-content: start;
  align-items: center;
}
.linkedin-name,
.github-name,
.email-text {
  color: white;
  margin-left: 0.5rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.5px;
  font-family: "Roboto", sans-serif;
}
.contact-box-2-text-3 {
  min-width: 30vw;
  min-height: 80px;
  /* background-color: white; */
  display: flex;
  justify-content: start;
  align-items: center;
}

/* SMALL LAPTOPS & TABLETS BREAKPOINTS */
/* @media only screen and (min-width:600px) and (max-width: 900px){
  .big-circle {
    height: 100%;
    width: 97%;
    position: relative;
    border: 3px solid #6495f2;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    animation: Rotate 20s linear infinite;
    -webkit-animation: Rotate 20s linear infinite;
    padding: 30px;
  }
  .circle {
    animation: circle-rotate 20s linear infinite;
    -webkit-animation: circle-rotate 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    width: 75%;
    height: 72%;
    border: 3px solid #6495f2;
    border-radius: 50%;
    padding: 0px 40px;
  }
  .icon-block {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
    -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
    box-shadow: 0 2px 4px 0 #3e5ada;
    -webkit-box-shadow: 0 2px 4px 0 #3e5ada;
  }
} */

/* MOBILE DEVICES BREAK POINT */
@media only screen and (max-width: 800px) {
  #container-header {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    /* background-image: linear-gradient(
      0.1turn,
      rgba(46, 94, 177, 0.8) 20%,
      rgba(2, 21, 61, 0.9) 50%,
      rgba(25, 55, 109, 1) 30%
    ); */
  }
  .header-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
  }
  .portfolio-text {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 30px;
    color: white;
  }
  .header-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 150px;
  }
  .about-text {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: white;
  }
  .experience-text {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: white;
  }
  .contact-text {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: white;
  }
  #intro-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    /* background-image: linear-gradient(
      0.1turn,
      rgba(46, 94, 177, 0.8) 20%,
      rgba(2, 21, 61, 0.9) 50%,
      rgba(25, 55, 109, 1) 30%
    ); */
  }
  .intro-image {
    display: flex;
    justify-content: center;
    min-width: 100%;
    min-height: 210px;
    /* background-color: white;
    border: 2px solid yellow; */
  }
  .big-circle {
    height: 100%;
    width: 97%;
    position: relative;
    border: 3px solid #6495f2;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    animation: Rotate 20s linear infinite;
    -webkit-animation: Rotate 20s linear infinite;
    padding: 30px;
  }
  .circle {
    animation: circle-rotate 20s linear infinite;
    -webkit-animation: circle-rotate 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    width: 75%;
    height: 72%;
    border: 3px solid #6495f2;
    border-radius: 50%;
    padding: 0px 40px;
  }
  .icon-block {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
    -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
    box-shadow: 0 2px 4px 0 #3e5ada;
    -webkit-box-shadow: 0 2px 4px 0 #3e5ada;
  }
  .intro-desc {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 200px;
  }
  .name-text {
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    color: white;
  }
  .desc-text {
    font-family: "Roboto", sans-serif;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 300;
    margin-top: 15px;
    color: white;
    padding: 0px 15px;
  }
  #about-section {
    min-height: 900px;
    background-image: linear-gradient(
      0.1turn,
      rgba(46, 94, 177, 0.8) 20%,
      rgba(2, 21, 61, 0.9) 50%,
      rgba(25, 55, 109, 1) 30%
    );
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .about-container {
    width: 100%;
    height: 900px;
    background-color: rgba(12, 12, 12, 0.6);
    /* border-radius: 12px; */
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
  }
  .about-text-container {
    width: 80vw;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .about-details {
    width: 80vw;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  .box1 {
    width: 350px;
    height: 350px;
    border-radius: 12px;
    background-color: red;
  }
  .box1:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    box-shadow: 30px 30px 30px 30px rgba(220, 222, 226, 0.6);
    transition: 0.2s;
    transform: translateY(-5px) scale(1.1, 1.1) translateZ(0);
  }
  

  .box2 {
    width: 350px;
    height: 350px;
    background-color: red;
    border-radius: 12px;
  }
  .box2:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    box-shadow: 30px 30px 30px 30px rgba(220, 222, 226, 0.6);
    transition: 0.2s;
    transform: translateY(-5px) scale(1.1, 1.1) translateZ(0);
  }
  #experience-section {
    min-height: 800px;
    /* background-image: linear-gradient(
      0.1turn,
      rgba(46, 94, 177, 0.8) 20%,
      rgba(2, 21, 61, 0.9) 50%,
      rgba(25, 55, 109, 1) 30%
    ); */
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .experience-container {
    width: 100%;
    min-height: 800px;

    display: flex;
    flex-direction: column;
  }
  .experience-text-container {
    min-width: 80vw;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .experience-details {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  .exp-box1 {
    min-width: 100%;
    min-height: 400px;
    /* background-color: red; */
  }
  .skills-row-1 {
    border-radius: 12px;
    min-width: 90%;
    min-height: 150px;
    /* background-color: white; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  .skills-row-2 {
    border-radius: 12px;
    min-width: 90%;
    min-height: 150px;
    /* background-color: white; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  #skill {
    width: 120px;
    height: 120px;
    background-color: #19376d;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .exp-box2 {
    min-width: 100%;
    min-height: 400px;
    /* background-color: orange; */
  }
  .company1 {
    border-radius: 12px;
    min-width: 90%;
    min-height: 150px;
    /* background-color: white; */
    background-image: linear-gradient(
      55deg,
      rgba(46, 94, 177, 0.9) 10%,
      rgba(2, 21, 56, 0.9) 40%,
      /* rgba(25, 55,109, 1) 30% */ rgba(4, 21, 45, 1) 40%
    );
    display: flex;
  }
  .company1:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    box-shadow: 30px 30px 30px 30px rgba(220, 222, 226, 0.6);
    transition: 0.2s;
    transform: translateY(-5px) scale(1.1, 1.1) translateZ(0);
  }
  .company2 {
    border-radius: 12px;
    min-width: 90%;
    min-height: 150px;
    /* background-color: white; */
    background-image: linear-gradient(
      55deg,
      rgba(46, 94, 177, 0.9) 10%,
      rgba(2, 21, 56, 0.9) 40%,
      /* rgba(25, 55,109, 1) 30% */ rgba(4, 21, 45, 1) 40%
    );
    display: flex;
  }
  .company2:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    box-shadow: 30px 30px 30px 30px rgba(220, 222, 226, 0.6);
    transition: 0.2s;
    transform: translateY(-5px) scale(1.1, 1.1) translateZ(0);
  }
  #contact-section {
    min-height: 250px;
    background-color: rgba(25, 55, 109, 1);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-container {
    min-width: 80vw;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-box-1 {
    width: 100%;
    min-height: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-box-2 {
    width: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
