* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin-top: 70px;
  overflow-x: hidden;
  font-family: "Segoe UI", sans-serif;
  background: #ffffff;
}
.hero {
  display: flex;
  align-items: stretch;
  height: 360px;
  background: #eef5fd;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a8aaa;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: #7a8aaa;
  text-decoration: none;
}
.breadcrumb .sep {
  color: #c0cad8;
}
.breadcrumb .current {
  color: #c0954a;
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: #0d2a6e;
  line-height: 1.1;
  margin-bottom: 14px;
}

.rule {
  width: 48px;
  height: 3px;
  background: #c0954a;
  border-radius: 2px;
  margin-bottom: 16px;
}

p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5568;
  max-width: 460px;
}

.hero-right {
  width: 45%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(30%) brightness(1.1);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 20%);
  mask-image: linear-gradient(to right, transparent 0%, white 20%);
}

.about-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side */

.about-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

/* Right Side */

.about-content {
  padding-right: 20px;
}

.small-title {
  color: #17346b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.title-line {
  width: 50px;
  height: 2px;
  background: #d7a348;
  margin: 10px 0 20px;
}

.about-content h2 {
  font-size: 52px;
  line-height: 1.2;
  color: #17346b;
  font-family: Georgia, serif;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 15px;
  color: #5c677d;
  line-height: 1.3;
  margin-bottom: 7px;
}

/* Info Grid */

.info-grid {
  margin-top: 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-item i {
  font-size: 28px;
  color: #17346b;
  width: 30px;
  margin-top: 2px;
}

.info-item h4 {
  color: #17346b;
  font-size: 18px;
  margin-bottom: 2px;
  font-weight: 700;
}

.info-item span {
  color: #5c677d;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content h2 {
    font-size: 38px;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(250px, 320px));
    justify-content: center;
    gap: 25px;
  }

  .info-item {
    justify-content: flex-start;
  }
}

.philosophy-card {
  background: #f4f8fd;
  max-width: 1400px;
  border-radius: 8px;
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 40px;

  /* Center the card */
  margin: 0 auto;
}

.value-item {
  border-left: 1px solid #dfe8f4;
  padding-left: 10px;
}

.value-item i {
  font-size: 32px;
  color: #17346b;
  margin-bottom: 15px;
}

.experience-section {
  padding: 50px 0;
  background: #ffffff;
}

.experience-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

/* Heading */

.section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.section-heading h2 {
  font-size: 22px;
  color: #17346b;
  font-family: Georgia, serif;
  font-weight: 700;
}

.section-heading span {
  width: 45px;
  height: 2px;
  background: #d7a348;
}

/* Timeline */

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #d8e0ee;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  margin-bottom: 35px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 8px;

  width: 12px;
  height: 12px;

  background: #17346b;
  border: 3px solid #ffffff;
  border-radius: 50%;

  box-shadow: 0 0 0 1px #17346b;
}

.year {
  color: #17346b;
  font-size: 15px;
  font-weight: 700;
}

.content h4 {
  color: #17346b;
  font-size: 16px;
  margin-bottom: 5px;
}

.content p {
  color: #5c677d;
  font-size: 14px;
  line-height: 1.7;
}

/* Cards */

.info-card {
  border: 1px solid #e2e8f3;
  border-radius: 8px;
  padding: 30px;
  background: #fff;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.card-title i {
  font-size: 24px;
  color: #17346b;
}

.card-title h3 {
  font-size: 16px;
  color: #17346b;
  font-weight: 700;
}

.info-card ul {
  padding-left: 20px;
}

.info-card li {
  margin-bottom: 14px;
  color: #4f5b73;
  line-height: 1.7;
  font-size: 14px;
}

/* Responsive */

@media (max-width: 1100px) {
  .experience-container {
    grid-template-columns: 1fr;
  }
}
.commitment-section {
  background: #f5f9fe;
  padding: 40px 0;
}

.commitment-container {
  max-width: 1400px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 40px;

  /* padding: 0 30px; */
}

/* Left Image */

.commitment-image {
  flex: 0 0 500px;
}

.commitment-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;

  border-radius: 6px;
  display: block;
}

/* Right Content */

.commitment-content {
  flex: 1;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;
}

.section-title h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #17346b;
  margin: 0;
}

.section-title span {
  width: 40px;
  height: 2px;
  background: #d7a348;
}

.commitment-content p {
  color: #4f5b73;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 12px;

  max-width: 520px;
}

/* Button */

.commitment-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #072f75;
  color: #fff;

  text-decoration: none;

  padding: 14px 26px;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 600;

  margin-top: 10px;

  transition: 0.3s;
}

.commitment-btn:hover {
  background: #0a3f99;
}

.commitment-btn i {
  font-size: 12px;
}

/* ====================================
   1400px & BELOW
==================================== */

@media (max-width: 1400px) {
  .about-container,
  .experience-container,
  .commitment-container {
    padding: 0 25px;
  }

  .philosophy-card {
    margin: 0 25px;
  }
}

/* ====================================
   1200px LAPTOP
==================================== */

@media (max-width: 1200px) {
  .about-content h2 {
    font-size: 42px;
  }

  .philosophy-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-box {
    grid-column: 1 / -1;
  }

  .commitment-image {
    flex: 0 0 420px;
  }
}

/* ====================================
   992px TABLET
==================================== */

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-container {
    grid-template-columns: 1fr;
  }

  .commitment-container {
    flex-direction: column;
  }

  .commitment-image {
    width: 100%;
    flex: auto;
  }

  .commitment-content {
    width: 100%;
  }

  .philosophy-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================================
   768px MOBILE
==================================== */

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    text-align: center;
  }

  .title-line {
    margin: 10px auto 20px;
  }

  .info-grid {
    grid-template-columns: minmax(280px, 380px);
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .info-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 15px;
    border: 1px solid #e5ebf5;
    border-radius: 8px;
    background: #fff;
  }
  .philosophy-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .value-item {
    border-left: none;
    border-top: 1px solid #dfe8f4;
    padding-left: 0;
    padding-top: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .year {
    margin-bottom: 5px;
  }

  .info-card {
    padding: 25px 20px;
  }

  .section-heading {
    flex-wrap: wrap;
  }

  .commitment-content {
    text-align: center;
  }

  .section-title {
    justify-content: center;
  }

  .commitment-content p {
    max-width: 100%;
  }
}

/* ====================================
   576px SMALL MOBILE
==================================== */

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 28px;
  }

  .small-title {
    font-size: 11px;
  }

  .info-item i {
    font-size: 22px;
  }

  .info-item h4 {
    font-size: 16px;
  }

  .info-item span {
    font-size: 14px;
  }
  .info-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 30px auto 0;
  }

  .info-item {
    width: 100%;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .card-title h3 {
    font-size: 15px;
  }

  .commitment-btn {
    width: 100%;
    justify-content: center;
  }

  .philosophy-card {
    margin: 0 15px;
  }
}

/* ====================================
   375px EXTRA SMALL
==================================== */

@media (max-width: 375px) {
  .about-content h2 {
    font-size: 24px;
  }

  .about-content p,
  .commitment-content p,
  .content p {
    font-size: 14px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-item::before {
    left: -17px;
  }

  .info-card {
    padding: 20px 15px;
  }

  .card-title {
    flex-direction: column;
    text-align: center;
  }
}
