@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: #f7f7f7;
  font-family: "Poppins", sans-serif;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3);
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: rgb(115, 3, 167);
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0e2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  font-size: 1.57rem;
  color: #0e2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #011aff;
  border-bottom: 0.2rem solid #011aff;
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #011aff;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */

/* hero section starts
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
.home .image {
  flex: 1 1 40rem;
  z-index: 1;
}
.home .image img {
  width: 70%;
  margin-left: 6rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.home .image img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content h2 {
  font-size: 5rem;
  font-weight: 800;
  color: #002057;
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 800;
  color: #ff7b00;
}
.home .content p {
  font-size: 2.5rem;
  color: #000;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.5rem;
  color: rgb(148, 8, 8);
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 18px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  background: #1a047e;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
/* .socials {
  position: relative;
  margin-top: 9rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
/* @media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }
  .socials {
    margin-top: 12rem;
  }
  .home .image img {
    margin-top: -12rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
} */ 
/* hero media queries ends*/
/* hero section end */ 

/* about section starts */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.about .row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem;
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem;
}
.about .row .image img {
  margin: 4rem;
  width: 30rem;
  height: auto;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  /* mix-blend-mode: luminosity; */
  transition: 0.3s;
  cursor: pointer;
}

.about .row .content {
  flex: 1 1 45rem;
  padding: 3rem;
}
.about .row .content h3 {
  color: rgb(27, 27, 27);
  font-size: 2.5rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content p {
  font-size: 1.8rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: #011aff;
}
.resumebtn {
  margin-top: 6rem;
}
.resumebtn .btn {
  padding: 1.7rem 3rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #1a047e;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
.about .row .image .name {
  font-size: 3rem; /* Adjust the font size as needed */
  color: #333; /* Text color */
  margin-top: 1rem; /* Space between the image and the name */
  text-align: center;
  font-weight: 600; /* Make the text bold */
  font-family: "Nunito", sans-serif;
}
/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }
  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
  .about .row .image .name {
    font-size: 1.6rem; /* Slightly smaller font for mobile */
  }
}
.socials {
  margin-top: 1rem;
  text-align: center;
}

.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons li a {
  font-size: 1.8rem;
  color: #ffffff; /* Icon color */
  background-color: #2506ad; /* Blue background */
  padding: 0.8rem; /* Adjust padding for circular shape */
  border-radius: 50%; /* Circular shape */
  transition: background-color 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons li a:hover {
  background-color: #1a047e; /* Darker shade on hover */
  color: #ffffff; /* Keep icon color white */
}
/* about media queries ends*/
/* about section ends */

/* skills section starts */
.skills {
  min-height: 30vh;
  background: #fff; /* Changed background to plain white */
  /* background: linear-gradient(to bottom, #57059e, #4a00e0); */
}
.skills h2 {
  /* color: #fff; */
  color: #333; /* Adjusted to a darker color for better readability on white */

}
.skills .heading span {
  color: rgb(255, 230, 0);
}
/* .skills .container {
  background: rgba(0, 0, 22, 0.4);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
} */
.skills .container {
  background: none; /* Removed background styling */
  color: #333; /* Adjusted text color */
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
}
.skills .container .row {
  display: flex; /* Changed from grid to flexbox for single line layout */
  flex-wrap: wrap; /* Allow wrapping if needed */
  justify-content: space-around; /* Spread the icons evenly */
  gap: 1.5rem;
}
.skills .container .bar {
  background: #f9f9f9; /* Light background for each skill box */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  padding: 1rem; /* Padding around each skill */
  border-radius: 8px; /* Rounded corners */
  transition: 0.3s; /* Smooth transition for hover effects */
  width: 100px; /* Set a fixed width to standardize box size */
  text-align: center;
}
.skills .container .bar:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
  transform: translateY(-5px); /* Slight lift on hover */
}
.skills .container .bar .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.skills .container .bar .info img {
  width: 38px; /* Slightly larger icon size */
  height: 38px;
  object-fit: contain;
}
.skills .container .bar .info span {
  font-size: 1.6rem; /* Increased font size */
  font-weight: 500;
  margin-top: 0.5rem;
  color: #333; /* Text color inside skill boxes */
}
.skills .container .bar .info i {
  font-size: 4rem;
}
/* .skills .container .bar .info span {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Poppins";
  margin-left: 0.5rem;
} */
/* skills media queries starts */
@media screen and (max-width: 600px) {
  .skills .container .row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .skills .container .bar {
    width: 100px; /* Reduced size for smaller screens */
  }
}
/* skills media queries ends*/
/* skills section ends */

