.about-section {
  background-color: #000000;
  color: #ffffff;
  padding-top: 13rem;
  padding-bottom: 5rem;

  display: flex;
  align-items: center;
}

/* Left Side Styles */
.main-heading {
  font-size: 79px; /* Very large text */
  font-weight: 500; /* Bold but not too heavy */
  letter-spacing: -2px; /* Tight kerning like the design */
  line-height: 76px;
  margin-bottom: 20px;
}

.btn-custom {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 6px 18px;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50px; /* Pill shape */
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Right Side Styles */
.sub-heading {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.description {
  color: #b3b3b3; /* Light grey text */
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0;
}

.right-content-wrapper {
  max-width: 400px;
}

/* The horizontal lines */
.custom-hr {
  border: 0;
  height: 1px;
  background-color: #333333; /* Very faint grey line */
  opacity: 1;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .section-desc{
    margin-bottom: 1rem !important;
  }

  .main-heading {    font-size: 3.5rem;
    margin-bottom: 30px;
  }

  .right-content {
    margin-top: 50px; /* Spacing between columns on mobile */
  }

 

}

.first-paralax-wrapper-container,
.bottom-about-img-cont {
  height: 120vh;
  position: relative;
  overflow: hidden;
}

.first-paralax-wrapper-container img,
.bottom-about-img-cont img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160%;
  object-fit: cover;
}

/* --- Section Styling --- */
.engagement-section {
  background-color: #000000;
  color: #ffffff;
  padding: 27px 0;
  position: relative;
}

/* The Small White Dot on the left */
.white-dot {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  margin-top: 15px; /* Aligns with top of text approx */
}

/* Large Headline Text */
.headline-text {
  font-size: 3rem; /* Large size */
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px; /* Tight tracking */
  color: #e6e6e6; /* Soft white */
  margin-bottom: 40px;
}

.headline-text span {
  color: #b3b3b3; /* Slightly darker grey variation if needed, or keep same */
}

/* Small description text */
.sub-description {
  color: #888888; /* Muted grey */
  font-size: 1rem;
  line-height: 1.5;
  max-width: 450px;
  margin-bottom: 60px;
}

/* --- Image Cards --- */
.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  background-size: cover;
  background-position: center;
}

.image-card h3{
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
}
.image-card p{
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

/* Using placeholder images that match the orange/warm vibe */
.img-1 {
  background-image: url("https://framerusercontent.com/images/waFyFgx77gktL7VSSpdAUe30T8.jpg?scale-down-to=1024&width=736&height=1104");
}
.img-2 {
  background-image: url("https://framerusercontent.com/images/3CJeskCAAhJ1x5v39s0xk1d07g.jpg?width=736&height=981");
}
.img-3 {
  background-image: url("https://framerusercontent.com/images/h2If3FDbZPbDmOQEPIDIHJsolQU.jpg?width=736&height=981");
}
.img-4 {
  background-image: url("https://framerusercontent.com/images/Tz05Y2pMLa77LwO7baenE4rgw.jpg?scale-down-to=1024&width=800&height=1200");
}

/* The Plus Icon Overlay */
.plus-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  opacity: 0.8;
  pointer-events: none;
}

/* --- Responsive Tweaks --- */
@media (max-width: 992px) {
  .headline-text {
    font-size: 2.2rem;
  }
  .white-dot {
    display: none; /* Hide dot on tablets/mobile to save space */
  }
  .spacer-col {
    display: none;
  }
}

@media (max-width: 768px) {
  .engagement-section {
    padding: 50px 0;
  }
  .image-card {
    margin-bottom: 20px; /* Space between stacked images */
  }
}

.growth-section {
  background-color: #000000;
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

/* --- Left Column (Awards Label) --- */
.label-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px; /* Space on mobile */
}

.grey-dot {
  width: 10px;
  height: 10px;
  background-color: #444; /* Dark grey dot */
  border-radius: 50%;
  display: inline-block;
}

.label-text {
  color: #333; /* Very dark grey text "Awards" */
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: capitalize;
}

/* --- Right Column (Headlines) --- */
.main-headline {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #e6e6e6;
  margin-bottom: 30px;
}

.section-desc {
  color: #888;
  font-size: 15px;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 60px;
}

/* --- Stats Cards --- */
.stat-card {
  background-color: #ffffff;
  color: #000000;
  border-radius: 16px;
  padding: 18px;
  height: 450px; /* Fixed tall height to match design */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px); /* Subtle lift effect */
}

.card-dots {
  font-size: 15px;
  line-height: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-footer {
  color: rgb(163, 163, 163); /* Grey description text */
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  border-top: 1px solid transparent; /* Keeps spacing consistent */
}

/* Specific typography tweak for the "2x" */
.times-symbol {
  font-weight: 400; /* Make the 'x' slightly lighter/smaller if needed */
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .main-headline {
    font-size: 2.5rem;
  }
  .label-group {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .growth-section {
    padding: 0px 0;
  }
  .stat-card {
    height: 350px; /* Slightly shorter on mobile */
    margin-bottom: 20px;
  }
  .stat-number {
    font-size: 3.5rem;
  }
}

.about-bottom-wrapper{
    position: relative;
}

.about-bottom-content,.about-overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: end;
}

.about-overlay {
  filter: blur(5px);
  -webkit-filter: blur(64px);
    background: linear-gradient(rgb(0 0 0 / 40%), rgb(0 0 0 / 40%));
}

.about-bottom-content h5{
        font-size: 33px;
        font-weight: 600;
}

.bottom-about-img-cont {
  position: relative;
  height: 120vh;
}

.bottom-points{
    color: rgb(163, 163, 163);
    font-family: 15px;    
}

.about-bottom-title{
    color: #ff3300;
    font-size: 15px;
}


@media (max-width: 575.98px) { 

    .middle-content {
    padding-top: 65px;
    padding-bottom: 65px;
}

 .footer-bottom-wrapper p {
    font-size: 58px;
}

 }