/* About Us Page - All styles scoped to .about-page */
/* About Us Page Specific Styling */
.about-content {
  max-width: 1320px;
  margin: 30px auto;
  padding: 0 10px;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.about-paragraph {
  /* margin-bottom: 30px; */
  color: #274472;
  font-family: Poppins;
  font-weight: 600;
  font-style: normal; /* SemiBold is not a valid CSS value, using normal */
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.about-paragraph:first-child {
  width: 100%;
  max-width: 1319px;
  /* min-height: 112px; */
}

.about-paragraph:nth-child(2) {
  width: 100%;
  max-width: 1329px;
  /* min-height: 90px; */
}

.about-paragraph:last-child {
  width: 100%;
  max-width: 1319px;
  /* min-height: 60px; */
}

/* Mission and Vision Section */
.mission-vision {
  max-width: 1320px;
  margin: 80px auto;
  padding: 0 20px;
}

.mission-vision__title {
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  margin-bottom: 50px;
}

.mission-vision__container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.mission-vision__box {
  width: 368px;
  height: 279px;
  background-color: rgba(39, 68, 114, 0.49); /* #274472 with 36% opacity */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 20px;
  box-sizing: border-box;
}

.mission-vision__image {
  width: 210px;
  height: 158px;
  object-fit: contain;
  margin-bottom: 20px;
  min-height: 158px; /* Ensure minimum height is maintained */
}

.mission-vision__image-placeholder {
  width: 210px;
  height: 158px;
  min-height: 158px; /* Ensure minimum height is maintained */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a2f4d;
  color: white;
  font-family: Poppins;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}

.mission-vision__caption {
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-size: 26px; 
  line-height: 30px;
  text-align: center;
  color: #274472;
  width: 100%;
  max-width: 322px;
  padding: 0 10px;
  box-sizing: border-box;
}

.mission-vision__text {
  flex: 1;
  max-width: calc(100% - 398px);
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0%;
  text-align: justify;
}

@media screen and (max-width: 1024px) {
  .mission-vision__container {
    flex-direction: column;
    align-items: center; /* Center items in column layout */
  }
  
  .mission-vision__text {
    max-width: 100%;
    margin-top: 20px;
  }
  
  .mission-vision__box {
    margin: 0 auto; /* Center the box */
    min-height: 279px; /* Maintain minimum height */
  }
  
  .mission-vision__image,
  .mission-vision__image-placeholder {
    width: 210px;
    height: 158px;
    min-height: 158px; /* Force minimum height on smaller screens */
  }
}

/* Timeline Milestones Section - Redesigned to match Figma exactly */
.about-page .timeline {
  max-width: 1320px;
  margin: 100px auto;
  padding: 0 20px;
}

.about-page .timeline__title {
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #274472;
  margin-bottom: 70px;
}

.about-page .timeline__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 600px;
  padding: 40px 0;
}

/* Central vertical line - thicker blue line like Figma */
.about-page .timeline__line {
      position: absolute;
    width: 12px;
    height: 100%;
    background: #274472;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 1;
}

/* Timeline items positioning */
.about-page .timeline__item {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
}

/* Left side items (2017, 2020, 2024) */
.about-page .timeline__item--left {
  justify-content: flex-start;
  
}

.about-page .timeline__item--left .timeline__year-box {
  position: absolute;
  left: 50px;
}

.about-page .timeline__item--left .timeline__connector {
  position: absolute;
  left: calc(55px + 80px); /* Start from right edge of year box (position + min-width) */
  width: calc(50% - (55px + 80px) + 22px); /* Extend to center of circle */
  top: 50%; /* Center vertically with the circle */
  transform: translateY(-50%); /* Ensure perfect center alignment */
  height: 4px;
  background: #274472;
  border-radius: 2px;
  z-index: 2;
}

.about-page .timeline__item--left .timeline__description {
  position: absolute;
  left: 50px;
  top: 70px;
  text-align: left;
}

/* Right side items (2018, 2022) */
.about-page .timeline__item--right {
  justify-content: flex-end;
}

.about-page .timeline__item--right .timeline__year-box {
  position: absolute;
  right: 50px;
}

.about-page .timeline__item--right .timeline__connector {
  position: absolute;
  right: calc(55px + 80px); /* Start from left edge of year box */
  width: calc(50% - (50px + 80px) + 10px); /* Extend to center of circle */
  top: 50%; /* Center vertically with the circle */
  transform: translateY(-50%); /* Ensure perfect center alignment */
  height: 4px;
  background: #274472;
  border-radius: 2px;
  z-index: 2;
}

.about-page .timeline__item--right .timeline__description {
  position: absolute;
  right: 50px;
  top: 70px;
  text-align: right;
}

/* Year boxes - styled exactly like Figma */
.about-page .timeline__year-box {
  position: relative;
  z-index: 5; /* Higher than connector lines to stay on top */
}

.about-page .timeline__year {
  background: rgba(39, 68, 114, 0.49) !important;
  color: #274472;
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-block;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(39, 68, 114, 0.49);
  position: relative;
  z-index: 5; /* Ensure year button stays above connector lines */
}

/* Horizontal connector lines - blue like Figma */
.about-page .timeline__connector {
  height: 4px;
  background:#274472;
  border-radius: 2px;
  z-index: 2;
}

/* White circles on central line */
.about-page .timeline__circle {
      position: absolute;
    width: 45px;
    height: 46px;
    background: white;
    border: 6px solid #274472;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

/* Description text */
.about-page .timeline__description {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #495057;
  max-width: 250px;
}

/* Position milestones vertically */
.about-page .timeline__item:nth-child(2) { /* 2017 */
  top: 0%;
}

.about-page .timeline__item:nth-child(3) { /* 2018 */
  top: 20%;
}

.about-page .timeline__item:nth-child(4) { /* 2020 */
  top: 40%;
}

.about-page .timeline__item:nth-child(5) { /* 2022 */
  top: 60%;
}

.about-page .timeline__item:nth-child(6) { /* 2024 */
  top: 80%;
}

/* Timeline Responsive Styles */
@media screen and (max-width: 1024px) {
  .about-page .timeline__item--left .timeline__connector {
    left: calc(30px + 80px); /* Start from right edge of year box */
    width: calc(50% - (30px + 80px) + 22px);
  }
  
  .about-page .timeline__item--right .timeline__connector {
    right: calc(30px + 80px);
    width: calc(50% - (30px + 80px) + 22px);
  }
  
  .about-page .timeline__item--left .timeline__year-box {
    left: 30px;
  }
  
  .about-page .timeline__item--right .timeline__year-box {
    right: 30px;
  }
}

/* Specific fix for screens around 770px */
@media screen and (max-width: 850px) {
  .about-page .timeline__container {
    height: 520px;
    padding: 35px 0;
  }
  
  .about-page .timeline__item--left .timeline__connector {
    left: calc(20px + 65px); /* Start from right edge of year box (position + width) */
    width: calc(50% - (20px + 65px) + 19px); /* Extend to center of circle */
  }
  
  .about-page .timeline__item--right .timeline__connector {
    right: calc(20px + 65px);
    width: calc(50% - (20px + 65px) + 19px);
  }
  
  .about-page .timeline__item--left .timeline__year-box {
    left: 20px;
  }
  
  .about-page .timeline__item--right .timeline__year-box {
    right: 20px;
  }
  
  .about-page .timeline__year {
    font-size: 17px;
    padding: 9px 15px;
    min-width: 65px;
  }
  
  .about-page .timeline__circle {
    width: 38px;
    height: 38px;
    border: 5px solid #274472;
  }
}

@media screen and (max-width: 768px) {
  .about-page .timeline__container {
    height: 500px;
    padding: 30px 0;
  }
  
  .about-page .timeline__item--left .timeline__connector {
    left: calc(15px + 70px); /* Start from right edge of year box */
    width: calc(50% - (15px + 70px) + 17px); /* Extend to center of circle */
  }
  
  .about-page .timeline__item--right .timeline__connector {
    right: calc(15px + 70px);
    width: calc(50% - (15px + 70px) + 17px);
  }
  
  .about-page .timeline__item--left .timeline__year-box {
    left: 15px;
  }
  
  .about-page .timeline__item--right .timeline__year-box {
    right: 15px;
  }
  
  .about-page .timeline__year {
    font-size: 18px;
    padding: 10px 16px;
    min-width: 70px;
  }
  
  .about-page .timeline__circle {
    width: 35px;
    height: 36px;
    border: 4px solid #274472;
  }
  
  .about-page .timeline__description {
    font-size: 13px;
    max-width: 200px;
  }
}

@media screen and (max-width: 576px) {
  .about-page .timeline__container {
    height: 450px;
    padding: 25px 0;
  }
  
  .about-page .timeline__item--left .timeline__connector {
    left: calc(8px + 60px); /* Start from right edge of year box */
    width: calc(50% - (8px + 60px) + 15px); /* Extend to center of circle */
  }
  
  .about-page .timeline__item--right .timeline__connector {
    right: calc(8px + 60px);
    width: calc(50% - (8px + 60px) + 15px);
  }
  
  .about-page .timeline__item--left .timeline__year-box {
    left: 8px;
  }
  
  .about-page .timeline__item--right .timeline__year-box {
    right: 8px;
  }
  
  .about-page .timeline__year {
    font-size: 16px;
    padding: 8px 12px;
    min-width: 60px;
  }
  
  .about-page .timeline__circle {
    width: 30px;
    height: 30px;
    border: 3px solid #274472;
  }
  
  .about-page .timeline__description {
    font-size: 12px;
    max-width: 180px;
  }
  
  .about-page .timeline__line {
    width: 8px;
  }
}

/* Timeline responsive scaling for bigger screens */
@media screen and (min-width: 1700px) {
  .about-page .timeline__container {
    max-width: 900px;
    height: 680px;
  }
  .about-page .timeline__year {
    font-size: 22px;
    padding: 14px 22px;
  }
  .about-page .timeline__description {
    font-size: 15px;
    max-width: 270px;
  }
}

@media screen and (min-width: 2000px) {
  .about-page .timeline__container {
    max-width: 1000px;
    height: 750px;
  }
  .about-page .timeline__year {
    font-size: 24px;
    padding: 16px 24px;
    min-width: 100px;
  }
  .about-page .timeline__year-box {
    z-index: 10;
  }
  .about-page .timeline__description {
    font-size: 16px;
    max-width: 290px;
  }
  .about-page .timeline__circle {
    width: 45px;
    height: 40px;
  }
  /* Adjust connector positions for larger year boxes */
  .about-page .timeline__item--left .timeline__connector {
    left: calc(55px + 100px); /* Account for larger year box */
    width: calc(50% - (55px + 100px) + 22px);
    z-index: 1;
  }
  .about-page .timeline__item--right .timeline__connector {
    right: calc(55px + 100px);
    width: calc(50% - (55px + 100px) + 22px);
    z-index: 1;
  }
}

@media screen and (min-width: 2400px) {
  .about-page .timeline__container {
    max-width: 1100px;
    height: 820px;
  }
  .about-page .timeline__year {
    font-size: 26px;
    padding: 18px 26px;
    min-width: 110px;
  }
  .about-page .timeline__year-box {
    z-index: 10;
  }
  .about-page .timeline__description {
    font-size: 18px;
    max-width: 310px;
  }
  .about-page .timeline__circle {
    width: 42px;
    height: 42px;
  }
  /* Adjust connector positions for larger year boxes */
  .about-page .timeline__item--left .timeline__connector {
    left: calc(55px + 115px);
    width: calc(50% - (55px + 115px) + 22px);
    z-index: 1;
  }
  .about-page .timeline__item--right .timeline__connector {
    right: calc(55px + 115px);
    width: calc(50% - (55px + 115px) + 22px);
    z-index: 1;
  }
}

/* Timeline responsive fix for 770px and below */
@media screen and (max-width: 770px) {
  .about-page .timeline {
    max-width: 100%;
    padding: 60px 15px;
  }
  
  .about-page .timeline__title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .about-page .timeline__container {
    height: auto;
    padding: 20px 0;
    max-width: 100%;
  }
  
  /* Convert to vertical single-column layout */
  .about-page .timeline__line {
    left: 30px;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
  }
  
  .about-page .timeline__item {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    display: block;
    height: auto;
  }
  
  .about-page .timeline__item--left,
  .about-page .timeline__item--right {
    left: 0;
    right: 0;
    justify-content: flex-start;
  }
  
  .about-page .timeline__item--left .timeline__year-box,
  .about-page .timeline__item--right .timeline__year-box {
    position: relative;
    left: 70px;
    right: auto;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .about-page .timeline__item--left .timeline__connector,
  .about-page .timeline__item--right .timeline__connector {
    position: absolute;
        left: 29px;
        width: 40px;
        height: 4px;
        top: 45px;
        right: auto;
  }
  
  .about-page .timeline__item--left .timeline__description,
  .about-page .timeline__item--right .timeline__description {
    position: relative;
    left: 70px;
    right: auto;
    top: 0;
    text-align: left;
    max-width: calc(100% - 80px);
  }
  
  .about-page .timeline__circle {
    left: 30px;
    transform: translateX(-50%);
    right: auto;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }
  
  /* Reset positioning for mobile */
  .about-page .timeline__item:nth-child(2),
  .about-page .timeline__item:nth-child(3),
  .about-page .timeline__item:nth-child(4),
  .about-page .timeline__item:nth-child(5),
  .about-page .timeline__item:nth-child(6) {
    top: auto;
    position: relative;
  }
  
  .about-page .timeline__year {
    font-size: 16px;
    padding: 8px 16px;
    min-width: 60px;
  }
  
  .about-page .timeline__description {
    font-size: 13px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 768px) {
  .about-page .about-content {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .about-page .about-paragraph {
    font-size: 16px;
    line-height: 28px;
  }
  
  .about-page .mission-vision {
    max-width: 100%;
    padding: 60px 20px;
  }
  
  .about-page .mission-vision__title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  
  .about-page .mission-vision__content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-page .mission-vision__box {
    width: 100%;
    max-width: 350px;
    height: 250px;
  }
  
  .about-page .mission-vision__text {
    max-width: 100%;
    font-size: 18px;
  }
  
  .about-page .timeline {
    max-width: 100%;
    padding: 60px 20px;
  }
  
  .about-page .timeline__title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  
  .about-page .timeline__container {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 100%;
  }
  
  .about-page .timeline__line {
    left: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
  }
  
  .about-page .timeline__item {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .about-page .timeline__item--left,
  .about-page .timeline__item--right {
    left: 0;
    right: 0;
  }
  
  .about-page .timeline__connector {
    width: 80px;
    order: 2;
  }
  
  .about-page .timeline__content-box {
    order: 3;
    width: calc(100% - 100px);
    margin-left: 20px;
    align-items: flex-start;
  }
  
  .about-page .timeline__item--left .timeline__content-box,
  .about-page .timeline__item--right .timeline__content-box {
    margin-right: 0;
    margin-left: 20px;
    align-items: flex-start;
  }
  
  .about-page .timeline__circle {
    left: 20px;
    transform: translateX(-50%);
    right: auto;
  }
  
  .about-page .timeline__item--left .timeline__circle,
  .about-page .timeline__item--right .timeline__circle {
    left: 20px;
    right: auto;
  }
  
  .about-page .timeline__description {
    text-align: left;
    max-width: 100%;
  }
  
  .about-page .timeline__title {
    font-size: 45px;
  }
  
  .about-page .timeline__item:nth-child(2),
  .about-page .timeline__item:nth-child(3),
  .about-page .timeline__item:nth-child(4),
  .about-page .timeline__item:nth-child(5),
  .about-page .timeline__item:nth-child(6) {
    top: auto;
    margin-top: 10px;
  }
}

/* Tablet responsive styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about-page .about-content {
    max-width: 90%;
    padding: 0 30px;
  }
  
  .about-page .about-paragraph {
    font-size: 17px;
    line-height: 30px;
  }
  
  .about-page .mission-vision {
    max-width: 90%;
    padding: 80px 30px;
  }
  
  .about-page .mission-vision__title {
    font-size: 50px;
  }
  
  .about-page .mission-vision__box {
    width: 320px;
    height: 280px;
  }
  
  .about-page .timeline {
    max-width: 90%;
    padding: 80px 30px;
  }
  
  .about-page .timeline__title {
    font-size: 50px;
  }
  
  .about-page .timeline__container {
    max-width: 800px;
    height: 700px;
  }
}

@media screen and (max-width: 480px) {
  .about-page .timeline__title {
    font-size: 36px;
  }
  
  .about-page .timeline__year {
    font-size: 22px;
  }
  
  .about-page .timeline__description {
    font-size: 14px;
  }
  
  .about-page .timeline__connector {
    width: 60px;
  }
  
  .about-page .timeline__content-box {
    width: calc(100% - 80px);
  }
}

/* Ultra small mobile devices (350px and below) */
@media screen and (max-width: 350px) {
  .about-content {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 10px;
  }
  
  .about-paragraph {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 15px;
  }
  
  .about-page .mission-vision {
    max-width: 100%;
    padding: 20px 10px;
  }
  
  .about-page .mission-vision__title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  
  .about-page .mission-vision__content {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-page .mission-vision__box {
    width: 100%;
    max-width: 280px;
    height: 200px;
    margin: 0 auto;
  }
  
  .about-page .mission-vision__caption {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px;
  }
  
  .about-page .mission-vision__text {
    font-size: 12px;
    line-height: 16px;
  }
  
  .about-page .timeline {
    max-width: 100%;
    padding: 20px 10px;
  }
  
  .about-page .timeline__title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  
  .about-page .timeline__container {
    max-width: 100%;
    height: auto;
    min-height: 600px;
    padding: 10px;
  }
  
  .about-page .timeline__year {
    font-size: 16px;
    padding: 6px 12px;
  }
  
  .about-page .timeline__description {
    font-size: 11px;
    line-height: 14px;
    max-width: 200px;
  }
  
  .about-page .timeline__connector {
    width: 40px;
  }
  
  .about-page .timeline__content-box {
    width: calc(100% - 60px);
  }
}

/* Progressive scaling for about page on bigger screens */
@media screen and (min-width: 1700px) {
  .about-page .about-content {
    max-width: 1500px;
  }
  .about-page .about-paragraph {
    font-size: 18px;
    line-height: 32px;
  }
  .about-page .mission-vision {
    max-width: 1500px;
  }
  .about-page .mission-vision__title {
    font-size: 70px;
  }
  .about-page .mission-vision__box {
    width: 420px;
    height: 320px;
  }
  .about-page .mission-vision__caption {
    font-size: 28px;
    line-height: 34px;
  }
  .about-page .mission-vision__text {
    font-size: 22px;
    line-height: 32px;
  }
  .about-page .timeline {
    max-width: 1500px;
  }
  .about-page .timeline__title {
    font-size: 70px;
  }
  .about-page .timeline__container {
    max-width: 1200px;
    height: 850px;
  }
}

@media screen and (min-width: 2000px) {
  .about-page .about-content {
    max-width: 1700px;
  }
  .about-page .about-paragraph {
    font-size: 20px;
    line-height: 36px;
  }
  .about-page .mission-vision {
    max-width: 1700px;
  }
  .about-page .mission-vision__title {
    font-size: 80px;
  }
  .about-page .mission-vision__box {
    width: 480px;
    height: 360px;
  }
  .about-page .mission-vision__caption {
    font-size: 30px;
    line-height: 36px;
  }
  .about-page .mission-vision__text {
    font-size: 24px;
    line-height: 36px;
  }
  .about-page .timeline {
    max-width: 1700px;
  }
  .about-page .timeline__title {
    font-size: 80px;
  }
  .about-page .timeline__container {
    max-width: 1400px;
    height: 950px;
  }
  .about-page .timeline__year {
    font-size: 30px;
    padding: 12px 26px;
  }
  .about-page .timeline__description {
    font-size: 18px;
    max-width: 300px;
  }
}

@media screen and (min-width: 2400px) {
  .about-page .about-content {
    max-width: 1900px;
  }
  .about-page .about-paragraph {
    font-size: 22px;
    line-height: 40px;
  }
  .about-page .mission-vision {
    max-width: 1900px;
  }
  .about-page .mission-vision__title {
    font-size: 90px;
  }
  .about-page .mission-vision__box {
    width: 540px;
    height: 400px;
  }
  .about-page .mission-vision__caption {
    font-size: 32px;
    line-height: 38px;
  }
  .about-page .mission-vision__text {
    font-size: 26px;
    line-height: 40px;
  }
  .about-page .timeline {
    max-width: 1900px;
  }
  .about-page .timeline__title {
    font-size: 90px;
  }
  .about-page .timeline__container {
    max-width: 1600px;
    height: 1050px;
  }
  .about-page .timeline__year {
    font-size: 32px;
    padding: 14px 30px;
  }
  .about-page .timeline__description {
    font-size: 20px;
    max-width: 340px;
  }
}

/* Extra Ultra Large screens 2800px+ */
@media screen and (min-width: 2800px) {
  .about-page .about-content {
    max-width: 2400px;
  }
  .about-page .about-paragraph {
    font-size: 28px;
    line-height: 48px;
  }
  .about-page .mission-vision {
    max-width: 2400px;
    padding: 100px 60px;
  }
  .about-page .mission-vision__title {
    font-size: 110px;
    margin-bottom: 80px;
  }
  .about-page .mission-vision__container {
    gap: 80px;
  }
  .about-page .mission-vision__box {
    width: 680px;
    height: 500px;
    border-radius: 24px;
  }
  .about-page .mission-vision__caption {
    font-size: 40px;
    line-height: 48px;
  }
  .about-page .mission-vision__text {
    font-size: 32px;
    line-height: 50px;
  }
  .about-page .timeline {
    max-width: 2400px;
    padding: 100px 60px;
  }
  .about-page .timeline__title {
    font-size: 110px;
    margin-bottom: 80px;
  }
  .about-page .timeline__container {
    max-width: 2000px;
    height: 1300px;
  }
  .about-page .timeline__year {
    font-size: 40px;
    padding: 18px 38px;
  }
  .about-page .timeline__description {
    font-size: 26px;
    max-width: 420px;
    line-height: 1.6;
  }
}

/* Enhanced Mobile Responsive Design */

/* Tablets and small laptops */
@media screen and (max-width: 1200px) {
  .about-content {
    margin: 20px auto;
    padding: 0 15px;
  }
  
  .about-paragraph {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
  }
  
  .mission-vision {
    margin: 60px auto;
    padding: 0 15px;
  }
  
  .mission-vision__title {
    font-size: clamp(36px, 5vw, 50px);
    margin-bottom: 30px;
  }
  
  .mission-vision__box {
    width: 280px;
    height: 280px;
  }
  
  .mission-vision__text {
    font-size: clamp(16px, 2.5vw, 18px);
  }
}

/* Tablets */
@media screen and (max-width: 992px) {
  .about-content {
    margin: 15px auto;
    padding: 0 12px;
  }
  
  .mission-vision {
    margin: 50px auto;
  }
  
  .mission-vision__container {
    flex-direction: column;
    gap: 30px;
  }
  
  .mission-vision__box {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  
  .mission-vision__text {
    max-width: 100%;
    text-align: center;
  }
}

/* Small tablets and large phones */
@media screen and (max-width: 768px) {
  .about-content {
    margin: 10px auto;
    padding: 0 10px;
  }
  
  .about-paragraph {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.5;
    text-align: left;
  }
  
  .mission-vision {
    margin: 40px auto;
    padding: 0 10px;
  }
  
  .mission-vision__title {
    font-size: clamp(28px, 6vw, 36px);
    margin-bottom: 25px;
  }
  
  .mission-vision__box {
    width: 220px;
    height: 220px;
  }
  
  .mission-vision__box img {
    width: 180px;
    height: 180px;
  }
  
  .mission-vision__text {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.4;
  }
}

/* Mobile devices */
@media screen and (max-width: 576px) {
  .about-content {
    margin: 8px auto;
    padding: 0 8px;
  }
  
  .about-paragraph {
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .mission-vision {
    margin: 30px auto;
    padding: 0 8px;
  }
  
  .mission-vision__title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 20px;
    text-align: center;
  }
  
  .mission-vision__container {
    gap: 20px;
  }
  
  .mission-vision__box {
    width: 180px;
    height: 180px;
  }
  
  .mission-vision__box img {
    width: 140px;
    height: 140px;
  }
  
  .mission-vision__text {
    font-size: clamp(12px, 4vw, 14px);
    line-height: 1.3;
    padding: 0 5px;
  }
}

/* Very small mobile devices */
@media screen and (max-width: 400px) {
  .about-content {
    margin: 5px auto;
    padding: 0 5px;
  }
  
  .about-paragraph {
    font-size: clamp(11px, 4vw, 13px);
    line-height: 1.3;
    margin-bottom: 12px;
  }
  
  .mission-vision {
    margin: 25px auto;
    padding: 0 5px;
  }
  
  .mission-vision__title {
    font-size: clamp(20px, 8vw, 28px);
    margin-bottom: 15px;
  }
  
  .mission-vision__box {
    width: 160px;
    height: 160px;
  }
  
  .mission-vision__box img {
    width: 120px;
    height: 120px;
  }
  
  .mission-vision__text {
    font-size: clamp(11px, 4.5vw, 13px);
    line-height: 1.2;
  }
}
