@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
::selection {
  color: #fff;
  background-color: var(--main-color);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: var(--second-color);
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 10px;
}
:root {
  --main-color: #3cb371;
  --second-color: #ffe0c3ea;
  --title-color: #222;
  --subtitle-color: #8d8d8d;
}
body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  height: 1000px;
  overflow-x: hidden;
  position: relative;
  cursor: none;
}
/* Loader */
.loader-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  z-index: 9999;
}

#main-content {
  /* Initially hidden */
  display: none;
}

/* Cursor */
.cursor-dot {
  width: 5px;
  height: 5px;
  background-color: black; /* Set the cursor-dot color to black */
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid hsla(0, 0%, 0%, 0.5);
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.section {
  padding: 90px 0 0;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 50px;
}
.btn {
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  padding: 10px 15px;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  transition: 0.4s;
}
.btn:hover {
  background-color: transparent;
  border: 2px soildd var(--main-color);
  color: var(--main-color);
}
.btn i {
  font-size: 20px;
  margin-left: 10px;
}
.section_title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 0.8;
  color: #222;
  position: relative;
  margin-bottom: 100px;
  padding-bottom: 20px;
}
.section_title::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section_title::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--main-color);
  bottom: 0;
  left: calc(50% - 20px);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
}

/* Header section */
header {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
}
header.active {
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 40px;
  height: auto;
  display: flex;
  align-items: center;
}
.menu {
  white-space: nowrap;
  transition: 0.5s;
  z-index: 999;
  position: relative;
}
.menu_item {
  display: inline-block;
}
.menu_link {
  padding: 5px 10px;
  position: relative;
  transition: 0.4s;
  color: #333;
  font-weight: 500;
}
.menu_link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  transform: scale(0);
  transition: 0.4s;
}
.menu_link:hover {
  color: var(--main-color);
}
.active-link {
  color: var(--main-color);
}
.menu_link.active-link::before,
.menu_link:hover::before {
  transform: scale(1);
}
.close_icon {
  font-size: 25px;
  position: absolute;
  top: 30px;
  right: 250px;
  z-index: 1000;
  color: var(--main-color);
  cursor: pointer;
  display: none;
}
.toggle_icon {
  font-size: 32px;
  display: none;
  cursor: pointer;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
  .menu {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #eee;
    height: 100vh;
    padding-top: 100px;
    width: 300px;
    text-align: center;
    transform: translateX(110%);
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.15);
  }
  .menu.active {
    transform: translateX(0);
  }
  .menu_item {
    display: block;
    margin: 20px 0;
  }
  .menu_link {
    color: #333;
  }
  .toggle_icon {
    display: block;
  }
  .close_icon {
    display: block;
  }
}

/* Hero section  */
.hero {
  padding-top: 114px;
  position: relative;
  display: block;
}
.hero_container {
  align-items: center;
}
.hero_container h4 {
  font-size: 28px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
}
.hero_container h1 {
  font-size: 40px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  margin-bottom: 10px;
  color: var(--title-color);
}
.hero_container p {
  margin: 10px 0 40px;
  color: #333;
  font-size: 18px;
}
.hero_container .btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
}
.hero_social {
  display: flex;
  column-gap: 20px;
}
.hero_social a {
  font-size: 22px;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  color: #333;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.hero_social a:hover {
  color: var(--main-color);
  box-shadow: 0 0 10px var(--main-color);
}
.hero_img {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .hero_content h4 {
    font-size: 16px;
  }
  .hero_content h1 {
    font-size: 32px;
  }
  .hero_content p {
    font-size: 15px;
  }
}

@media screen and (max-width: 576px) {
  .hero_container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
    justify-content: center;
  }
  .hero_content {
    order: 2;
    text-align: center;
  }
  .hero_social {
    justify-content: center;
  }
  .hero_img {
    text-align: center;
  }
}

