/*=========================================
CPANEL HERO
=========================================*/
.cpanel-hero{
padding:90px 0;
background:linear-gradient(180deg,#f8fbff 0%,#ffffff 55%,#f8fbff 100%);
position:relative;
overflow:hidden;
}
.cpanel-hero::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle,#2563eb20 0%,transparent 70%);
top:-180px;
right:-120px;
border-radius:50%;
}
.cpanel-hero::after{
content:"";
position:absolute;
width:420px;
height:420px;
background:radial-gradient(circle,#60a5fa18 0%,transparent 70%);
bottom:-180px;
left:-120px;
border-radius:50%;
}
.hero-content{
position:relative;
z-index:2;
}
.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 18px;
background:#eef4ff;
color:#2563eb;
border:1px solid #cfe0ff;
border-radius:50px;
font-size:14px;
font-weight:700;
margin-bottom:25px;
}
.hero-badge i{
font-size:15px;
}
.hero-content h1{
font-size:58px;
font-weight:800;
line-height:1.1;
color:#0f172a;
margin-bottom:22px;
}
.hero-content h1 span{
background:linear-gradient(90deg,#2563eb,#3b82f6);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}
.hero-content p{
font-size:18px;
line-height:1.8;
color:#64748b;
margin-bottom:30px;
max-width:620px;
}
.hero-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
margin-bottom:35px;
}
.hero-features div{
display:flex;
align-items:center;
gap:12px;
font-size:16px;
font-weight:600;
color:#1e293b;
}
.hero-features i{
width:28px;
height:28px;
border-radius:50%;
background:#2563eb;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:12px;
flex-shrink:0;
box-shadow:0 8px 20px rgba(37,99,235,.25);
}
.hero-buttons{
display:flex;
gap:18px;
margin-bottom:35px;
flex-wrap:wrap;
}
.hero-btn-primary{
display:inline-flex;
align-items:center;
gap:12px;
padding:16px 30px;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
font-weight:700;
text-decoration:none;
border-radius:14px;
transition:.35s;
box-shadow:0 18px 35px rgba(37,99,235,.28);
}
.hero-btn-primary:hover{
transform:translateY(-4px);
box-shadow:0 24px 45px rgba(37,99,235,.35);
color:#fff;
}
.hero-btn-primary i{
transition:.35s;
}
.hero-btn-primary:hover i{
transform:translateX(5px);
}
.hero-btn-secondary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 30px;
border:2px solid #dbe7ff;
border-radius:14px;
background:#fff;
color:#2563eb;
font-weight:700;
text-decoration:none;
transition:.35s;
}
.hero-btn-secondary:hover{
background:#2563eb;
border-color:#2563eb;
color:#fff;
transform:translateY(-4px);
}
.hero-trust{
display:flex;
gap:18px;
flex-wrap:wrap;
}
.trust-box{
display:flex;
align-items:center;
gap:14px;
background:rgba(255,255,255,.8);
backdrop-filter:blur(16px);
padding:16px 18px;
border-radius:18px;
border:1px solid rgba(37,99,235,.12);
box-shadow:0 15px 35px rgba(15,23,42,.08);
}
.trust-box i{
width:50px;
height:50px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
font-size:18px;
}
.trust-box h5{
margin:0;
font-size:16px;
font-weight:700;
color:#0f172a;
}
.trust-box span{
font-size:13px;
color:#64748b;
}
.hero-image{
position:relative;
text-align:center;
z-index:2;
}
.hero-image img{
max-width:100%;
animation:heroFloat 5s ease-in-out infinite;
filter:drop-shadow(0 35px 60px rgba(37,99,235,.18));
}
.floating-card{
position:absolute;
display:flex;
align-items:center;
gap:12px;
background:rgba(255,255,255,.9);
backdrop-filter:blur(20px);
padding:14px 16px;
border-radius:16px;
border:1px solid rgba(37,99,235,.1);
box-shadow:0 18px 35px rgba(15,23,42,.08);
animation:floatCard 4s ease-in-out infinite;
}
.floating-card i{
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
border-radius:14px;
font-size:18px;
}
.floating-card h6{
margin:0;
font-size:15px;
font-weight:700;
color:#0f172a;
}
.floating-card span{
font-size:13px;
color:#64748b;
}
.speed{
top:8%;
left:-20px;
}
.ssl{
right:-10px;
top:45%;
animation-delay:1s;
}
.backup{
left:35px;
bottom:0;
animation-delay:2s;
}
@keyframes heroFloat{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-18px);}
}
@keyframes floatCard{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-10px);}
}
@media(max-width:991px){
.cpanel-hero{
padding:70px 0;
text-align:center;
}
.hero-content h1{
font-size:42px;
}
.hero-content p{
font-size:16px;
margin-left:auto;
margin-right:auto;
}
.hero-features{
grid-template-columns:1fr;
text-align:left;
}
.hero-buttons{
justify-content:center;
}
.hero-trust{
justify-content:center;
}
.hero-image{
margin-top:50px;
}
.speed{
top:5%;
left:0;
}
.ssl{
right:0;
top:42%;
}
.backup{
left:20px;
bottom:-10px;
}
}
@media(max-width:576px){
.cpanel-hero{
padding:60px 0;
}
.hero-content h1{
font-size:34px;
}
.hero-badge{
font-size:13px;
}
.hero-btn-primary,
.hero-btn-secondary{
width:100%;
justify-content:center;
}
.hero-trust{
flex-direction:column;
}
.trust-box{
width:100%;
}
.floating-card{
position:relative;
margin:15px auto 0;
left:auto;
right:auto;
top:auto;
bottom:auto;
width:85%;
}
.hero-image img{
margin-bottom:20px;
}
}

