@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


body {
  background-color: rgb(175, 56, 56);
  font-family: "Rubik", serif;

}

a{
  text-decoration: none !important;
  color: white !important;
}


.navbar {
  border-bottom: 1px solid rgb(62, 57, 57);
}

.navbar ul li {
  cursor: pointer;
}

.about {
  padding: 5%;
  width: 100%;
  font-family: "Rubik", serif;
}

.about h3 {
  font-size: 2.5rem;
  /* Adjusted for responsiveness */
  font-weight: 700;
  color: #3ccf91;
}

.about h1 {
  font-size: 5rem;
  /* Adjusted for different screens */
  text-transform: uppercase;
  font-weight: 700;
}

.about p {
  font-size: 1.2rem;
  color: #8f9094;
}

.about .position span {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}

.about .position {
  margin-bottom: 15px;
  color: #8f9094;
  font-size: 1.2rem;
  font-weight: 500;
}

.about .company {
  color: #3ccf91;
}

/* Social Links */
.social-links {
  margin-top: 20px;
}

.social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-links ul li {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 5px;
  background: #333;
  color: white;
  font-size: 1rem;
  transition: background 0.3s ease;
  cursor: pointer;
}

.social-links ul li:hover {
  background: #444;
}

.social-links ul li img {
  width: 25px;
  height: 25px;
}

/* 🌐 Responsive Design */
@media (max-width: 992px) {
  .about h1 {
    font-size: 4rem;
  }

  .about h3 {
    font-size: 2rem;
  }

  .about p {
    font-size: 1rem;
  }

  .social-links ul {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }

  .social-links ul {
    flex-direction: column;
    align-items: center;
  }

  .social-links ul li {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about h1 {
    font-size: 3rem;
  }

  .about h3 {
    font-size: 1.8rem;
  }

  .about p {
    font-size: 0.9rem;
  }
}

/* info */
.info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 5%;
  font-family: "Rubik", serif;
}

.info img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  display: block;
}

.info h5 {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.info p {
  color: #8f9094;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.info span {
  color: #3ccf91;

}

@media (max-width: 992px) {
  .info {
    flex-direction: column;
    text-align: center;
  }

  .info img {
    max-width: 280px;
  }

  .info h5 {
    font-size: 24px;
  }

  .info p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .info {
    padding: 10%;
    text-align: center;
  }

  .info img {
    max-width: 250px;
  }

  .info p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .info {
    padding: 8%;
  }

  .info img {
    max-width: 200px;
  }

  .info h5 {
    font-size: 22px;
  }

  .info p {
    font-size: 14px;
  }
}

/* Projects Section */
.projects {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: white;
  font-family: "Rubik", sans-serif;
  padding: 50px 0;
}

.projects .row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.projects .col-md-6 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projects .text {
  margin-bottom: 20px;
}

.projects .text h3 {
  font-size: 28px;
  font-weight: bold;
}

.projects .text p {
  font-size: 16px;
  color: #b0b3b8;
}

.projects .text a {
  text-decoration: none;
  color: #3ccf91;
  font-size: 18px;
  padding: 8px 12px;
  border: 2px solid #3ccf91;
  border-radius: 5px;
  transition: 0.3s;
}

.projects .text a:hover {
  background: #3ccf91;
  color: black;
}

.card {
  width: 100%;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 20px rgba(0, 255, 170, 0.3);
}

.card-img-top {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #3ccf91;
}

.card-body {
  padding: 20px;
  background: black;
}

.card-title {
  font-size: 22px;
  font-weight: bold;
}

.card-text {
  color: #8f9094;
  font-size: 14px;
}

.projects ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 10px;
}

.projects ul li {
  display: flex;
  color: white;
  align-items: center;
  background: #282828;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.projects ul li img {
  width: 20px;
  margin-right: 5px;
}

.projects .mainDiv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.projects .mainDiv a img {
  width: 22px;
  transition: transform 0.3s ease;
}

.projects .mainDiv a img:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .projects .col-md-6 {
    width: 100%;
  }
}


/* contact */
.contact {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: auto;
  font-family: "Rubik", sans-serif;
}

.contact h3 {
  color: white;
  font-size: 3rem;
}

.contact p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0;
}

.contact .special {
  color: #3ccf91;
}

.contact-info span {
  margin-top: 20px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
  width: fit-content;
  font-size: 1rem;
  color: white;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-info span:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.contact-info span img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.info-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  color: white;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.contact-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.contact-links li {
  display: flex;
  align-items: center;
  background: #222;
  padding: 12px 18px;
  border-radius: 5px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.contact-links li:hover {
  background: #3ccf91;
  transform: translateY(-3px);
}

.contact-links li img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}


/* footer */
.footer {
  font-family: "Rubik", sans-serif;
  align-items: center;
  justify-items: center;
  text-align: center;
  border-top: 1px solid gray;
  padding: 5px;
  color: white;
}

.footer p {
  text-align: center;
}