@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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* Social Media Icons Styles */
body {
  margin: 0;
  padding: 0;
  /* background: #f0f0f0;
        height: 100vh; */
}

.social-media-icons {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50px;
  padding: 10px 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon:nth-child(1):hover {
  background: #333;
}

.social-icon:nth-child(2):hover {
  background: #1877f2;
}

.social-icon:nth-child(3):hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
}

.sidebar {
  /* background-color: rgb(232, 221, 221); */
  /* width: 434px; */
  background: linear-gradient(90deg, #6378d5 0%, #d0c1de 100%);
  height: 45rem;
  font-family: "Poppins", serif;
  margin: 9px 0;
  transition: transform 0.2s ease-in;
  position: absolute;
}
.sidebar nav {
  padding: 28px;
}

.sidebar nav li {
  list-style: none;
  font-size: 23px;
  padding: 33px 0;
}
.sidebar nav li a {
  text-decoration: none;
  color: rgb(29, 21, 21);
}
.main {
  /* background-color: yellow; */
  width: 90vw;
  height: 100vh;
}

/* styles for ham/cross */
.hamburger {
  display: none;
  cursor: pointer;
  margin: 15px;
  position: absolute;
  top: 3px;
  left: -11px;
  /* margin-left: 10px; */
}
.cross {
  margin-left: 143px;
}
.ham {
  margin-left: 10px;
}

.sidebarGo {
  transform: translate(-443px, 0);
  position: absolute;
}

.container {
  display: flex;
}

.infocontainer {
  /* background-color: blue; */
  height: 85vh;
  width: 80vw;
  margin: 90px auto;
  display: flex;
  justify-content: space-around;
  font-family: "Source Code Pro", serif;
}
.devpic img {
  height: 85vh;
}
.devinfo {
  font-size: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Poppins", serif;
}
.hello {
  font-size: 3em;
}
.name {
  font-size: 3.5em;
  font-weight: bold;
}
.about {
  font-size: 2.5em;
}
.buttons {
  margin-top: 34px;
  font-size: 16px;
}

.btn {
  margin: 3px 3px;
  padding: 9px 14px;
  border-radius: 20px;
  color: aliceblue;
  background-color: rgb(71, 167, 71);
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
}

.btn:hover {
  color: rgb(26, 34, 186);
  background-color: rgb(183, 216, 213);
}

.btn-sm {
  border-radius: 5px;
  font-size: 15px;
  padding: 3px 3px;
  background-color: rgb(158, 175, 216);
  color: rgb(42, 52, 49);
}

/* styles for contact form */

.contactform {
  font-family: "Source Code Pro", serif;
  padding: 100px 50px;
  margin: 30px 200px;
}
.contactform h1 {
  font-family: "Poppins", serif;
  font-weight: 400;
}
.contactform form div {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}
.contactform form div input {
  width: 70vh;
  border-radius: 7px;
  height: 32px;
  font-size: 20px;
  margin: 4px 0;
  padding: 7px;
}
.clientname {
  font-size: 20px;
}

#emailHelp {
  margin: -11px 5px;
  color: rgb(148, 101, 192);
  font-size: 12px;
}
.contactform form textarea {
  width: 70vh;
  height: 110px;
  border-radius: 5px;
  font-size: 18px;
}

/* styles of my info */
.intro {
  margin-left: 200px;
  background-color: #efefef;

  /* background: linear-gradient(to right, #d0c1de 0%, #efefef 100%); */
  width: 100%;
}
.hello {
  margin-top: 70px;
}

.intro h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.intro h1 span {
  color: #171201;
}

.intro h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400;
  color: #51ad37;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.skills {
  /* display: flex; */
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  background-color: #efefef;
}
#skillslist {
  color: rgb(79, 75, 75);
}
.icon-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 20px;
  margin-top: 5px;
}

.icon-grid i {
  display: inline-block;
  padding: 20px 20px;
  font-size: 50px;
  transition: transform 0.1s ease, filter 0.1s ease;
}

.icon-grid i:hover {
  transform: scale(1.4);
  filter: brightness(1.4) drop-shadow(0 0 5px #cfa012);
  cursor: pointer;
}

.skills p {
  color: #eee;
}
.devicon {
  padding: 20px 20px;
}

.cta-buttons {
  margin-top: 30px;
}

.btn,
.btn-outline {
  text-decoration: none;
  padding: 10px 25px;
  margin: 10px;
  display: inline-block;
  border-radius: 5px;
  transition: background 0.3s ease;
}

/* styles for projects  */

/* .container {
  margin-top: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
} */

/* Header Styles */
/* header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 50;
} */

/* .header-content {
  padding: 2rem 0;
  text-align: center;
} */

/* .header-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1e293b;
} */

/* .header-subtitle {
  font-size: 1.125rem;
  color: #64748b;
} */
.projects {
  margin-top: 2rem;
}

.pheader {
  text-align: center;
  margin-bottom: 3rem;
}

.ptitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1e293b;
}