/* Text animation */
@media screen and (max-width: 576px) {
  .hero_container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
    justify-content: center;
  }
  .hero_content {
    order: 2;
    text-align: center;
  }
  .hero_social {
    justify-content: center;
  }
  .hero_img {
    text-align: center;
  }
  .text_animate {
    display: flex;
    justify-content: center;
  }
}

/* About section */
.about_container {
  column-gap: 0;
  align-items: center;
}
.about_content p {
  color: #333;
  margin: 20px 0 15px;
  text-align: justify;
  padding: 0 30px;
}
.about_content h1 {
  padding: 0 20px;
}
.about_info {
  display: flex;
  column-gap: 20px;
  margin-top: 40px;
}
.about_info > div {
  text-align: center;
  background-color: var(--second-color);
  border: 2px dashed var(--main-color);
  border-radius: 10px;
  padding: 10px 15px;
  width: 40%;
}
.about_info > div .number {
  color: var(--main-color);
  font-size: 32px;
  font-weight: 700;
}
.about_info > div .text {
  font-size: 15px;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .about_container {
    grid-template-columns: 3fr 2fr;
  }
}
@media screen and (max-width: 768px) {
  .about_container {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
  }
  .about_info {
    justify-content: center;
  }
  .about_info > div .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .about_container {
    text-align: center;
    justify-content: center;
  }
  .about_img {
    height: auto;
    width: 80%;
    text-align: center;
  }
  .about_img img {
    width: 100%;
  }
}

.counter {
  font-size: 48px;
  color: #333;
  font-weight: bold;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Resume section */
.resume_container {
  grid-template-columns: 1fr 5fr;
}
.resume_tabs ul {
  position: sticky;
  top: 150px;
  position: -webkit-sticky;
}
.resume_tabs ul li a {
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  color: #222;
  position: relative;
  transition: 0.3s;
}
.resume_tabs ul li a.current {
  color: var(--main-color);
  margin-left: 20px;
  position: relative;
}
.resume_tabs ul li a.current::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--main-color);
}
.page {
  margin-bottom: 70px;
}
.page_heading {
  font-size: 25px;
  color: var(--title-color);
  margin-bottom: 25px;
  font-weight: 500;
}
.resume_wrap {
  background-color: #faf9ff;
  margin-bottom: 15px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  border-radius: 10px;
  transition: 0.3s;
}
.resume_wrap-icon {
  background-color: var(--main-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resume_wrap-icon {
  font-size: 25px;
  color: #fff;
}
.resume_wrap-content {
  width: calc(100% - 100px);
  padding: 0 0 10px 10px;
}
.resume_wrap .date {
  font-weight: 600;
}
.resume_wrap-content h4 {
  font-size: 20px;
  color: var(--title-color);
}
.resume_wrap-content .position {
  color: var(--subtitle-color);
  font-size: 14px;
  font-weight: 400;
}
.resume_wrap-content p {
  color: var(--subtitle-color);
  font-weight: 14px;
  margin-top: 15px;
  text-align: justify;
}
.resume_wrap:hover {
  background-color: var(--main-color);
  color: #faf9ff;
}
.resume_wrap:hover .resume_wrap-icon {
  background-color: #fff;
}
.resume_wrap:hover .resume_wrap-icon {
  color: var(--main-color);
}
.resume_wrap:hover h4,
.resume_wrap:hover span,
.resume_wrap:hover p {
  color: #fff;
}
.progressBoxs {
  gap: 3rem;
}
.progress_name {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 10px;
}
.progress {
  width: 100%;
  height: 7px;
  border-radius: 10%;
  background-origin: var(--second-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.progress_bar {
  height: 100%;
  border-radius: 10px;
  background-color: var(--main-color);
  position: relative;
}
.progress_bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 7px);
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-color: var(--main-color);
  border-radius: 50%;
}

@media screen and (max-width: 992px) {
  .resume_container {
    grid-template-columns: 1fr;
  }
  .resume_tabs {
    display: none;
  }
  .resume_wrap {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 576px) {
  .resume_wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .resume_wrap .resume_wrap-icon {
    margin-bottom: 15px;
  }
  .resume_wrap-content {
    width: 100%;
  }
  .progressBoxs {
    grid-template-columns: 1fr;
  }
}

/* Portfolio section */
.portfolio_filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 70px;
  flex-wrap: wrap; /* Allow wrapping to new line */
}

.portfolio_filters li {
  font-size: 15px;
  padding: 5px 15px;
  cursor: pointer;
}

.portfolio_filters li:hover,
.filter-active {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50px;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
  .portfolio_filters {
    column-gap: 5px; /* Reduce gap for mobile */
  }

  .portfolio_filters li {
    font-size: 14px; /* Slightly smaller font size */
    padding: 8px 10px; /* Adjust padding for better fit */
  }
}

.portfolio_wrap-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.portfolio_item {
  border-radius: 10px;
}
.portfolio_wrap {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
  cursor: auto;
}
.portfolio_wrap img {
  border-radius: 10px;
  height: 100%;
}
.portfolio_wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
  border-left: 3px solid rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  transform: scale(0);
}
.portfolio_wrap::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  border-right: 3px solid rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  transform: scale(0);
}
.portfolio_wrap:hover::before,
.portfolio_wrap:hover::after {
  transform: scale(1);
}
.portfolio_info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 10px;
  background-color: rgb(255, 255, 255, 0.5);
  transform: scale(0);
  transition: 0.4s;
  counter-reset: #333;
}
.portfolio_wrap:hover .portfolio_info {
  transform: scale(1);
}
.portfolio_info h4 {
  font-size: 24px;
  color: #333;
  font-weight: 500;
}
.portfolio_info p {
  text-transform: uppercase;
}
.portfolio_links a {
  font-size: 28px;
  color: #333;
}