/*=========================================
CPANEL PLANS
=========================================*/
.cpanel-plans{
padding:100px 0;
background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
position:relative;
overflow:hidden;
}
.cpanel-plans::before{
content:"";
position:absolute;
width:550px;
height:550px;
background:radial-gradient(circle,#2563eb12 0%,transparent 70%);
top:-250px;
right:-180px;
border-radius:50%;
}
.section-title{
max-width:720px;
margin:0 auto 60px;
position:relative;
z-index:2;
}
.section-title span{
display:inline-block;
padding:10px 18px;
background:#eef4ff;
color:#2563eb;
font-size:14px;
font-weight:700;
border-radius:50px;
margin-bottom:18px;
}
.section-title h2{
font-size:46px;
font-weight:800;
color:#0f172a;
margin-bottom:15px;
}
.section-title p{
font-size:17px;
color:#64748b;
margin:0;
}
.billing-switch{
display:flex;
justify-content:center;
align-items:center;
gap:18px;
margin-bottom:60px;
flex-wrap:wrap;
}
.billing-label{
font-size:16px;
font-weight:700;
color:#64748b;
transition:.3s;
}
.billing-label.active{
color:#2563eb;
}
.billing-label small{
display:block;
font-size:11px;
color:#16a34a;
font-weight:700;
margin-top:3px;
}
.switch{
position:relative;
display:inline-block;
width:70px;
height:38px;
}
.switch input{
display:none;
}
.slider{
position:absolute;
inset:0;
background:#dbeafe;
border-radius:50px;
cursor:pointer;
transition:.35s;
}
.slider::before{
content:"";
position:absolute;
width:30px;
height:30px;
left:4px;
top:4px;
background:#2563eb;
border-radius:50%;
transition:.35s;
box-shadow:0 8px 20px rgba(37,99,235,.3);
}
.switch input:checked+.slider{
background:#bfdbfe;
}
.switch input:checked+.slider::before{
transform:translateX(32px);
}
.plan-card{
position:relative;
background:rgba(255,255,255,.9);
backdrop-filter:blur(18px);
border:1px solid #e5eefc;
border-radius:24px;
padding:35px 28px;
height:100%;
transition:.35s;
box-shadow:0 18px 40px rgba(15,23,42,.06);
overflow:hidden;
}
.plan-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#2563eb,#60a5fa);
transform:scaleX(0);
transition:.35s;
}
.plan-card:hover{
transform:translateY(-12px);
box-shadow:0 30px 60px rgba(37,99,235,.15);
border-color:#bfdbfe;
}
.plan-card:hover::before{
transform:scaleX(1);
}
.popular{
border:2px solid #2563eb;
transform:scale(1.03);
box-shadow:0 30px 70px rgba(37,99,235,.18);
}
.popular:hover{
transform:translateY(-12px) scale(1.03);
}
.popular-badge{
position:absolute;
top:18px;
right:-38px;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
font-size:12px;
font-weight:700;
padding:8px 45px;
transform:rotate(45deg);
box-shadow:0 10px 25px rgba(37,99,235,.3);
}
.plan-name{
font-size:26px;
font-weight:800;
color:#0f172a;
margin-bottom:18px;
}
.price{
display:flex;
align-items:flex-end;
margin-bottom:10px;
}
.currency{
font-size:26px;
font-weight:700;
margin-bottom:8px;
color:#2563eb;
}
.plan-price{
font-size:60px;
font-weight:800;
line-height:1;
color:#0f172a;
margin:0 4px;
}
.price small{
font-size:16px;
color:#64748b;
margin-bottom:10px;
}
.yearly-offer{
display:none;
background:#ecfdf5;
color:#15803d;
border:1px solid #bbf7d0;
padding:10px 14px;
border-radius:12px;
font-size:14px;
font-weight:700;
margin:18px 0 22px;
}
.plan-btn{
display:flex;
justify-content:center;
align-items:center;
width:100%;
padding:15px;
background:linear-gradient(135deg,#2563eb,#3b82f6);
border-radius:14px;
color:#fff;
font-weight:700;
text-decoration:none;
transition:.35s;
box-shadow:0 18px 35px rgba(37,99,235,.22);
margin-bottom:28px;
}
.plan-btn:hover{
color:#fff;
transform:translateY(-3px);
box-shadow:0 25px 45px rgba(37,99,235,.3);
}
.plan-card ul{
padding:0;
margin:0;
list-style:none;
}
.plan-card ul li{
display:flex;
align-items:center;
gap:12px;
padding:12px 0;
font-size:15px;
font-weight:600;
color:#334155;
border-bottom:1px solid #eef2f7;
}
.plan-card ul li:last-child{
border-bottom:none;
}
.plan-card ul li i{
width:34px;
height:34px;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
background:#eef4ff;
color:#2563eb;
font-size:14px;
flex-shrink:0;
transition:.3s;
}
.plan-card:hover ul li i{
background:#2563eb;
color:#fff;
transform:rotate(-8deg);
}
@media(max-width:991px){
.cpanel-plans{
padding:80px 0;
}
.section-title h2{
font-size:36px;
}
.popular{
transform:none;
}
.popular:hover{
transform:translateY(-10px);
}
}
@media(max-width:576px){
.cpanel-plans{
padding:60px 0;
}
.section-title{
margin-bottom:40px;
}
.section-title h2{
font-size:30px;
}
.section-title p{
font-size:15px;
}
.billing-switch{
gap:12px;
margin-bottom:40px;
}
.plan-card{
padding:28px 22px;
}
.plan-name{
font-size:24px;
}
.plan-price{
font-size:50px;
}
.popular-badge{
font-size:11px;
padding:7px 42px;
right:-42px;
}
}

/*=========================================
CPANEL FEATURES
=========================================*/
.cpanel-features{
padding:100px 0;
background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
position:relative;
overflow:hidden;
}
.cpanel-features::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle,#2563eb10 0%,transparent 70%);
left:-220px;
top:-180px;
border-radius:50%;
}
.features-image{
position:relative;
text-align:center;
}
.features-image img{
max-width:100%;
filter:drop-shadow(0 30px 60px rgba(37,99,235,.15));
animation:featureFloat 5s ease-in-out infinite;
}
.feature-floating{
position:absolute;
display:flex;
align-items:center;
gap:10px;
padding:12px 18px;
background:rgba(255,255,255,.92);
backdrop-filter:blur(18px);
border:1px solid rgba(37,99,235,.12);
border-radius:50px;
box-shadow:0 15px 35px rgba(15,23,42,.08);
font-weight:700;
color:#0f172a;
animation:floatBadge 4s ease-in-out infinite;
}
.feature-floating i{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
border-radius:50%;
font-size:16px;
}
.feature-floating.one{
top:8%;
left:-10px;
}
.feature-floating.two{
right:-10px;
top:42%;
animation-delay:1s;
}
.feature-floating.three{
left:40px;
bottom:5%;
animation-delay:2s;
}
.feature-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
margin-top:40px;
}
.feature-box{
display:flex;
align-items:flex-start;
gap:18px;
padding:26px;
background:#fff;
border:1px solid #e5eefc;
border-radius:22px;
box-shadow:0 15px 35px rgba(15,23,42,.05);
transition:.35s;
position:relative;
overflow:hidden;
}
.feature-box::before{
content:"";
position:absolute;
left:0;
top:0;
width:5px;
height:100%;
background:linear-gradient(180deg,#2563eb,#60a5fa);
transform:scaleY(0);
transition:.35s;
}
.feature-box:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(37,99,235,.12);
border-color:#bfdbfe;
}
.feature-box:hover::before{
transform:scaleY(1);
}
.feature-icon{
width:62px;
height:62px;
min-width:62px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#2563eb,#3b82f6);
border-radius:18px;
color:#fff;
font-size:24px;
box-shadow:0 15px 30px rgba(37,99,235,.25);
transition:.35s;
}
.feature-box:hover .feature-icon{
transform:rotate(-10deg) scale(1.08);
}
.feature-box h4{
font-size:20px;
font-weight:800;
color:#0f172a;
margin-bottom:8px;
}
.feature-box p{
margin:0;
font-size:15px;
line-height:1.7;
color:#64748b;
}
@keyframes featureFloat{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-18px);
}
}
@keyframes floatBadge{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-10px);
}
}
@media(max-width:991px){
.cpanel-features{
padding:80px 0;
}
.features-image{
margin-bottom:50px;
}
.feature-grid{
grid-template-columns:1fr;
}
.feature-floating.one{
left:0;
}
.feature-floating.two{
right:0;
}
.feature-floating.three{
left:20px;
}
}
@media(max-width:576px){
.cpanel-features{
padding:60px 0;
}
.feature-box{
padding:22px;
}
.feature-box h4{
font-size:18px;
}
.feature-box p{
font-size:14px;
}
.feature-icon{
width:55px;
height:55px;
min-width:55px;
font-size:20px;
}
.feature-floating{
position:relative;
display:inline-flex;
margin:15px auto;
left:auto!important;
right:auto!important;
top:auto!important;
bottom:auto!important;
}
.features-image img{
margin-bottom:10px;
}
}