/* Publications Section */
.publications {
  background: #f7f7f7;
  padding: 4rem 2rem;
  font-family: "Nunito", sans-serif; /* Consistent font with other sections */
  min-height: 45vh;

}

.publications .heading {
  text-align: center;
  font-size: 3.8rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: bold;
}

/* Publication list styling */
.publications .publication-list {
  max-width: 800px; /* Control width for better readability */
  margin: 0 auto;
}

.publications .publication-item {
  margin-bottom: 2.5rem;
}

.publications .year {
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.publications .publication-details .title {
  font-size: 2rem;
  color: #0073e6;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.publications .publication-details .title:hover {
  text-decoration: underline;
}

.publications .publication-details .authors {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.publications .publication-details .conference {
  font-size: 1.5rem;
  color: #555;
  font-style: italic;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
  .publications .heading {
    font-size: 3rem;
  }

  .publications .year {
    font-size: 2rem;
  }

  .publications .publication-details .title {
    font-size: 1.8rem;
  }

  .publications .publication-details .authors,
  .publications .publication-details .conference {
    font-size: 1.4rem;
  }
}


/* education section starts */
.education {
  background: #ffffff;
  min-height: 35vh;
}

.education .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.education .box-container .box {
  display: flex;
  flex-direction: row;
  width: 80%;
  border-radius: 0.5rem;
  box-shadow: 0.2rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  transition: 0.3s;
  background: rgb(252, 252, 252);
}
.education .box-container .box:hover {
  transform: scale(1.03);
  box-shadow: 1rem 0.5rem 1.2rem rgba(0, 0, 0, 0.3);
}
.education .box-container .box .image {
  flex: 1 1 10rem;
  width: 100%;
  display: flex; /* Add this line to use flex properties */
  align-items: center; /* Center image vertically */
  justify-content: center; /* Center image horizontally */
}

.education .box-container .box img {
  object-fit: contain;
  max-width: 100%; /* Ensure the image does not overflow */
  max-height: 10rem; /* Adjust this value as needed */
  width: auto; /* Maintain aspect ratio */
  height: auto; /* Maintain aspect ratio */
}
.education .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  flex: 1 1 70rem;
}
.education .box-container .box .content h3 {
  font-size: 2.1rem;
  color: #012970;
  padding: 0.5rem 0;
  font-weight: 600;
  text-align: left;
  margin-left: 1rem;
}
.education .box-container .box .content p {
  font-size: 1.5rem;
  margin-left: 1rem;
  text-align: left;
}
.education h4 {
  font-size: 1.5rem;
  color: rgb(70, 70, 69);
  text-align: left;
  margin: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 550;
}

/* education media queries starts*/
@media screen and (max-width: 600px) {
  .education .box-container .box {
    flex-direction: column;
    width: 100%;
  }
  .education .box-container .box .image {
    width: 100%;
    height: 25rem;
  }
  .education .box-container .box img {
    width: 100%;
  }
  .education .box-container .box .content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-wrap: wrap;
    flex: 0;
  }
  .education .btns {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-wrap: wrap;
  }
}
/* education media queries ends*/
/* education section ends */

/* work section starts */
.work {
  background: #f4f4f4;
  padding: 2rem 1rem;
}

.work h2 {
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
}

.work .heading span {
  color: #007bff;
}

.work .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem; /* Increased gap between boxes */
  justify-content: center;
  padding: 1rem 2rem;
}

.work .box {
  flex: 1 1 calc(30% - 2rem); /* Ensures three boxes per row */
  max-width: 400px; /* More practical box size */
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.5s ease;
  margin-bottom: 2rem;
}

.work .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.work .box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9; /* Ensures image fits without stretching */
}

.work .box .content {
  padding: 1rem;
}

.work .box .content h3 {
  font-size: 1.8rem;
  color: #333;
  margin: 0.5rem 0;
}

.work .box .content p {
  font-size: 1.3rem;
  color: #666;
  margin: 0.5rem 0;
}

.work .box .content .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  font-size: 1rem;
  color: #fff;
  background: #333;
  text-decoration: none;
}

.work .box .content .btn:hover {
  background: #007bff;
}

.work .viewall {
  text-align: center;
  margin-top: 2rem;
}