@media screen and (max-width: 992px) {
  .portfolio_wrap-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .portfolio_wrap-container {
    grid-template-columns: 1fr;
  }
  .portfolio_filters li {
    font-size: 16px;
  }
}

/* Services section */
.services_container {
  grid-template-columns: repeat(3, 230px);
  column-gap: 2rem;
  justify-content: center;
}
.services_item {
  position: relative;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 100px 40px 40px 40px;
}
.services_item i {
  color: var(--main-color);
  font-size: 32px;
  display: block;
}
.services_item .services_title {
  font-size: 22px;
  font-weight: 500;
  color: var(--title-color);
  margin: 20px 0;
}
.services_button {
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.services_button i {
  font-size: 22px;
  margin-left: 5px;
  transition: 0.3s;
}
.services_button:hover i {
  transform: translateX(10px);
}
.services_modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2, green, blue, alpha);
  z-index: 1000;
  display: none;
  padding: 0 30px;
}
.services_modal.active-modal {
  display: flex;
}
.services_modal > div {
  position: relative;
  background-color: #555;
  max-width: 500px;
  max-height: 450px;
  padding: 50px;
  font-size: 14px;
  color: #fff;
  border-radius: 20px;
}
.services_modal .modal_close_icon {
  position: absolute;
  right: 30px;
  top: 30px;
  color: var(--main-color);
  font-size: 25px;
  cursor: pointer;
}
.services_modal-description,
.services_modal-title {
  text-align: center;
}
.services_modal-description {
  margin: 10px 0 30px;
}
.services_modal-title {
  font-size: 22px;
  color: #faf9ff;
}
.services_modal ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.services_modal ul li i {
  font-size: 20px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .services_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
  .services_item {
    padding-top: 30px;
  }
  .services_item h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .services_container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
@media (max-width: 396px) {
  .services_modal > div {
    padding: 40px 20px;
  }
}
/* Infinity slider */
.slider {
  overflow: hidden;
  position: relative;
  padding-top: 90px;
}

.slider ul {
  display: flex;
  padding: 0;
  list-style: none;
  width: max-content;
  animation: runSlider 15s linear infinite;
}

.slider li {
  background-color: #292a2e;
  letter-spacing: 1px;
  font-family: monospace;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 150px;
  padding: 10px;
  margin-right: 5px;
  color: #fff;
  flex: 0 0 auto; /* Ensure items don't shrink or grow */
}

.slider img {
  height: 15px;
  margin-right: 10px;
}

@keyframes runSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-165px * 13)
    ); /* Adjust based on the total width */
  }
}

