@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.banner {
  position: relative;
  width: 100%;
  height: 400px;
  /* Replace the URL below with your clean background image path */
  background: url('../images/banner-adorn.jfif') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: #ffffff;
}

.banner-content {
  max-width: 450px;
  z-index: 2;
}

.banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.banner-title span {
  color: #c48a4c;
  /* Gold/brown accent color */
}

.divider {
  width: 35px;
  height: 3px;
  background-color: #c48a4c;
  margin: 12px 0 18px 0;
}

.banner-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: #e0e0e0;
  line-height: 1.4;
  margin-bottom: 25px;
}

.breadcrumb {
  font-size: 0.85rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a {
  color: #c48a4c;
  text-decoration: none;
}

.breadcrumb span {
  color: #ffffff;
}

.breadcrumb .separator {
  color: #888888;
  font-size: 0.75rem;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .banner {
    height: 220px;
    padding: 0 4%;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle {
    font-size: 0.85rem;
  }
}

.about-section {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Left Image Container with Scale Effect */
.image-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 350px;
}

/* Image Scale Animation on Hover */
.image-container:hover img {
  transform: scale(1.05);
}

/* Right Content Details */
.content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sub-heading {
  color: #b07238;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.main-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 20px;
}

.main-heading span {
  color: #b07238;
}

.description {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 5px;
  font-weight: 400;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  position: relative;
}

.feature-item {
  text-align: center;
  padding: 10px 5px;
  position: relative;
  transition: transform 0.3s ease;
}

/* Scale Animation on Feature Hover */
.feature-item:hover {
  transform: scale(1.1);
}

/* Divider between feature columns */
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #e5e5e5;
}

.feature-icon {
  font-size: 2.2rem;
  color: #b07238;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.3;
}

/* --- Responsive Breakpoints --- */

/* Tablet View */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .main-heading {
    font-size: 1.8rem;
  }
}

/* Mobile View */
@media (max-width: 600px) {
  .about-section {
    padding: 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-item:not(:last-child)::after {
    display: none;
    /* Hide vertical dividers on mobile grid */
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.9rem;
  }
}

/* --- Main Outer Wrapper (FIXED: Added margin: 0 auto for centering) --- */
.values-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* Centers the whole container on the page */
  padding: 0 20px;
  /* Optional side padding so it doesn't touch screen edges on small monitors */
}

/* --- Container Box --- */
.values-card-container {
  background-color: #f6f3ee;
  border-radius: 12px;
  padding: 35px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* --- Individual Item Box & Hover Scale Animation --- */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px 15px;
  position: relative;
  /* Smooth Scale Transition */
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  border-radius: 8px;
}

/* Hover Transform Scale Effect */
.value-item:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* --- Vertical Divider Lines between Cards --- */
.value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #e2ddd4;
}

/* --- Icon Styles --- */
.icon-box {
  flex-shrink: 0;
}

.icon-box i {
  font-size: 2.2rem;
  color: #a36f37;
  /* Theme gold-brown accent color */
  transition: transform 0.3s ease;
}

.value-item:hover .icon-box i {
  transform: scale(1.1);
  /* Extra subtle scale on the icon itself */
}

/* --- Text Styles --- */
.text-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.text-content p {
  font-size: 0.82rem;
  color: #555555;
  line-height: 1.6;
}

/* --- Values Bullet List --- */
.values-list {
  list-style: disc;
  padding-left: 16px;
}

.values-list li {
  font-size: 0.82rem;
  color: #555555;
  margin-bottom: 4px;
  line-height: 1.4;
}

/* --- Mobile & Tablet Responsiveness --- */

/* Tablet (2 Columns) */
@media (max-width: 992px) {
  .values-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .value-item:not(:last-child)::after {
    display: none;
    /* Remove dividers for multi-row layout */
  }
}

/* Mobile (1 Column Stacked) */
@media (max-width: 600px) {
  .values-card-container {
    grid-template-columns: 1fr;
    padding: 25px 15px;
  }
}

.journey-wrapper {
  width: 100%;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

.journey-container {
  /* Linear gradient overlay on top of the background image */
  background: linear-gradient(rgba(27, 20, 15, 0.85),
      rgba(27, 20, 15, 0.85)),
    url('../images/banner.png') no-repeat center center / cover;

  /* border-radius: 16px; */
  padding: 40px 30px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  text-align: center;

  /* Ensure text inside stays bright white and readable on dark background */
  color: #ffffff;
}

/* --- Section Heading --- */
.journey-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}

