
/* SECTION */
.about-section {
    padding: 130px 0 70px;
}

/* ROW */
.about-row{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

/* COLUMN */
.about-col{
    width:50%;
}

/* LEFT */
.about-img-box{
    position:relative;
}

.about-img-box img{
    width:100%;
    border-radius:20px;
}

/* BADGE */
.about-badge{
    position:absolute;
    top:-30px;
    left:-30px;
    background:var(--color-2);
    color:#000;
    padding:20px;
    border-radius:50%;
    font-size:14px;
}

/* CARD */
.about-card {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: #fff;
	padding: 20px;
	border-radius: 15px;
	width: 340px;
}

.about-card h4 {
	margin-bottom: 10px;
	font-size: 22px;
	color: var(--color-1);
	font-weight: 600;
}
.signature svg {
	width: 120px;
	height: 82px;
}
.signature{
    font-family:cursive;
    color:var(--color-1);
}

/* RIGHT */
.about-content{
    padding:10px;
}

.about-subtitle {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--color-1);
    display: inline;
    margin-bottom: 10px !important;
    position: relative;
    padding-left: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.about-title {
    font-size: 37px;
    margin-bottom: 15px;
    color: var(--color-1);
    font-weight: 600;
}
.about-subtitle::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f102";
    font-size: 13px;
    left: 0;
    top: 3px;
    position: absolute;
    width: 15px;
    height: 15px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 4;
}

.about-desc{
    font-family: var(--font-01);
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* PROGRESS */
.progress-item{
    margin-bottom:20px;
}

.progress-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:5px;
    font-size:14px;
}

.progress-bar{
    height:6px;
    background:#ddd;
    border-radius:10px;
}

.progress-fill{
    height:100%;
    background:var(--color-1);
    border-radius:10px;
}

/* BUTTON */
.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--color-2);
    color:#000;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
}

.arrow{
    background:#000;
    color:#fff;
    padding:5px 10px;
    border-radius:50%;
}
.badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: -80px;
}

/* MAIN BOX */
.badge-box{
    position:relative;
    width:170px;
    height:170px;
}

/* ROTATING IMAGE */
.badge-rotate{
    width:100%;
    height:100%;
    animation:spinBadge 10s linear infinite;
}

/* CENTER IMAGE */
.badge-center{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    object-fit:contain;
}

/* ANIMATION */
@keyframes spinBadge{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/* RESPONSIVE */
@media(max-width:991px){
    .about-col{
        width:100%;
    }
}




.about-cta-section{
    background: var(--color-1);
    padding: 30px 0;
    font-family: var(--font-01);
}

/* WRAPPER */
.about-cta-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

/* LEFT */
.about-cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 46%;
}

.about-cta-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.about-cta-text h3{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin:0;
    line-height:1.4;
}

/* CENTER */
.about-cta-center {
    max-width: 30%;
}

.about-cta-center p{
    color:#cbd5e1;
    margin:0;
    font-size:15px;
    line-height:1.6;
}

/* RIGHT BUTTON */
.about-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    background:#d9ff4f;
    color:#000;
    padding:12px 25px;
    border-radius:40px;
    text-decoration:none;
    font-weight:500;
}

.about-cta-icon{
    background:#000;
    color:#fff;
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:1198.98px){
    .about-cta-wrapper {
    gap: 15px;
}
}
@media(max-width:991px){
    .about-cta-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .about-cta-center{
        max-width:100%;
    }
    .about-cta-left {
    gap: 10px;
    width: 45%;
}
.about-inner .row {
    row-gap: 20px;
}
}
@media(max-width:767.98px){
    .about-title {
    font-size: 28px;
    line-height: 1.1;
}
.about-cta-left {
    gap: 10px;
    width: 100%;
}
.about-section {
    padding: 110px 0 40px;
}
}