/*=========================================
HOSTING TECHNOLOGY
=========================================*/
.hosting-tech{
padding:100px 0;
background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
position:relative;
overflow:hidden;
}
.hosting-tech::before{
content:"";
position:absolute;
width:600px;
height:600px;
right:-250px;
bottom:-250px;
background:radial-gradient(circle,#2563eb10 0%,transparent 70%);
border-radius:50%;
}
.tech-card{
position:relative;
height:100%;
padding:35px 28px;
background:rgba(255,255,255,.9);
backdrop-filter:blur(20px);
border:1px solid #e5eefc;
border-radius:24px;
text-align:center;
transition:.35s;
overflow:hidden;
box-shadow:0 18px 40px rgba(15,23,42,.05);
}
.tech-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#2563eb,#60a5fa);
transform:scaleX(0);
transition:.35s;
}
.tech-card:hover{
transform:translateY(-10px);
border-color:#bfdbfe;
box-shadow:0 30px 60px rgba(37,99,235,.14);
}
.tech-card:hover::before{
transform:scaleX(1);
}
.tech-icon{
width:82px;
height:82px;
margin:0 auto 24px;
border-radius:22px;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
font-size:32px;
box-shadow:0 20px 40px rgba(37,99,235,.28);
transition:.35s;
}
.tech-card:hover .tech-icon{
transform:rotate(-10deg) scale(1.08);
}
.tech-card h4{
font-size:22px;
font-weight:800;
color:#0f172a;
margin-bottom:12px;
}
.tech-card p{
margin:0;
font-size:15px;
line-height:1.8;
color:#64748b;
}
@media(max-width:991px){
.hosting-tech{
padding:80px 0;
}
.tech-card{
padding:30px 24px;
}
}
@media(max-width:576px){
.hosting-tech{
padding:60px 0;
}
.tech-card{
padding:26px 20px;
}
.tech-icon{
width:70px;
height:70px;
font-size:28px;
border-radius:18px;
margin-bottom:20px;
}
.tech-card h4{
font-size:20px;
}
.tech-card p{
font-size:14px;
}
}