.pdescription {
  color: #64748b;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.5rem;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 6rem;
  max-width: 72rem;
  /* margin: 0 auto; */
  margin: 2rem 18rem;
}

/* Card Styles */
.card {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.card-image-container {
  position: relative;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.category-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(68, 203, 55, 0.9);
  color: #0f100f;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.card-header {
  padding: 1rem 1rem 0.75rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #059669;
}

.card-description {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.5;
}

.card-content {
  padding: 0 1rem 1rem;
}

.tech-stack-section {
  margin-bottom: 1rem;
}

.tech-stack-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.tech-badge {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.tech-badge:hover {
  background: rgba(5, 150, 105, 0.1);
}

/* Button Styles */
.github-button {
  width: 100%;
  background: #059669;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.github-button:hover {
  background: #047857;
}

.icon {
  width: 1rem;
  height: 1rem;
}

/* Footer */
/* Alternative approach if you can't change HTML structure */
/* footer {
  background-color: #2c3e50;
  color: white;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 2rem;
}
.footer-content {
  padding: 2rem 0;
  text-align: center;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.8;
} */

/* style for experience */
/* Experience Section Styles */
.experience {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.experience-header {
  text-align: center;
  margin-bottom: 3rem;
}

.experience-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.experience-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin: 0;
}

.experience-card {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.experience-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2rem;
  min-width: 20px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  z-index: 2;
}

.timeline-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #667eea, #e9ecef);
  margin-top: 8px;
}

.experience-content {
  flex: 1;
}

.experience-header-info {
  margin-bottom: 1.5rem;
}

.experience-header-info h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.experience-header-info h3 {
  font-size: 1.3rem;
  color: #667eea;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.experience-duration {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.duration-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.status-badge {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.experience-description {
  line-height: 1.6;
}

.experience-description > p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.responsibilities {
  margin-bottom: 2rem;
}

.responsibilities h4,
.tech-stack h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.responsibilities ul {
  list-style: none;
  padding: 0;
}

.responsibilities li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #555;
  line-height: 1.5;
}

.responsibilities li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.tech-stack {
  margin-top: 2rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tech-tag {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  transition: transform 0.2s ease;
}

.tech-tag:hover {
  transform: scale(1.05);
}

.tech-tag.react {
  background: linear-gradient(135deg, #61dafb 0%, #21759b 100%);
}

.tech-tag.node {
  background: linear-gradient(135deg, #68a063 0%, #3e7b3e 100%);
}

.tech-tag.typescript {
  background: linear-gradient(135deg, #3178c6 0%, #1e4a72 100%);
}

.tech-tag.postgres {
  background: linear-gradient(135deg, #336791 0%, #1a3a52 100%);
}

.tech-tag.salesforce {
  background: linear-gradient(135deg, #00a1e0 0%, #0073e6 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .experience {
    padding: 1rem;
  }

  .experience-header h1 {
    font-size: 2rem;
  }

  .experience-card {
    flex-direction: column;
    padding: 1.5rem;
  }

  .experience-timeline {
    flex-direction: row;
    margin-right: 0;
    margin-bottom: 1rem;
    justify-content: flex-start;
  }

  .timeline-line {
    width: 100px;
    height: 2px;
    margin-top: 0;
    margin-left: 8px;
  }

  .experience-duration {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tech-tags {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .experience-header h1 {
    font-size: 1.8rem;
  }

  .experience-header-info h2 {
    font-size: 1.5rem;
  }

  .experience-header-info h3 {
    font-size: 1.1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* styles for blog */
.blogcontainer {
  margin: 30px 90px;
}

.blog {
  margin: 30px 200px;
}

/* styles for experience */
.experience {
  margin: 30px 200px;
}
/* Responsive */
@media (max-width: 768px) {
  .intro h1 {
    font-size: 2rem;
  }

  .intro h2 {
    font-size: 1.2rem;
  }
}

/* styles for small screen  */
/* media selector */
@media (max-width: 1282px) {
  /* *{background-color: red;} */

  .devinfo {
    font-size: 15px;
  }

  .intro,
  .blogcontainer,
  .contactform {
    margin: 30px 90px;
  }
  .buttons {
    font-size: 8px;
  }
  .hamburger {
    display: block;
  }
}