.work .viewall .btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  color: #fff;
  background: #007bff;
  text-decoration: none;
  font-size: 1.2rem;
}

.work .viewall .btn:hover {
  background: #0056b3;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
  .work .box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* work section ends */
/* Main container styles */
/* Main container styles */
/* Main container styles */
/* Main container styles */
/* Main container styles */
.experience {
  background: #f7f7f7;
  padding: 4rem 2rem;
  font-family: "Nunito", sans-serif; /* Applying Nunito font */
}

.experience .heading {
  text-align: center;
  font-size: 3.8rem; /* Increased heading size */
  margin-bottom: 3rem;
  color: #333;
  font-weight: bold;
}

/* Experience list container */
.experience .experience-list {
  max-width: 1200px; /* Increased max-width for a wider layout */
  margin: 0 auto;
}

/* Individual experience item */
.experience .experience-item {
  display: flex;
  align-items: flex-start;
  padding: 2.5rem 0; /* Increased padding for spacing */
  border-bottom: 1px solid #ddd;
  position: relative;
}

.experience .experience-item:last-child {
  border-bottom: none;
}

/* Logo styling */
.experience .company-logo {
  width: 100px; /* Larger logo size */
  height: auto;
  margin-right: 2.5rem;
}

/* Experience details */
.experience .experience-details {
  flex-grow: 1;
  position: relative;
  font-family: "Nunito", sans-serif; /* Ensure Nunito is applied here as well */
}

.experience .role-title {
  font-size: 2.2rem; /* Larger font size for role title */
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.experience .company-name {
  font-size: 1.6rem; /* Larger font for company name */
  color: #555;
  margin-bottom: 1rem;
}

.experience .duration {
  font-size: 1.4rem; /* Larger font for duration */
  color: #777;
  position: absolute;
  right: 0; /* Align to the right */
  top: 0;
}

/* Description list styling */
.experience .desc-list {
  font-size: 1.6rem; /* Increased font size for descriptions */
  line-height: 1.8; /* Slightly increased line-height for readability */
  color: #1b1a1a;
  padding-left: 1.5rem;
  font-weight: 600; /* Consistent weight with About section */
}

.experience .desc-list li {
  margin-bottom: 0.8rem;
}

/* Link styling */
.experience .experience-details a {
  color: #0073e6;
  text-decoration: none;
  font-weight: 600; /* Match font weight with About */
}

.experience .experience-details a:hover {
  text-decoration: underline;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
  .experience .experience-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience .company-logo {
    width: 80px; /* Adjusted for smaller screens */
    margin-bottom: 0.5rem;
  }

  .experience .heading {
    font-size: 3rem; /* Smaller heading for mobile */
  }

  .experience .role-title {
    font-size: 2rem;
  }

  .experience .company-name {
    font-size: 1.4rem;
  }

  .experience .duration {
    font-size: 1.2rem;
    position: static; /* Move duration below title on mobile */
    margin-top: 0.5rem;
  }

  .experience .desc-list {
    font-size: 1.3rem;
  }
}



.blog-section {
  background-color: #f9f9f9;
  padding: 4rem 0;
  /* height: 50px; */
  min-height: 55vh;

}

.blog-section .heading {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.blog-section .container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-section .blog-card {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: 350px;
  transition: 0.3s;
}

.blog-section .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-section .blog-card h3 {
  font-size: 1.5rem;
  margin: 1rem;
  color: #333;
}

.blog-section .blog-card p {
  font-size: 1rem;
  margin: 0 1rem 1rem;
  color: #666;
}

.blog-section .blog-card .btn {
  display: block;
  text-align: center;
  margin: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.blog-section .blog-card .btn:hover {
  background-color: #0056b3;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience {
    min-height: 80vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #4675d8;
    border-width: 10px 10px 10px 0;
    border-color: transparent #4877b4 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/* experience section ends */


/* Footer Section */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

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

.social-media {
  margin-bottom: 10px;
}

.social-media a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
}

.social-media a:hover {
  color: #ddd;
}

.copyright {
  font-size: 14px;
}

@media (max-width: 600px) {
  .social-media {
      margin-bottom: 15px;
  }

  .social-media a {
      margin: 0 5px;
  }
}

@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}

@keyframes pound {
  to {
    transform: scale(1.1);
  }
}

/* Common Media Queries */
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  
  body {
    padding-right: 0;
  }
  
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */
