/* Created By Ashraful Alam */

/*  import google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* all similar content styling codes */
section {
  padding: 100px 0;
}
.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}
.about,
.skills,
.experiences,
.achievements,
.contact,
footer {
  font-family: "Poppins", sans-serif;
}
.about .about-content,
.skills .skill-content,
.experiences .experiences-content,
.education .education-content,
.contact .contact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}
section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #b700ff;
  transform: translateX(-50%);
}
section .title::after {
  position: absolute;
  bottom: -50px;
  left: 50%;
  font-size: 26px;
  color: #ff0000;
  padding: 0 10px;
  background: #fff;
  transform: translateX(-50%);
}

/* navbar styling */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  z-index: 999;
  padding: 20px 40px;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar.hide {
  transform: translateX(-50%) translateY(-120px);
  opacity: 0;
}

.navbar.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.navbar .logo a {
  color: #111;
  font-size: 30px;
  font-weight: 600;
}
.navbar .logo a span {
  color: crimson;
  transition: all 0.3s ease;
}
.navbar .menu li {
  list-style: none;
  display: inline-block;
}
.navbar .menu li a {
  display: block;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.3s ease;
}
.navbar .menu li a:hover {
  color: crimson;
}

/* menu btn styling */
.menu-btn {
  color: #111;
  font-size: 23px;
  cursor: pointer;
  display: none;
}
.scroll-up-btn {
  position: fixed;
  height: 45px;
  width: 42px;
  background: crimson;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 9999;
  font-size: 30px;
  border-radius: 6px;
  border-bottom-width: 2px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.scroll-up-btn.show {
  bottom: 30px;
  opacity: 1;
  pointer-events: auto;
}
.scroll-up-btn:hover {
  filter: brightness(90%);
}

/* home section styling */
.home {
  display: flex;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
  height: 100vh;
  color: #ffffff;
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Ubuntu", sans-serif;
  margin-top: 0;
  border-radius: 0;
  position: relative;
  align-items: center;
  justify-content: center;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.home .max-width {
  width: 100%;
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.home .max-width .row {
  margin-right: 0;
}
.home .home-content {
  flex: 1;
}
.home .home-content .text-1 {
  font-size: 27px;
  color: rgba(255, 255, 255, 0.9);
}
.home .home-content .text-2 {
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.home .home-content .text-3 {
  font-size: 40px;
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.95);
}
.home .home-content .text-3 span {
  color: #ff6b9d;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.home .home-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .home-image img {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  animation: float 3s ease-in-out infinite;
}

.home .home-image img:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.home .home-content a {
  display: inline-block;
  position: relative;
  background: #6366f1;
  color: #ffffff;
  font-size: 25px;
  padding: 14px 40px;
  margin-top: 20px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home .home-content a:hover {
  color: #6366f1;
  background: #ffffff;
  border: 2px solid #6366f1;
  transform: translate(-2px, -5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

/* about section styling */

.about {
  background: #cefaf8;
  color: #000000;
}

.about .title {
  font-size: 3em;
}

.about .title::after {
  content: "Who I Am";
  background: transparent;
}
.about .about-content .left {
  width: 45%;
}
.about .about-content .left img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 6px;
}
.about .about-content .right {
  width: 55%;
}
.about .about-content .right .text {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.about .about-content .right .text span {
  color: crimson;
}
.about .about-content .right p {
  text-align: justify;
}
.about .about-content .right a {
  display: inline-block;
  position: relative;
  background: #10b981;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 40px;
  margin-top: 20px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  will-change: transform;
}
.about .about-content .right a:hover {
  color: #10b981;
  background: #ffffff;
  border: 2px solid #10b981;
  transform: translate(-2px, -5px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

/* skills section styling */
.skills,
.achievements {
  color: #000000;
  background: #ffffff;
}
.skills .title::before,
.achievements .title::before {
  background: #000000;
}
.skills .title::after {
  background: transparent;
  content: "What I Learned";
  margin-bottom: -30px;
}

.skills .skill-content .card {
  width: calc(33% - 20px);
  background: #222;
  text-align: center;
  border-radius: 6px;
  padding: 50px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.skills .skill-content .card:hover {
  background: crimson;
}
.skills .skill-content .card .box {
  transition: all 0.3s ease;
}
.skills .skill-content .card:hover .box {
  transform: scale(1.05);
}
.skills .skill-content .card i {
  font-size: 50px;
  color: crimson;
  transition: color 0.3s ease;
}
.skills .skill-content .card:hover i {
  color: #fff;
}
.skills .skill-content .card .text {
  font-size: 25px;
  font-weight: 500;
  margin: 10px 0 7px 0;
}

.skills .subtitle {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}

.skills .skills-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.skills .skill-logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.skills .skill-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.skills .skill-logo:hover {
  transform: scale(1.1);
}

/* General styles for the experiences section */
.experiences {
  padding: 40px 0;
  background-color: #e8bf88;
}
.experiences .title::after {
  content: "Where I Worked";
  background: transparent;
  margin-bottom: -30px;
}

.experiences .max-width {
  width: 100%;
  margin: 0 auto;
}

.experiences .title {
  text-align: center;
  font-size: 2.9em;
  margin-bottom: 30px;
}

.experiences-content {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.experience {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  width: 100%; /* Full width */
  background-color: #ffffff;
  padding: 20px;
}

.experience .logo {
  flex: 1;
  padding: 20px;
}

.experience .logo img {
  width: 100%;
  max-width: 250px; /* Adjust the logo size */
  height: auto;
  border-radius: 8px;
}

.experience .description {
  flex: 2;
  padding: 20px;
}

.experience .description h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.experience .description p {
  font-size: 1em;
  line-height: 1.6;
  color: #000000;
}

.experience .description h4 {
  font-size: 1.1em;
  margin: 5px 0;
  color: #000000;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .experiences-content {
    flex-direction: column;
    align-items: center;
  }

  .experience {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    flex-direction: column;
  }

  .experience .logo {
    padding: 15px 0;
  }

  .experience .logo img {
    max-width: 250px;
    margin-bottom: 15px;
  }

  .experience .description {
    padding: 15px 0;
  }

  .experience .description h3 {
    font-size: 1.5em;
  }

  .experience .description p {
    font-size: 1em;
  }
}

/* Further responsiveness for smaller devices */
@media (max-width: 480px) {
  .experiences-content {
    padding: 10px;
  }

  .experience .logo img {
    max-width: 250px;
  }

  .experience .description h3 {
    font-size: 1.3em;
  }

  .experience .description p {
    font-size: 0.9em;
  }
}

/* General styles for the achievements section */

.achievements {
  padding: 40px 0;
  background-color: #cc98f4;
}

.achievements .max-width {
  width: 100%;
  margin: 0 auto;
}

.achievements .title {
  text-align: center;
  font-size: 2.9em;
  margin-bottom: 30px;
  color: #000000;
}

.achievements-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #ffffff;
}

.achievement {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  width: 100%; /* Full width */
  background-color: #ffffff;
  padding: 20px;
}

.achievement .certificate {
  flex: 1;
  padding: 20px;
}

.achievement .certificate img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.achievement .description {
  flex: 2;
  padding: 20px;
}

.achievement .description h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.achievement .description p {
  font-size: 1em;
  line-height: 1.6;
  color: #000000;
}

.achievement .description h4 {
  font-size: 1.1em;
  margin: 5px 0;
  color: #000000;
}

/* Download Certificate button styling */

.download-certificate-btn {
  background: #f59e0b;
  color: #ffffff;
  padding: 14px 40px;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
  position: relative;
  text-decoration: none; /* Remove underline from the link */
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  will-change: transform;
}

.download-certificate-btn:hover {
  background: #ffffff;
  color: #f59e0b;
  border: 2px solid #f59e0b;
  transform: translate(-2px, -5px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .achievements-content {
    flex-direction: column;
    align-items: center;
  }

  .achievement {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    flex-direction: column;
  }

  .achievement .certificate {
    padding: 15px 0;
  }

  .achievement .certificate img {
    max-width: 250px;
    margin-bottom: 15px;
  }

  .achievement .description {
    padding: 15px 0;
  }

  .achievement .description h3 {
    font-size: 1.5em;
  }

  .achievement .description p {
    font-size: 1em;
  }
}

/* Further responsiveness for smaller devices */
@media (max-width: 480px) {
  .achievements-content {
    padding: 10px;
  }

  .achievement .certificate img {
    max-width: 250px;
  }

  .achievement .description h3 {
    font-size: 1.3em;
  }

  .achievement .description p {
    font-size: 0.9em;
  }
}

/* General styles for the education section */

.education {
  padding: 40px 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}
.education .title::after {
  content: "Where I Studied";
  background: transparent;
  margin-bottom: -30px;
}

.education .max-width {
  width: 100%;
  margin: 0 auto;
}

.education .title {
  text-align: center;
  font-size: 2.9em;
  margin-bottom: 30px;
}

.education-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.education-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  width: 100%; /* Full width */
  background-color: #ffffff;
  padding: 20px;
}

.education-item .logo {
  flex: 1;
  padding: 20px;
}

.education-item .logo img {
  width: 100%;
  max-width: 250px; /* Adjust the logo size */
  height: auto;
  border-radius: 8px;
}

.education-item .description {
  flex: 2;
  padding: 20px;
}

.education-item .description h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.education-item .description p {
  font-size: 1em;
  line-height: 1.6;
  color: #000000;
}

.education-item .description h4 {
  font-size: 1.1em;
  margin: 5px 0;
  color: #000000;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .education-content {
    flex-direction: column;
    align-items: center;
  }

  .education-item {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    flex-direction: column;
  }

  .education-item .logo {
    padding: 15px 0;
  }

  .education-item .logo img {
    max-width: 250px;
    margin-bottom: 15px;
  }

  .education-item .description {
    padding: 15px 0;
  }

  .education-item .description h3 {
    font-size: 1.5em;
  }

  .education-item .description p {
    font-size: 1em;
  }
}

/* Further responsiveness for smaller devices */
@media (max-width: 480px) {
  .education-content {
    padding: 10px;
  }

  .education-item .logo img {
    max-width: 250px;
  }

  .education-item .description h3 {
    font-size: 1.3em;
  }

  .education-item .description p {
    font-size: 0.9em;
  }
}

/* General styles for the volunteering section */
.volunteering {
  padding: 40px 0;
  background-color: #f46ccd;
  font-family: "Poppins", sans-serif;
}

.volunteering .title::before {
  background: #000000;
}

.volunteering .max-width {
  width: 100%;
  margin: 0 auto;
}

.volunteering .title {
  text-align: center;
  font-size: 2.9em;
  margin-bottom: 30px;
}

.volunteering-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.volunteer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  width: 100%; /* Full width */
  background-color: #ffffff;
  padding: 20px;
}

.volunteer .logo {
  flex: 1;
  padding: 20px;
}

.volunteer .logo img {
  width: 100%;
  max-width: 250px; /* Adjust the logo size */
  height: auto;
  border-radius: 8px;
}

.volunteer .description {
  flex: 2;
  padding: 20px;
}

.volunteer .description h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.volunteer .description p {
  font-size: 1em;
  line-height: 1.6;
  color: #000000;
}

.volunteer .description h4 {
  font-size: 1.1em;
  margin: 5px 0;
  color: #000000;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .volunteering-content {
    flex-direction: column;
    align-items: center;
  }

  .volunteer {
    width: 100%;
    margin: 10px 0;
    padding: 15px;
    flex-direction: column;
  }

  .volunteer .logo {
    padding: 15px 0;
  }

  .volunteer .logo img {
    max-width: 250px;
    margin-bottom: 15px;
  }

  .volunteer .description {
    padding: 15px 0;
  }

  .volunteer .description h3 {
    font-size: 1.5em;
  }

  .volunteer .description p {
    font-size: 1em;
  }
}

/* Further responsiveness for smaller devices */
@media (max-width: 480px) {
  .volunteering-content {
    padding: 10px;
  }
  .volunteer .logo img {
    max-width: 250px;
  }

  .volunteer .description h3 {
    font-size: 1.3em;
  }

  .volunteer .description p {
    font-size: 0.9em;
  }
}

/* contact section styling */

.contact {
  padding: 50px 0;
  background: #ffffff;
}

.contact .title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}

.contact .social-icons a {
  margin: 10px;
}

.contact .social-icons a img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.contact .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  color: red;
}

.contact .icons {
  margin: 20px 0;
}

.contact .icons .row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact .icons .row i {
  font-size: 25px;
  color: crimson;
  margin-right: 10px;
}

.contact .icons .info .head {
  font-weight: 500;
}

.contact .icons .info .sub-title {
  color: #333;
}

.message-me {
  margin-top: 20px;
  text-align: center;
}

.message-me h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact .social-icons a img {
    width: 50px;
    height: 50px;
  }

  .contact .icons .row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact .icons .row i {
    margin-bottom: 10px;
  }

  .contact .text {
    font-size: 18px;
  }

  .message-me h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .contact .social-icons {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .contact .social-icons a {
    margin: 10px; /* Add margin to space out the icons */
  }

  .contact .social-icons a img {
    width: 40px;
    height: 40px;
  }

  .contact .text {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .contact .icons .row {
    flex-direction: column;
    align-items: center; /* Center align the rows */
    margin-bottom: 20px; /* Add margin to space out the rows */
  }

  .contact .icons .row i {
    margin-bottom: 10px;
  }

  .contact .icons .info {
    text-align: center; /* Center align the text */
  }

  .message-me h3 {
    font-size: 18px;
  }
}

.contact .contact-content .column {
  width: calc(50% - 30px);
}
.contact .contact-content .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact .contact-content .left p {
  text-align: justify;
}
.contact .contact-content .left .icons {
  margin: 10px 0;
}
.contact .contact-content .row {
  display: flex;
  height: 65px;
  align-items: center;
}
.contact .contact-content .row .info {
  margin-left: 30px;
}
.contact .contact-content .row i {
  font-size: 25px;
  color: crimson;
}
.contact .contact-content .info .head {
  font-weight: 500;
}
.contact .contact-content .info .sub-title {
  color: #333;
}
.contact .right form .fields {
  display: flex;
}
.contact .right form .field,
.contact .right form .fields .field {
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
}
.contact .right form .textarea {
  height: 80px;
  width: 100%;
}
.contact .right form .name {
  margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea {
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 6px;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
  border-color: #b3b3b3;
}
.contact .right form .textarea textarea {
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area {
  display: flex;
  align-items: center;
}
.right form .button-area button {
  color: #ffffff;
  display: inline-block;
  position: relative;
  width: 200px !important;
  height: 50px;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: #ec4899;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(236, 72, 153, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  will-change: transform;
}
.right form .button-area button:hover {
  color: #ec4899;
  background: #ffffff;
  border: 2px solid #ec4899;
  transform: translate(-2px, -5px);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5);
}
/* footer section styling */
footer {
  background: #111;
  padding: 15px 23px;
  color: #fff;
  text-align: center;
}
footer span a {
  color: crimson;
  text-decoration: none;
}
footer span a:hover {
  text-decoration: underline;
}

/* responsive media query start */
@media (max-width: 1104px) {
  .about .about-content .left img {
    height: 350px;
    width: 350px;
  }
  .navbar {
    width: calc(100% - 60px);
    padding: 18px 35px;
  }
  .navbar.sticky {
    padding: 12px 35px;
  }
}

@media (max-width: 991px) {
  .max-width {
    padding: 0 50px;
  }
  .navbar {
    width: calc(100% - 40px);
    padding: 15px 25px;
  }
  .navbar.sticky {
    padding: 12px 25px;
  }
}
@media (max-width: 947px) {
  .navbar {
    width: calc(100% - 30px);
    padding: 15px 20px;
    border-radius: 30px;
  }
  .navbar.sticky {
    padding: 12px 20px;
  }
  .home .max-width {
    flex-direction: column-reverse;
    padding-top: 100px;
  }
  .home .home-content {
    text-align: center;
  }
  .home .home-image {
    margin-bottom: 40px;
  }
  .home .home-image img {
    width: 300px;
    height: 300px;
  }
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active:before {
    content: "\f00d";
  }
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
    border-radius: 0;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
    color: #fff;
  }
  .home .home-content .text-2 {
    font-size: 70px;
  }
  .home .home-content .text-3 {
    font-size: 35px;
  }
  .home .home-content a {
    font-size: 23px;
    padding: 10px 30px;
  }
  .max-width {
    max-width: 930px;
  }
  .about .about-content .column {
    width: 100%;
  }
  .about .about-content .left {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  .about .about-content .right {
    flex: 100%;
  }
  .skills .skill-content .card {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .experiences .experiences-content .column,
  .contact .contact-content .column {
    width: 100%;
    margin-bottom: 35px;
  }
}

@media (max-width: 690px) {
  .max-width {
    padding: 0 23px;
  }
  .home .home-content .text-2 {
    font-size: 60px;
  }
  .home .home-content .text-3 {
    font-size: 32px;
  }
  .home .home-content a {
    font-size: 20px;
  }
  .home .home-image img {
    width: 280px;
    height: 280px;
  }
  .skills .skill-content .card {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .home .home-content .text-2 {
    font-size: 50px;
  }
  .home .home-content .text-3 {
    font-size: 27px;
  }
  .home .home-image img {
    width: 250px;
    height: 250px;
  }
  .about .about-content .right .text,
  .experiences .experiences-content .left .text {
    font-size: 19px;
  }
  .contact .right form .fields {
    flex-direction: column;
  }
  .contact .right form .name,
  .contact .right form .email {
    margin: 0;
  }
  .right form .error-box {
    width: 150px;
  }
  .scroll-up-btn {
    right: 15px;
    bottom: 15px;
    height: 38px;
    width: 35px;
    font-size: 23px;
    line-height: 38px;
  }
}