/*=========================================
PERFORMANCE SECTION
=========================================*/
.performance-section{
padding:100px 0;
background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
position:relative;
overflow:hidden;
}
.performance-section::before{
content:"";
position:absolute;
top:-220px;
left:-220px;
width:550px;
height:550px;
background:radial-gradient(circle,#2563eb10 0%,transparent 70%);
border-radius:50%;
}
.stat-card{
background:#fff;
border:1px solid #e5eefc;
border-radius:24px;
padding:35px 20px;
text-align:center;
transition:.35s;
box-shadow:0 18px 40px rgba(15,23,42,.05);
height:100%;
position:relative;
overflow:hidden;
}
.stat-card::before{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#2563eb,#60a5fa);
transform:scaleX(0);
transition:.35s;
}
.stat-card:hover{
transform:translateY(-10px);
border-color:#bfdbfe;
box-shadow:0 28px 55px rgba(37,99,235,.14);
}
.stat-card:hover::before{
transform:scaleX(1);
}
.stat-icon{
width:75px;
height:75px;
margin:0 auto 20px;
display:flex;
align-items:center;
justify-content:center;
border-radius:20px;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
font-size:28px;
box-shadow:0 18px 35px rgba(37,99,235,.25);
transition:.35s;
}
.stat-card:hover .stat-icon{
transform:rotate(-8deg) scale(1.08);
}
.stat-card h3{
font-size:42px;
font-weight:800;
color:#0f172a;
margin-bottom:8px;
}
.stat-card p{
margin:0;
font-size:15px;
font-weight:600;
color:#64748b;
}
.performance-banner{
margin-top:70px;
background:#fff;
border:1px solid #e5eefc;
border-radius:30px;
padding:60px;
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
box-shadow:0 25px 60px rgba(15,23,42,.06);
position:relative;
overflow:hidden;
}
.performance-banner::before{
content:"";
position:absolute;
top:-120px;
right:-120px;
width:280px;
height:280px;
background:radial-gradient(circle,#2563eb12 0%,transparent 70%);
border-radius:50%;
}
.performance-left{
flex:1;
position:relative;
z-index:2;
}
.performance-left h3{
font-size:38px;
font-weight:800;
color:#0f172a;
margin-bottom:18px;
}
.performance-left p{
font-size:17px;
line-height:1.8;
color:#64748b;
margin-bottom:28px;
}
.performance-left ul{
list-style:none;
padding:0;
margin:0;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}
.performance-left li{
display:flex;
align-items:center;
gap:12px;
font-size:15px;
font-weight:600;
color:#334155;
}
.performance-left li i{
width:34px;
height:34px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#2563eb;
color:#fff;
font-size:13px;
flex-shrink:0;
}
.performance-right{
flex:1;
text-align:center;
position:relative;
z-index:2;
}
.performance-right img{
max-width:100%;
animation:performanceFloat 5s ease-in-out infinite;
filter:drop-shadow(0 30px 55px rgba(37,99,235,.18));
}
@keyframes performanceFloat{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-18px);
}
}
@media(max-width:991px){
.performance-section{
padding:80px 0;
}
.performance-banner{
flex-direction:column;
padding:40px 30px;
gap:40px;
text-align:center;
}
.performance-left ul{
grid-template-columns:1fr;
}
.performance-left li{
justify-content:flex-start;
}
}
@media(max-width:576px){
.performance-section{
padding:60px 0;
}
.stat-card{
padding:28px 18px;
}
.stat-icon{
width:65px;
height:65px;
font-size:24px;
border-radius:18px;
}
.stat-card h3{
font-size:34px;
}
.performance-banner{
padding:30px 22px;
border-radius:24px;
}
.performance-left h3{
font-size:28px;
}
.performance-left p{
font-size:15px;
}
.performance-left li{
font-size:14px;
}
}