.journey-title span {
  color: #a36f37;
  /* Warm Gold/Brown Accent */
}

/* --- Timeline Grid Layout --- */
.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  align-items: start;
}

/* --- Horizontal Connecting Line --- */
.timeline-line {
  position: absolute;
  top: 35px;
  /* Centers with icon-circle height (70px / 2) */
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed #bba182;
  z-index: 1;
}

/* --- Individual Timeline Items & Scale Hover Animation --- */
.timeline-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

/* Main Item Hover Scale Effect */
.timeline-item:hover {
  transform: scale(1.08);
}

/* --- Icon Circle Node --- */
.icon-circle {
  width: 70px;
  height: 70px;
  background-color: #f6f3ee;
  border: 2px solid #a36f37;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.icon-circle i {
  font-size: 1.8rem;
  color: #a36f37;
  transition: transform 0.3s ease;
}

/* Extra Icon Pop Effect on Hover */
.timeline-item:hover .icon-circle {
  background-color: #a36f37;
  box-shadow: 0 6px 15px rgba(163, 111, 55, 0.25);
}

.timeline-item:hover .icon-circle i {
  color: #ffffff;
  transform: scale(1.15);
}

/* --- Year & Description Typography --- */
.year {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b59b7d;
  margin-bottom: 8px;
}

.text-description {
  font-size: 0.85rem;
  color: #cbcbcb;
  line-height: 1.4;
  font-weight: 400;
}

/* --- Mobile & Tablet Responsiveness --- */

/* Tablet View (3-2 Columns Grid or Vertical Stack) */
@media (max-width: 992px) {
  .journey-container {
    padding: 30px 20px;
  }

  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .timeline-line {
    display: none;
    /* Hide desktop horizontal line */
  }
}

/* Mobile View (Vertical Timeline Layout) */
@media (max-width: 600px) {
  .journey-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
    padding-left: 20px;
  }

  /* Vertical Connecting Line for Mobile */
  .timeline-line {
    display: block;
    top: 10px;
    bottom: 10px;
    left: 45px;
    right: auto;
    width: 2px;
    height: calc(100% - 20px);
    border-top: none;
    border-left: 2px dashed #bba182;
  }

  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .icon-circle i {
    font-size: 1.3rem;
  }

  .year {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .text-description {
    font-size: 0.8rem;
  }
}

/* --- Outer Wrapper for Alignment & Centering --- */
.commitment-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Main Card Box --- */
.commitment-card {
  background-color: #f6f3ee;
  /* Requested background color without image */
  border-radius: 16px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid #e8e2d8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;

  /* Smooth Scale Transition on Container */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

/* Container Scale Hover Animation */
.commitment-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* --- Columns Layout --- */
.commitment-col {
  flex: 1;
}

.cta-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- Vertical Divider Line --- */
.column-divider {
  width: 1px;
  height: 120px;
  background-color: #dcd4c7;
  flex-shrink: 0;
}

/* --- Typography --- */
.card-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2b1f17;
  /* Warm dark brown text for strong contrast */
  line-height: 1.3;
  margin-bottom: 16px;
}

.card-text {
  font-size: 0.95rem;
  color: #52473f;
  line-height: 1.7;
  font-weight: 400;
}

.card-subtext {
  font-size: 0.95rem;
  color: #52473f;
  margin-bottom: 24px;
}

/* --- CTA Button & Hover Animations --- */
.btn-cta {
  display: inline-block;
  background-color: #a36f37;
  /* Theme gold-brown accent */
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(163, 111, 55, 0.2);

  /* Button Hover Scale Transition */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Button Scale & Color Hover Effect */
.btn-cta:hover {
  transform: scale(1.08);
  background-color: #8c5d2b;
  box-shadow: 0 6px 18px rgba(163, 111, 55, 0.35);
}

/* --- Responsive Layout Breakpoints --- */

/* Tablet View */
@media (max-width: 992px) {
  .commitment-card {
    padding: 40px 30px;
    gap: 30px;
  }

  .card-heading {
    font-size: 1.5rem;
  }

  .card-text,
  .card-subtext {
    font-size: 0.88rem;
  }
}

/* Mobile View (Stacked Vertical Layout) */
@media (max-width: 768px) {
  .commitment-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 25px;
    gap: 30px;
  }

  .column-divider {
    width: 100%;
    height: 1px;
    /* Converts vertical divider into a horizontal separator */
  }

  .card-heading {
    font-size: 1.4rem;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}