.about-section {
  width: 100%;
  height: 320px;
  background-image: url("../aboutimg/financial-business.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -50px;            
  left: 0px;
}

/* Dark overlay */
/* .about-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.45)
  );
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* .about-title {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
} */


/* .about-section {
  position: relative;
}

.about-title {
  position: absolute;
  top: 40px;
  left: 60px;
  color: #e0eae6;
  align-items: center;
  justify-content: center;
} */


.about-section {
  position: relative;
}

.about-title {
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
}


.welcome-section {
  padding: 80px 20px;
  background: #ffff;
}

.welcome-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  align-items: center;
  position: relative;
  grid-template-columns: 1fr 1fr;
}

/* IMAGE */
.welcome-image {
  position: relative;
  width: 100%;
}

.welcome-image img {
  width: 100%;
  border-radius: 5px;
}

/* VIDEO BADGE */
.watch-video {
  position: absolute;
  bottom: -18px;
  left: -25px;
  background: #fff;
  padding: 32px 31px 29px 26px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.watch-video img {
  width: 34px;
}
.watch-video div {
    display: flex;
    flex-direction: column;
}

.watch-video div small {
    font-size: 10px;
    font-weight: 400;
}

.watch-video div strong {
    font-size: 24px;
}
 

.welcome-card {
  /* width: 48%; */
  background: #fff;
  padding: 28px;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  position: relative;
  margin-left: -90px;
  z-index: 2;
}

.welcome-tag {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 1px;
}

.welcome-card h2 {
  font-size: 24px;
  margin: 9px 0 22px;
  /* line-height: 1.3; */
  font-weight: 900!important;
}

.welcome-card p {
  font-size: 16px;
  /* line-height: 1.7; */
  color: #000000;
}

.btn-read {
  display: inline-block;
  margin-top: 20px;
  background: #ff5722;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

/* STATS */
.welcome-stats {
  display: flex;
  gap: 40px;
  padding: 30px;
}

.welcome-stats h3 {
  font-size: 32px;
  text-align: center;
}
.welcome-stats p {
    color: #393B3C;
    font-size: 20px;
}

.why-choose-us {
  padding: 50px 20px;
  background: #F8F8F8;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.why-left h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.why-left p {
  font-size: 18px;
  line-height: 1.2;
  color: #393B3C;
}

/* RIGHT GRID */
.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 16px 35px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}


.why-icon {
  width: 33px;
  height: 33px;
  margin-bottom: 11px;
  background: #032A5633;
  border-radius: 100px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.why-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  margin: 0;
}

/* TEXT */
.why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  /* line-height: 1.6; */
  color: #393B3C;
}


.apart-section {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
}

.apart-title {
  font-size: 34px;
  margin-bottom: 60px;
}

/* CARDS GRID */
.apart-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.apart-card {
  /* background: #f7f8fc; */
  padding: 75px 35px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s ease;
  min-height: 280px;
}
.apart-card span.num {
    font-size: 40px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: #071440;
}

.apart-card span.num:before {
    content: "";
    width: 62px;
    height: 62px;
    display: block;
    position: absolute;
    border-radius: 100px;
    z-index: -1;
    top: -6px;
    left: 17px;
}

.apart-card span.num.color1:before {
    background: #4d46c77a;
}
.apart-card span.num.color2:before {
    background: #ee2a5238;
}
.apart-card span.num.color3:before {
    background: #fab33f54;
}
.apart-card.active {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-10px);
}

.apart-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* NUMBER IMAGE */
.apart-number {
  width: 54px;
  margin-bottom: 20px;
}

/* TEXT */
.apart-card h3 {
  font-size: 24px;
  margin-bottom: 43px;
  margin-top: 40px;
}

.apart-card p {
  font-size: 15px;
  /* line-height: 1.7; */
  color: #676767;
  margin-bottom: 43px;
}

.apart-card a {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
}


.cta-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #1f4d42, #1b3f36);
  margin-bottom: 50px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  /* padding: 35px 40px; */
  /* background: #214f44; */
  /* border-radius: 10px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* TEXT */
.cta-text h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
}

.cta-text p {
  color: #e0eae6;
  font-size: 20px;
  /* line-height: 1.6; */
  max-width: 600px;
}



.cta-btn-wrapper {
  background: transparent;  
  padding: 0;
}


.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #ff5722;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: 0px solid #ff5722;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ff5722;
  color: #fff;
}

