* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  width: 590;
  height: 2036.4642333984;
  top: -344px;
  left: -1473px;
  border-radius: 10px;
  border-width: 1px;
}

body {
  background: #fff;
  color: #000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: bold;
}
.navbar .logo {
  font-weight: bold;
  font-size: 18px;
}
.navbar .nav-links {
  display: flex;
  flex-wrap: wrap;
}
.navbar .nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.navbar .nav-links a:hover {
  color: #fff;
  background-color: black;
}
.navbar .resume-button {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  border-color: #000;
}
.navbar .resume-button:hover {
  color: white;
}
.navbar .resume-button i {
  margin-right: 5px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  margin: 40px;
}
.hero .hero-text {
  flex: 1;
  padding-right: 50px;
}
.hero .hero-text h1 {
  font-size: 2.5em;
  line-height: 1.4;
}
.hero .hero-text h1 .highlight {
  padding: 2px 4px;
  border-radius: 4px;
  color: white;
  -webkit-text-stroke: 2px black;
  font-size: 40px;
}
.hero .hero-text p {
  margin: 40px 0;
  font-size: 20px;
  color: black;
  max-width: 600px;
  padding: 10px;
}
.hero .hero-text .social-icons a {
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  border: 2px solid;
  border-radius: 4px;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  border-color: #37b4b9;
}
.hero .hero-text .social-icons a:hover {
  color: #fff;
  background-color: black;
}
.hero .hero-image img {
  width: 100%;
  height: 75vh;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero .hero-text {
    padding: 0;
    margin-bottom: 30px;
  }
  .hero .hero-text p {
    margin: 20px auto;
  }
  .hero .hero-text .social-icons {
    justify-content: center;
  }
  .hero .hero-image img {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .navbar .nav-links {
    margin-top: 10px;
    flex-direction: column;
  }
  .navbar .nav-links a {
    margin: 5px 0;
  }
  .navbar .resume-button {
    margin-top: 15px;
  }
  .hero-text h1 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  .hero-image img {
    width: 250px;
  }
  .hero-text h1 {
    font-size: 1.6em;
  }
  .social-icons a {
    padding: 8px;
    font-size: 14px;
  }
  .social-icons a:hover {
    color: #fff;
    background-color: #000;
  }
}
/*skills*/
.skills {
  margin-bottom: 30;
  padding-bottom: 30px;
  margin-left: 70px;
  margin-right: 70px;
}
.skills h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.skills h2 strong {
  padding-left: 15px;
}
.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}
@media (max-width: 1024px) {
  .skills .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .skills .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .skills .skills-grid {
    grid-template-columns: 1fr;
  }
}

.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid #000;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 50%;
  min-height: 120px;
  cursor: pointer;
}
.skill-card i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #000;
}
.skill-card span {
  margin-top: 0.3rem;
  font-weight: 500;
  text-align: center;
  color: #000;
}
.skill-card:hover {
  transform: translateY(-5px);
  background-color: black;
}
.skill-card:hover i,
.skill-card:hover span {
  color: #fff;
}
.skill-card.highlighted {
  background-color: #000;
}
.skill-card.highlighted i,
.skill-card.highlighted span {
  color: #fff;
}

.skill-card {
  width: 100%;
  min-height: 100px;
  padding: 15px;
}
.skill-card i {
  font-size: 2rem;
}
.skill-card span {
  font-size: 0.9rem;
}

.skills h2 {
  font-size: 1.5rem;
  flex-direction: column;
  text-align: center;
}

.experience {
  padding: 2rem;
  background-color: #000;
  color: #fff;
  margin-top: 0;
  padding-top: 0;
  margin-left: 70px;
  margin-right: 70px;
}
.experience h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
.experience h2 strong {
  padding-left: 10px;
}
.experience .experience-card {
  background-color: #000;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
}
.experience .experience-card:hover {
  background-color: rgb(59, 53, 53);
  color: #fff;
}
.experience .experience-card .exp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.experience .experience-card .exp-header .company {
  display: flex;
  align-items: center;
}
.experience .experience-card .exp-header .company img {
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
}
.experience .experience-card .exp-header .company h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.experience .experience-card .exp-header .duration {
  font-size: 0.9rem;
  color: #ccc;
}
.experience .experience-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}
@media (max-width: 768px) {
  .experience .experience-card {
    padding: 1rem;
  }
  .experience .experience-card .exp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .experience .experience-card .exp-header .duration {
    margin-top: 0.5rem;
  }
}

.about {
  width: 1440;
  height: 712.2810668945;
  padding-top: 60px;
  padding-right: 70px;
  padding-bottom: 60px;
  padding-left: 70px;
}
.about .about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 1280;
  height: 592.2810668945;
  justify-content: space-between;
  padding-right: 32px;
  padding-left: 32px;
}
.about .about-container .about-image {
  flex: 1;
}
.about .about-container .about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about-container .about-content {
  flex: 2;
}
.about .about-container .about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about .about-container .about-content h2 strong {
  color: #000;
  padding-left: 8px;
}
.about .about-container .about-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}
@media (max-width: 768px) {
  .about .about-container {
    flex-direction: column;
  }
  .about .about-container .about-image img {
    max-width: 100%;
  }
  .about .about-container .about-content {
    text-align: center;
  }
  .about .about-container .about-content h2 {
    font-size: 1.5rem;
  }
  .about .about-container .about-content p {
    font-size: 0.95rem;
  }
}

