/* CSS Styling */
.about-section {
padding: 100px 20px;
background: #fff;
position: relative;
overflow: hidden;
min-height: auto;
}

.container {
max-width: 100%;
margin: 0 auto;
padding: 0 auto;
display: flex;
align-items: center;
gap: 120px;
}

/* Image Frames */
.about-images {
position: relative;
width: 45%;
min-height: 400px;
}

.image-frame {
position: absolute;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-1 {
width: 70%;
top: 0;
left: 0;
transform: rotate(-5deg);
z-index: 1;
}

.image-2 {
width: 65%;
bottom: -20%;
right: 0;
transform: rotate(10deg);
z-index: 2;
}

.image-frame img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Circular Badge */
.quote-badge {
position: absolute;
top: 20%;
left: 37%;
width: 140px;
height: 140px;
background: white;
border-radius: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 0 0 19px rgba(0,0,0,0.06);
z-index: 3;

animation: spin 24s linear infinite;
}

@keyframes spin {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}

.badge-text {
font-size: 14px;
font-weight: 600;
color: #303246;
text-align: center;
line-height: 1.3;
padding: 0 15px;
}

.badge-arrow {
font-size: 24px;
margin-top: 5px;
color: #4a6cf7;
}

/* Content Block */
.about-content {
width: 50%;
}

.gradient-text {
background: linear-gradient(to right, #DB403F, #2954B7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
}

.custom-li::marker {
color: #DB403F; /* bullet color */
}

.custom-li {
color: black; /* text color */
}

/* Features */
.features {
display: flex;
flex-direction: column;
gap: 50px;
margin-bottom: 40px;
}

.feature-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-weight: 600;
color: #010535;
}

.feature-icon {
font-size: 24px;
width: 50px;
height: 50px;
color: #4a6cf7;
border-radius: 50%;
align-items: center;
justify-content: center;
}

.divider {
height: 0.5px;
opacity: 0.4;
border-color: #cfcfcf;
}

/* Experience CTA */
.experience-cta {
display: flex;
align-items: center;
gap: 20px;
margin-top: 30px;
}

.experience-number {
font-size: 5rem;
font-weight: 700;
background: linear-gradient(to right, #2954B7, #DB403F);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
line-height: 1;
}

.experience-text {
flex: 1;
font-weight: 600;
color: #010535;
}

.credentials {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 80px;
padding: 80px;
gap: 40px;
}

.credentials-description{
text-align: center;
}

.credentials-grid {
width: 100%;
display: flex;
justify-content: space-around;
box-sizing: border-box;
}

.credentials-grid img {
width: 80px;
height: 80px;
}

/* Responsive */
@media (max-width: 992px) {
.container {
    flex-direction: column;
}

.experience-cta {
    flex-direction: column;
}

.about-images, 
.about-content {
    width: 100%;
}

.quote-badge {
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
}

.credentials {
    padding: 20px;
}

.credentials-grid img {
    width: 60px;
    height: 60px;
}
}