/* ================================
PREMIUM ABOUT SECTION
================================ */

.about-premium{
padding:30px 0;
background:#f8fafc;
position:relative;
overflow:hidden;
}

/* floating shapes */

.about-premium::before{
content:"";
position:absolute;
width:300px;
height:300px;
background:rgba(14,165,164,0.10);
border-radius:50%;
top:-120px;
left:-120px;
}

.about-premium::after{
content:"";
position:absolute;
width:200px;
height:200px;
background:rgba(59,130,246,0.10);
border-radius:50%;
bottom:-80px;
right:-80px;
}


/* HEADER */

.about-header{
text-align:center;
max-width:700px;
margin:auto;
margin-bottom:50px;
}

.about-subtitle{
color:#0ea5a4;
font-weight:600;
letter-spacing:1px;
font-size:14px;
}

.about-header h2{
font-size:40px;
font-weight:700;
color:#1f2937;
margin:12px 0;
}

.about-header p{
color:#6b7280;
line-height:1.7;
}


/* COUNTERS */

.about-counters{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-bottom:50px;
}

.counter-card{
background:#ffffff;
border-radius:14px;
padding:25px;
text-align:center;
border:1px solid #e5e7eb;
transition:0.3s;
}
.pcounter::after{
	content: "+";
}
.percounter::after{
	content: "%";
}

.counter-card:hover{
transform:translateY(-5px);
box-shadow:0 20px 35px rgba(0,0,0,0.08);
}

.counter-card h3{
font-size:34px;
color:#0ea5a4;
margin-bottom:6px;
}

.counter-card p{
font-size:14px;
color:#6b7280;
}


/* INFO CARDS */

.about-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.about-card{
background:#ffffff;
border-radius:16px;
padding:30px;
border:1px solid #e5e7eb;
transition:0.3s;
}

.about-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.about-card i{
font-size:26px;
color:#0ea5a4;
margin-bottom:12px;
}

.about-card h3{
font-size:18px;
margin-bottom:10px;
color:#1f2937;
}

.about-card p{
font-size:14px;
color:#6b7280;
line-height:1.7;
}


/* CTA */

.about-cta{
text-align:center;
margin-top:50px;
}

.about-btn{
background:#ef4444;
color:#fff;
padding:14px 36px;
border-radius:8px;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

.about-btn:hover{
background:#dc2626;
}

.cta-call-btn{
display:inline-block;
padding:14px 34px;
border-radius:8px;
border:2px solid #facc15;
color:#facc15;
font-weight:600;
text-decoration:none;
transition:0.3s ease;
}

.cta-call-btn:hover{
background:#facc15;
color:#0f172a;
}
.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

/* RESPONSIVE */

@media(max-width:992px){

.about-counters{
grid-template-columns:repeat(2,1fr);
}

.about-cards{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.about-counters{
grid-template-columns:1fr;
}

.about-cards{
grid-template-columns:1fr;
}

.about-header h2{
font-size:30px;
}

}
@media(max-width:992px){

.about-counters{
grid-template-columns:repeat(2,1fr);
}

.about-cards{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.about-counters{
grid-template-columns:1fr;
}

.about-cards{
grid-template-columns:1fr;
}

.about-header h2{
font-size:28px;
}

}