.projects {
  padding: 60px 80px;
  background-color: #fff;
}
.projects h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.projects h2 strong {
  padding-left: 10px;
}
.projects .projects-grid .project-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #000;
  padding: 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.projects .projects-grid .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.projects .projects-grid .project-card .project-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects .projects-grid .project-card .project-info .project-number {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
.projects .projects-grid .project-card .project-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0.5rem 0;
  text-transform: uppercase;
  color: #fff;
}
.projects .projects-grid .project-card .project-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}
.projects .projects-grid .project-card .project-info .view-project {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.projects .projects-grid .project-card .project-info .view-project:hover {
  transform: translateY(-3px);
}
@media (min-width: 768px) {
  .projects .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .projects .projects-grid .project-card {
    flex-direction: row;
    align-items: center;
  }
  .projects .projects-grid .project-card .project-image,
  .projects .projects-grid .project-card .project-info {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .projects {
    padding: 40px 20px;
  }
  .projects .projects-grid .project-card {
    padding: 1rem;
  }
  .projects .projects-grid .project-card .project-number {
    font-size: 1.5rem;
  }
  .projects .projects-grid .project-card h3 {
    font-size: 1.1rem;
  }
  .projects .projects-grid .project-card p {
    font-size: 0.9rem;
  }
}

.contact {
  padding: 60px 80px;
  background-color: #fff;
}
.contact .contact-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.contact .contact-container .contact-form {
  flex: 1;
}
.contact .contact-container .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact .contact-container .contact-form form input,
.contact .contact-container .contact-form form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: #000;
  background-color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact .contact-container .contact-form form input:focus,
.contact .contact-container .contact-form form textarea:focus {
  border-color: #00aaff;
}
.contact .contact-container .contact-form form input {
  height: 45px;
}
.contact .contact-container .contact-form form textarea {
  height: 120px;
  resize: none;
}
.contact .contact-container .contact-form form .form-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.contact .contact-container .contact-form form .form-footer button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact .contact-container .contact-form form .form-footer button:hover {
  background-color: black;
}
.contact .contact-container .contact-form form .form-footer .social-icons {
  display: flex;
  gap: 10px;
  border: 2px;
}
.contact .contact-container .contact-form form .form-footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}
.contact .contact-container .contact-form form .form-footer .social-icons a:hover {
  background-color: #000;
  color: #fff;
}
.contact .contact-container .contact-text {
  flex: 1;
  margin: 16px;
  text-align: left;
}
.contact .contact-container .contact-text .contact-right_title {
  font-size: 38px;
  margin-bottom: 16px;
}
.contact .contact-container .contact-text .talk {
  color: white;
  -webkit-text-stroke: 2px black;
  font-size: 40px;
}
.contact .contact-container .contact-text .contact-info {
  font-size: 1rem;
  color: #000;
  padding: 30px;
  text-align: left;
  padding-left: 2px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.contact .contact-container .contact-text .contact-info a {
  color: #000;
  text-decoration: none;
}
.contact .contact-container .contact-text .contact-info a:hover {
  color: #00aaff;
}

@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-container .contact-form,
  .contact-container .contact-text {
    width: 100%;
    max-width: 500px;
  }
  .contact-container .contact-text {
    text-align: center;
  }
  .contact-container .contact-text h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-container .contact-text h2 {
    font-size: 1.8rem;
  }
  .contact-container .contact-text p {
    font-size: 0.95rem;
  }
  .contact-container .contact-text .contact-info {
    font-size: 0.95rem;
  }
  .contact-container .contact-form form input,
  .contact-container .contact-form form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }
  .contact-container .contact-form form input {
    height: 40px;
  }
  .contact-container .contact-form form textarea {
    height: 100px;
  }
  .contact-container .contact-form form .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-container .contact-form form .form-footer button {
    width: 100%;
    text-align: center;
  }
  .contact-container .contact-form form .form-footer .social-icons {
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
  }
  .contact-container .contact-form form .form-footer .social-icons a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
.footer {
  background-color: #000;
  color: #fff;
  padding: 1rem 2rem;
  margin-left: 70px;
  margin-right: 70px;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer .footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer .footer-left .footer-logo {
  width: 30px;
  height: auto;
}
.footer .footer-left span {
  font-size: 1rem;
  font-weight: 600;
}
.footer .footer-right {
  text-align: right;
}
.footer .footer-right p {
  margin: 0;
  font-size: 0.9rem;
}
.footer .footer-right small {
  font-size: 0.75rem;
  color: #aaa;
}
@media (max-width: 600px) {
  .footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .footer .footer-right {
    text-align: center;
  }
}/*# sourceMappingURL=index.css.map */