/*=========================================
CPANEL FAQ
=========================================*/
.cpanel-faq{
padding:100px 0;
background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
position:relative;
overflow:hidden;
}
.cpanel-faq::before{
content:"";
position:absolute;
right:-220px;
top:-220px;
width:550px;
height:550px;
background:radial-gradient(circle,#2563eb10 0%,transparent 70%);
border-radius:50%;
}
.faq-wrapper{
max-width:950px;
margin:60px auto 0;
position:relative;
z-index:2;
}
.faq-item{
background:#fff;
border:1px solid #e5eefc;
border-radius:22px;
margin-bottom:18px;
overflow:hidden;
transition:.35s;
box-shadow:0 15px 35px rgba(15,23,42,.05);
}
.faq-item:hover{
transform:translateY(-4px);
box-shadow:0 22px 45px rgba(37,99,235,.12);
border-color:#bfdbfe;
}
.faq-item.active{
border-color:#2563eb;
box-shadow:0 25px 50px rgba(37,99,235,.15);
}
.faq-question{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
padding:24px 28px;
background:none;
border:none;
cursor:pointer;
font-size:18px;
font-weight:700;
color:#0f172a;
text-align:left;
}
.faq-question span{
padding-right:20px;
}
.faq-question i{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
background:#eef4ff;
color:#2563eb;
border-radius:14px;
font-size:18px;
transition:.35s;
flex-shrink:0;
}
.faq-item.active .faq-question i{
background:#2563eb;
color:#fff;
transform:rotate(45deg);
}
.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
}
.faq-answer p{
padding:0 28px 26px;
margin:0;
font-size:15px;
line-height:1.9;
color:#64748b;
}
.faq-item.active .faq-answer{
max-height:250px;
}
@media(max-width:991px){
.cpanel-faq{
padding:80px 0;
}
.faq-wrapper{
margin-top:45px;
}
}
@media(max-width:576px){
.cpanel-faq{
padding:60px 0;
}
.faq-question{
padding:20px;
font-size:16px;
}
.faq-question i{
width:40px;
height:40px;
font-size:16px;
border-radius:12px;
}
.faq-answer p{
padding:0 20px 20px;
font-size:14px;
line-height:1.8;
}
}