/* Contact form */
.contact {
  padding-bottom: 60px;
}
.contact_container {
  display: flex;
  justify-content: center;
}
.contact_content {
  min-width: 50%;
  display: flex;
  flex-direction: column;
  padding: 0 50px;
}
.inputs {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
input {
  margin-bottom: 30px;
  width: 100%;
}
input,
textarea {
  border-radius: 10px;
  padding: 20px;
  border: none;
  outline: none;
  background-color: #eee;
  color: var(--title-color);
  font-size: 16px;
}
input:focus,
textarea:focus {
  box-shadow: 0 0 5px #a8bbe0;
}
.contact_content .btn {
  width: 185px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

@media screen and (max-width: 576px) {
  .contact_content {
    padding: 0;
  }
  .inputs {
    flex-direction: column;
  }
}

/* Footer */
.footer_bg {
  background-color: var(--main-color);
  padding-top: 30px;
}
.footer_container {
  text-align: center;
}
.main_footer {
  padding-bottom: 50px;
  border-bottom: 1px solid rgb(219, 219, 219);
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  color: #fff;
}
.footer_social {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.footer_social a {
  background-color: #fff;
  color: var(--title-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
.footer_social a:hover {
  background-color: var(--second-color);
}
.footer_copy {
  padding: 20px 0;
  color: #dbdbdb;
}
#submit {
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  color: white;
  font-size: 16px;
  border-radius: 10px;
  transition: 0.4s;
  width: 200px;
  margin-top: 20px;
  border-radius: 10px;
}
#submit:hover {
  background-color: transparent;
  border: 2px soildd var(--main-color);
  color: var(--main-color);
  cursor: pointer;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero_container {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 1;
}

/* Hide popup by default */
/* Popup overlay */
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
  overflow-y: auto; /* Enable vertical scrolling for content that overflows */
  overflow-x: hidden; /* Disable horizontal scroll */
  z-index: 2000;
}

/* Show animation */
.popup-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Modal box */
.popup-box {
  background: #ffffff;
  padding: 2.5rem 2rem;
  max-width: 640px;
  width: 90%;
  max-height: 90vh; /* Limit height to viewport */
  overflow-y: auto;  /* Make modal content scrollable vertically */
  overflow-x: hidden; /* Prevent horizontal scroll */
  border-radius: 16px;
  text-align: left;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  animation: slideIn 0.3s ease-in-out;
  font-family: "Segoe UI", sans-serif;
}

@keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button */
.popup-box .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background-color: var(--main-color, #3ac569);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.popup-box .close-popup:hover {
  background-color: #2e9c5a;
}

/* Main image */
.popup-box .work-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Title */
.popup-box .details-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

/* Description text */
.popup-box .details-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Info list (date, tech, role) */
.popup-box .details-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.popup-box .details-info li {
  font-size: 0.95rem;
  color: #2c2c2c;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.popup-box .details-info span {
  font-weight: 500;
  color: #666;
}

/* View Site button */
.view-site-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--main-color, #3ac569);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.view-site-btn:hover {
  background-color: #2e9c5a;
}

.view-site-btn i {
  font-size: 1rem;
}

/* Contributors section */
.contributors {
  margin-top: 1.8rem;
}

.contributors h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #222;
}

.contributors-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contributor-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.contributor-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
