.about-section {
  overflow: hidden;
}
.about-section .pl-40{
    padding-left: 40px;
}
/* IMAGE WRAPPER */
.image-wrapper {
  position: relative;
  animation: fadeInLeft 1s ease forwards;
}

.main-img {
  border-radius: 200px 200px 20px 20px;
  object-fit: cover;
  width: 100%;
}

/* FLOATING BADGE */
.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  font-weight: 500;
  color: #198754;
  animation: float 3s ease-in-out infinite;
}

.floating-badge i {
  margin-right: 6px;
}

/* QUOTE CARD */
.quote-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #ffffff;
    padding: 20px;
    width: 47%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeUp 1.2s ease forwards;
    font-size: 14px;
}

.quote-card i{
    font-size: 28px;
    color: #053668;
    float: left;
    margin-right: 15px;
}

/* RIGHT CONTENT */
.sub-title {
  color: #ee5f17;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 14px;
}

.main-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 15px;
  animation: fadeInRight 1s ease forwards;
}

.main-title span {
  color: #053668;
}

.description {
  margin-top: 20px;
  color: #6c757d;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.feature-list li {
  margin-bottom: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.feature-list li i {
  color: #ee5f17;
  margin-right: 8px;
}

.feature-list li:hover {
  transform: translateX(8px);
  color: #ee5f17;
}

/* BUTTON */
.btn-custom {
  background: #053668;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #ee5f17;
  transform: translateY(-3px);
  color: #fff;
}

/* ANIMATIONS */
@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-60px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(60px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes float {
  0% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
  100% {transform: translateY(0);}
}

/* RESPONSIVE */
@media(max-width:991px){
  .main-title{
    font-size:28px;
  }

  .quote-card{
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.why-section {
  position: relative;
  overflow: hidden;
}

/* SUBTITLE */
.sub-title {
  color: #053668;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

/* TITLE */
.section-title {
  font-size: 38px;
  font-weight: 700;
  margin-top: 10px;
  animation: fadeInUp 1s ease forwards;
}

.section-title span {
  color: #053668;
}

/* DESCRIPTION */
.section-desc {
  color: #6c757d;
  margin-top: 15px;
  max-width: 500px;
}

/* FEATURE BOX */
.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateX(6px);
}

/* ICON CIRCLE */
.icon-circle {
  width: 55px;
  height: 55px;
  background: #053668;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(13,110,253,0.3);
  transition: 0.3s;
}

.feature-box:hover .icon-circle {
  transform: scale(1.1);
}

/* IMAGE SIDE */
.image-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  animation: fadeInRight 1.2s ease forwards;
}

.image-card img {
  border-radius: 25px;
}

/* BACKGROUND SHAPE */
.image-bg-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 250px;
  height: 100%;
  background: #f05e0e;
  border-radius: 30px;
  z-index: -1;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(60px);}
  to {opacity: 1; transform: translateX(0);}
}

/* RESPONSIVE */
@media(max-width:991px){
  .section-title {
    font-size: 28px;
  }

  .image-bg-shape {
    display: none;
  }
}