.about-section {
  padding: 90px 0;
}

.about-section .container {
  max-width: 1140px;
}

.about-section .row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 45px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #00c6ff;
  box-shadow: 0 12px 35px rgba(0, 198, 255, 0.25);
  transition: all 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 45px rgba(0, 198, 255, 0.35);
}

.about-content {
  padding-left: 20px;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #ffffff;
}

.about-content p {
  font-size: 16px;
  color: #c2c8dd;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-content strong {
  color: #00c6ff;
}

@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }

  .about-section .row {
    text-align: center;
    padding: 35px 24px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-img {
    max-width: 230px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 55px 15px;
  }

  .about-section .row {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-img {
    max-width: 190px;
  }
}

/* my journey section css code */
.journey-section {
  padding: 90px 0;
}

.journey-header {
  text-align: center;
  margin-bottom: 50px;
}

.journey-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #38b6ff;
  margin-bottom: 12px;
}

.journey-subtext {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #9eabc0;
}

.journey-timeline {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  padding-left: 34px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 3px;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, #38b6ff, rgba(56, 182, 255, 0.15));
}

.journey-item {
  position: relative;
  padding-bottom: 32px;
}

.journey-item:last-child {
  padding-bottom: 0;
}

.journey-marker {
  position: absolute;
  top: 8px;
  left: -34px;
  width: 16px;
  height: 16px;
  background: #38b6ff;
  border: 4px solid #0f1b35;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(56, 182, 255, 0.1);
}

.journey-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 22px 24px;
  transition: all 0.3s ease;
}

.journey-content:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 182, 255, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.journey-role {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #38b6ff;
  margin-bottom: 8px;
}

.journey-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #7f8da3;
  margin-bottom: 10px;
}

.journey-text {
  font-size: 16px;
  line-height: 1.9;
  color: #b7c2d3;
  margin: 0;
}

@media (max-width: 991px) {
  .journey-section {
    padding: 75px 0;
  }

  .journey-heading {
    font-size: 34px;
  }

  .journey-role {
    font-size: 21px;
  }

  .journey-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .journey-section {
    padding: 60px 15px;
  }

  .journey-header {
    margin-bottom: 36px;
  }

  .journey-heading {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .journey-subtext {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 6px;
  }

  .journey-timeline {
    padding-left: 26px;
  }

  .journey-timeline::before {
    left: 8px;
    width: 2px;
  }

  .journey-item {
    padding-bottom: 24px;
  }

  .journey-marker {
    left: -26px;
    width: 14px;
    height: 14px;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(56, 182, 255, 0.1);
  }

  .journey-content {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .journey-role {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .journey-date {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .journey-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .journey-section {
    padding: 50px 12px;
  }

  .journey-heading {
    font-size: 24px;
  }

  .journey-subtext {
    font-size: 13px;
  }

  .journey-timeline {
    padding-left: 22px;
  }

  .journey-timeline::before {
    left: 7px;
  }

  .journey-marker {
    left: -22px;
    width: 12px;
    height: 12px;
  }

  .journey-content {
    padding: 16px 14px;
  }

  .journey-role {
    font-size: 16px;
  }

  .journey-date {
    font-size: 12px;
  }

  .journey-text {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* technologies i used section css CODE */
.tech-section {
  padding: 90px 0;
}

.tech-header {
  text-align: center;
  margin-bottom: 50px;
}

.tech-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #38b6ff;
  margin-bottom: 12px;
}

.tech-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #9eabc0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 182, 255, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.tech-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 182, 255, 0.08);
  border: 1px solid rgba(56, 182, 255, 0.18);
  font-size: 32px;
  color: #38b6ff;
}

.tech-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.tech-text {
  font-size: 15px;
  line-height: 1.8;
  color: #b7c2d3;
  margin: 0;
}

@media (max-width: 991px) {
  .tech-section {
    padding: 75px 0;
  }

  .tech-title {
    font-size: 34px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tech-name {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .tech-section {
    padding: 60px 15px;
  }

  .tech-header {
    margin-bottom: 36px;
  }

  .tech-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .tech-subtitle {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 6px;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tech-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .tech-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-bottom: 16px;
  }

  .tech-name {
    font-size: 18px;
  }

  .tech-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .tech-section {
    padding: 50px 12px;
  }

  .tech-title {
    font-size: 24px;
  }

  .tech-subtitle {
    font-size: 13px;
  }

  .tech-card {
    padding: 20px 15px;
  }

  .tech-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .tech-name {
    font-size: 17px;
  }

  .tech-text {
    font-size: 13px;
  }
}