









.slide-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#fff;
    border:none;
    width:38px;
    height:38px;
    border-radius:50%;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    cursor:pointer;
    z-index:5;
}

.slide-btn.left{
    left:-15px;
}

.slide-btn.right{
    right:-15px;
}

.slide-btn:hover{
    background:linear-gradient(90deg,#0a7c2f,#14532d);
    color:#fff;
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

.fa-html5{ color:#e34c26; }
.fa-css3-alt{ color:#264de4; }
.fa-js{ color:#f7df1e; }
.fa-php{ color:#8892be; }
.fa-react{ color:#61dafb; }
.fa-node-js{ color:#3c873a; }
.fa-laravel{ color:#ff2d20; }
.fa-database{ color:#f29111; }
.fa-flutter{ color:#02569B; }
.fa-python{ color:#3776ab; }

.dashboard-section{
    background:#f9fafb;
    padding:100px 0;
}

.dash-bottom{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.right-cards{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.dash-card{
    background:#fff;
    border-radius:5px;
    padding:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:none;
}

.dash-card:hover{
    transform:none;
}

.card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.big-number{
    font-size:30px;
    font-weight:600;
    margin:10px 0;
}

.green{
    color:#16a34a;
    font-size:14px;
}

.red{
    color:#dc2626;
    font-size:14px;
}

.chart-placeholder{
    height:300px;
    background:linear-gradient(to bottom,#f9fafb,#e2f5e2);
    border-radius:5px;
}

.chart-content{
    background:transparent;
    border:1px solid #e5e7eb;
    border-radius:5px;
    padding:45px;
    height:450px;
    overflow:auto;
    text-align:left;
}

.chart-content p{
    margin-bottom:20px;
    line-height:1.9;
    color:#222;
    font-size:16px;
    font-weight:500;
    text-align:justify;
}

.chart-card h3{
    font-size:20px;
    font-weight:600;
}

.slider-card{
    padding:25px;
    overflow:hidden;
}

.slider-box{
    border:1px solid #e5e7eb;
    border-radius:6px;
    padding:15px;
    background:#fff;
}

.slider{
    width:100%;
    height:300px;
    overflow:hidden;
    border-radius:6px;
    position:relative;
}

.slides{
    display:flex;
    width:100%;
    height:100%;
    transition:transform 0.6s ease-in-out;
}

.slides img{
    width:100%;
    height:100%;
    object-fit:cover;
    flex:0 0 100%;
}

.slider-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:20px;
}

.page-btn{
    min-width:34px;
    height:34px;
    border-radius:6px;
    border:1px solid #d1d5db;
    background:#f3f4f6;
    color:#1f2937;
    font-size:13px;
    font-weight:500;
    cursor:pointer;
    transition:all 0.25s ease;
}

.page-btn:hover{
    background:linear-gradient(90deg,#0a7c2f,#14532d);
    color:#fff;
}

.page-btn.active{
    background:linear-gradient(90deg,#0a7c2f,#14532d);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.page-btn.active::after{
content:"";
position:absolute;
left:0;
bottom:0;
height:3px;
width:0;
background:linear-gradient(90deg,#0a7c2f,#14532d);
animation:progress 6s linear forwards;
}

@keyframes progress{
from{width:0;}
to{width:100%;}
}

.arrow-btn{
min-width:34px;
height:34px;
display:flex;
align-items:center;
justify-content:center;
border-radius:6px;
border:1px solid #d1d5db;
background:#f3f4f6;
color:#1f2937;
font-size:14px;
font-weight:600;
cursor:pointer;
transition:all .25s ease;
}

.arrow-btn:hover{
background:linear-gradient(90deg,#0a7c2f,#14532d);
color:#fff;
border-color:#14532d;
}

.stars{
color:#f5b50a;
}

@media(max-width:768px){

section{
padding:70px 0;
}

.slider{
height:220px;
}

.page-btn{
min-width:30px;
height:30px;
font-size:12px;
}

.tech-card{
min-width:130px;
padding:18px 10px;
}

.tech-card i{
font-size:28px;
}

.tech-card p{
font-size:12px;
}

.slide-btn{
width:30px;
height:30px;
font-size:14px;
}

.slide-btn.left{ left:5px; }
.slide-btn.right{ right:5px; }

.dash-bottom{
grid-template-columns:1fr;
gap:20px;
}

.right-cards{
flex-direction:column;
}

.chart-content{
height:auto;
padding:25px;
}

.chart-content p{
font-size:14px;
line-height:1.7;
}

.dash-card{
padding:20px;
}

}

.about-section{
 padding:80px 0;
 background:#ffffff;
}

.about-wrapper{
display:grid;
grid-template-columns:1fr 420px;
gap:50px;
align-items:start;
}

.about-content h2{
font-size:30px;
font-weight:700;
color:#111827;
margin-bottom:18px;
position:relative;
}

.about-content h2::after{
content:"";
display:block;
width:65px;
height:3px;
margin-top:8px;
border-radius:2px;
background:linear-gradient(90deg,#0a7c2f,#14532d);
}

.about-content p{
font-size:15px;
line-height:1.8;
color:#374151;
margin-bottom:16px;
text-align:justify;
max-width:620px;
}

.tech-notebook{
background:#ffffff;
border:1px solid #e5e7eb;
border-radius:8px;
padding:28px;
position:relative;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.tech-notebook::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:repeating-linear-gradient(
to bottom,
transparent,
transparent 28px,
#e9eef5 29px
);
opacity:.6;
pointer-events:none;
}

.tech-notebook h3{
font-size:18px;
font-weight:600;
margin-bottom:20px;
color:#111827;
position:relative;
z-index:2;
}

.tech-notebook ul{
list-style:none;
padding:0;
margin:0;
position:relative;
z-index:2;
}

.tech-notebook li{
font-family:monospace;
font-size:14px;
color:#374151;
padding:7px 0;
border-left:3px solid #16a34a;
padding-left:12px;
margin-bottom:6px;
transition:all .2s ease;
}

.tech-notebook li:hover{
transform:translateX(4px);
color:#111827;
border-left-color:#15803d;
}

@media(max-width:992px){

.about-wrapper{
grid-template-columns:1fr 350px;
gap:35px;
}

}

@media(max-width:768px){

.about-wrapper{
grid-template-columns:1fr;
gap:30px;
}

.tech-notebook{
margin-top:10px;
}

}

@media(max-width:576px){

.about-section{
padding:60px 0;
}

.about-content h2{
font-size:24px;
}

.about-content p{
font-size:14px;
}

}

.faq-layout{
display:grid;
grid-template-columns:1fr 280px 1.5fr;
gap:50px;
max-width:1200px;
margin:auto;
align-items:stretch;
}

.faq-sidebar{
flex:0 0 280px;
padding:25px;
background:rgba(255,255,255,0.6);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.4);
border-radius:5px;
display:flex;
flex-direction:column;
height:100%;
}

.faq-tab{
width:100%;
padding:14px;
margin-bottom:15px;
border:none;
border-radius:5px;
background:#edf2ef;
font-weight:500;
cursor:pointer;
transition:all .3s ease;
text-align:left;
}

.faq-tab:hover{
background:#e3ebe6;
}

.faq-tab.active{
background:linear-gradient(90deg,#0a7c2f,#14532d);
color:#fff;
box-shadow:0 5px 15px rgba(15,61,46,0.25);
}

.faq-content{
display:flex;
flex-direction:column;
justify-content:space-between;
height:100%;
}

.faq-group{
display:none;
}

.faq-group.active{
display:block;
}

.faq-item{
background:rgba(255,255,255,0.7);
backdrop-filter:blur(10px);
border-radius:8px;
margin-bottom:15px;
border:1px solid rgba(255,255,255,0.6);
overflow:hidden;
transition:all .3s ease;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.faq-item:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

.faq-item:last-child{
margin-bottom:0;
}

.faq-question{
width:100%;
padding:18px 22px;
background:none;
border:none;
font-size:16px;
font-weight:600;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
color:#0f172a;
}

.faq-question .arrow{
width:18px;
height:18px;
position:relative;
}

.faq-question .arrow::before{
content:"";
position:absolute;
width:10px;
height:10px;
border-right:2px solid #014f00;
border-bottom:2px solid #014f00;
transform:rotate(45deg);
top:2px;
left:3px;
transition:.3s ease;
}

.faq-item.active .arrow::before{
transform:rotate(-135deg);
top:6px;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 22px;
}

.faq-answer p{
padding-bottom:18px;
color:#4b5563;
line-height:1.6;
}

.faq-item.active{
border-left:3px solid #014f00;
}

.faq-item.active .faq-answer{
max-height:200px;
}

@media(max-width:992px){

.faq-layout{
grid-template-columns:1fr;
}

.faq-sidebar{
width:100%;
}

}

.about-left p{
line-height:1.8;
margin-bottom:18px;
}

.advanced-faq{
padding:75px 0;
background:#fff;
}

.faq-sidebar{
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.faq-tab.active{
box-shadow:0 8px 20px rgba(15,61,46,0.25);
}

.modern-testimonials{
padding:100px 0;
background:linear-gradient(to bottom,#ffffff,#f4f6f5);
}

@media (max-width:992px){

.faq-layout{
grid-template-columns:1fr;
gap:30px;
}

.faq-intro{
text-align:center;
}

.faq-sidebar{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
}

.faq-tab{
justify-content:center;
}

}

@media (max-width:600px){

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

.faq-tab{
font-size:13px;
padding:12px;
}

}

@media (max-width:768px){

.faq-intro{
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
}

.faq-intro p{
text-align:center;
}

}

section{
padding:100px 0;
}

.container{
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

@media(max-width:768px){

section{
padding:70px 0;
}

}

.section-title{
margin-bottom:20px;
position:relative;
}

.section-title::after{
content:"";
width:60px;
height:4px;
background:#0f3d2e;
display:block;
margin-top:12px;
border-radius:5px;
}

.card,
.tech-item,
.faq-item,
.testimonial-card{
border-radius:5px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.card:hover,
.tech-item:hover,
.testimonial-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.primary-btn{
padding:14px 30px;
border-radius:50px;
font-weight:600;
transition:.3s;
}

.primary-btn:hover{
transform:translateY(-3px);
}

.testimonial-card{
padding:30px;
min-height:220px;
}

.stars{
color:#f5b50a;
}

.fade-up{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}

.about-left,
.about-right{
min-width:0;
}

.about-points{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px 25px;
margin-top:35px;
padding:0;
list-style:none;
}

.about-points li{
display:flex;
align-items:center;
gap:12px;
font-size:15px;
color:#374151;
}

.about-points i{
display:flex;
align-items:center;
justify-content:center;
width:20px;
height:20px;
font-size:11px;
background:#16a34a;
color:#fff;
border:2px solid #16a34a;
border-radius:4px;
flex-shrink:0;
transition:0.3s;
}

.about-points li:hover i{
background:transparent;
color:#16a34a;
}

.testimonial-row{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:20px;
}

@media(max-width:992px){

.testimonial-row{
grid-template-columns:1fr;
}

}

.tech-container{
border:1px solid #e5e7eb;
border-radius:10px;
overflow:hidden;
background:transparent;
}

.tech-title{
font-size:18px;
font-weight:600;
padding:18px 20px;
border-bottom:1px solid #e5e7eb;
color:#111827;
}

.tech-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
}

.tech-cell{
height:90px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
border-right:1px solid #e5e7eb;
border-bottom:1px solid #e5e7eb;
}

.tech-cell:nth-child(4n){
border-right:none;
}

.tech-cell:nth-last-child(-n+4){
border-bottom:none;
}

.tech-cell i{
font-size:28px;
margin-bottom:6px;
}

.tech-cell span{
font-size:13px;
font-weight:500;
color:#374151;
}

.tech-icon{
width:28px;
height:28px;
margin-bottom:6px;
}

.chat-box{
position:fixed;
bottom:20px;
right:20px;
width:330px;
height:470px;
background:#fff;
border-radius:14px;
box-shadow:0 25px 70px rgba(0,0,0,0.18);
display:flex;
flex-direction:column;
overflow:hidden;
font-family:'Poppins',sans-serif;
z-index:9999;
animation:chatFadeIn .35s ease;
transition:.3s;
}

@keyframes chatFadeIn{

from{
opacity:0;
transform:translateY(25px) scale(.96);
}

to{
opacity:1;
transform:translateY(0) scale(1);
}

}

.chat-box.minimized{
height:52px;
width:230px;
border-radius:30px;
overflow:hidden;
}

.chat-box.minimized .chat-content{
display:none;
}

.chat-header{
display:flex;
align-items:center;
justify-content:space-between;
background: #14532d;
color:#fff;
padding:10px 14px;
font-size:14px;
font-weight:600;
cursor:pointer;
box-shadow:0 4px 14px rgba(25,179,91,0.35);
border-top-left-radius:14px;
border-top-right-radius:14px;
}

.chat-title{
display:flex;
align-items:center;
gap:10px;
}

.chat-avatar{
color:#fff;
font-size:14px;
width:34px;
height:34px;
background:rgba(255,255,255,.25);
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-weight:600;
}

.chat-name{
display:block;
font-size:14px;
}

.chat-status{
font-size:11px;
opacity:.85;
}

.chat-close{
font-size:15px;
cursor:pointer;
opacity:.85;
transition:.2s;
}

.chat-close:hover{
opacity:1;
transform:scale(1.1);
}

.chat-content{
flex:1;
display:flex;
flex-direction:column;
background:#f9fafb;
}

.chat-body{
flex:1;
overflow-y:auto;
padding:18px;
display:flex;
flex-direction:column;
gap:14px;
background:#f8fafc;
background-image:url("https://www.transparenttextures.com/patterns/cubes.png");
scroll-behavior:smooth;
}

.chat-body::-webkit-scrollbar{
width:6px;
}

.chat-body::-webkit-scrollbar-thumb{
background:rgba(0,0,0,0.15);
border-radius:10px;
}

.chat-message{
max-width:78%;
padding:12px 16px;
font-size:14px;
line-height:1.5;
border-radius:16px;
word-break:break-word;
animation:msgFade .25s ease;
}

@keyframes msgFade{

from{
opacity:0;
transform:translateY(6px);
}

to{
opacity:1;
transform:translateY(0);
}

}

.chat-message.user{
align-self:flex-end;
background:linear-gradient(90deg,#0a7c2f,#14532d);
color:#fff;
border-bottom-right-radius:6px;
}

.chat-message.admin{
align-self:flex-start;
background:#fff;
color:#333;
border-bottom-left-radius:6px;
box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.chat-footer{
display:flex;
align-items:center;
gap:10px;
padding:12px;
background:#fff;
border-top:1px solid #eee;
}

.chat-footer textarea{
flex:1;
resize:none;
padding:10px 14px;
border-radius:30px;
border:1px solid #e5e7eb;
font-size:14px;
min-height:36px;
max-height:58px;
outline:none;
transition:.2s;
}

.chat-footer textarea:focus{
border-color:#14532d;
box-shadow:0 0 0 3px rgba(25,179,91,.15);
}

.chat-footer button{
width:40px;
height:40px;
border:none;
border-radius:50%;
background:linear-gradient(90deg,#0a7c2f,#14532d);
color:#fff;
font-size:16px;
cursor:pointer;
transition:.25s;
display:flex;
align-items:center;
justify-content:center;
}

.chat-footer button:hover{
transform:scale(1.08);
box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.chat-footer button:active{
transform:scale(.95);
}

.section-title{
font-size:32px;
font-weight:700;
text-align:left;
margin-bottom:40px;
}

.faq-tab{
display:flex;
align-items:center;
gap:10px;
width:100%;
padding:12px 16px;
border:none;
background:#f3f4f6;
font-size:14px;
cursor:pointer;
text-align:left;
transition:.2s;
}

.faq-tab i{
color:#0a7c2f;
font-size:14px;
}

.faq-tab:hover{
background:#e5e7eb;
}

.faq-tab.active{
background:linear-gradient(90deg,#0a7c2f,#14532d);
color:#fff;
position:relative;
}

.faq-tab.active i{
color:#fff;
}

.faq-tab.active::after{
content:"";
position:absolute;
right:-10px;
top:50%;
transform:translateY(-50%);
border-top:10px solid transparent;
border-bottom:10px solid transparent;
border-left:10px solid #14532d;
}

.chat-status::before{
content:"";
width:7px;
height:7px;
background:#00ff6a;
border-radius:50%;
display:inline-block;
margin-right:5px;
}

.faq-intro{
padding-top:20px;
}

.faq-intro h2{
font-size:48px;
font-weight:800;
line-height:1.2;
color:#140a2f;
margin-bottom:20px;
}

.faq-intro p{
color:#6b7280;
font-size:16px;
line-height:1.7;
margin-bottom:25px;
max-width:320px;
}

.company-section{
    background:#f6f8fa;
    padding-top:5px;
}

.company-flex{
display:flex;
gap:50px;
align-items:center;
}

.company-left{
flex:1.3;
}

.company-right{
flex:0.8;
display:flex;
justify-content:center;
}

.tag{
background:#d9f5e6;
color:#0a7c2f;
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:600;
}

.company-left h2{
font-size:42px;
margin:15px 0;
line-height:1.2;
}

.company-left h2 span{
color:#14532d;
}

.company-desc{
color:#555;
margin-bottom:25px;
}

.company-stats{
display:flex;
gap:40px;
margin:25px 0;
}

.stat{
display:flex;
align-items:center;
gap:15px;
}

.progress{
    width: 70px;
    height: 70px;
    transform: rotate(-90deg);
}

.bg{
    fill: none;
    stroke: #e5e5e5;
    stroke-width: 6;
}

.bar{
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 188;
    stroke-dashoffset: 188;
}

.purple-ring{
    stroke:#7c4dff;
    animation:fill95 5s linear forwards;
}

.green-ring{
    stroke:#9bd23c;
    animation:fill99 5s linear forwards;
}

.percent{
    font-size:14px;
    font-weight:bold;
    fill:#333;
    text-anchor:middle;
    transform: rotate(90deg);
    transform-origin: 50% 50%;
}

@keyframes fill95{
    to{stroke-dashoffset:9;}
}

@keyframes fill99{
    to{stroke-dashoffset:2;}
}

.company-btn{
background:linear-gradient(90deg,#0a7c2f,#14532d);
color:white;
padding:12px 28px;
border-radius:25px;
text-decoration:none;
font-weight:600;
}

.work-box h4{
margin-bottom:18px;
font-size:18px;
font-weight:600;
color:#0a7c2f;
}

.work-item{
display:flex;
align-items:center;
gap:12px;
padding:12px 8px;
border-bottom:1px solid #e3e3e3;
transition:0.2s;
}

.work-item:last-child{
border-bottom:none;
}

.work-item:hover{
background:#eef1ef;
}

.work-item img{
width:44px;
height:44px;
border-radius:50%;
object-fit:cover;
border:2px solid #e3e3e3;
}

.work-item b{
font-size:14px;
display:block;
}

.work-item span{
font-size:12px;
color:#777;
}

.cta-main{
  display: flex;
  margin-top: -40px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  min-height: 70px;
}

.cta-left{
  width: 75%;
  padding: 12px 18px;
  display: flex;
  align-items: center;
}

.cta-left h3{
  font-size: 16px;
  font-weight: 600;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  width: 100%;
}

.cta-text{
  width: 100%;
  display: flex;
  align-items: center;
}

.cta-text span,
.typing{
  flex-shrink: 0;
}

.typing{
  background: linear-gradient(270deg, #14532d, #00c6ff, #14532d);
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes gradientMove{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

.demo-btn{
  margin-left: auto;
  flex-shrink: 0;
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  background: #14532d;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s;
}

.demo-btn:hover{
  background: #15994d;
}

.cta-right{
  width: 25%;
  display: flex;
}

.cta-box{
  width: 100%;
  padding: 10px;
  text-align: center;
  border-left: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease;
}

.cta-box i{
  font-size: 16px;
  margin-bottom: 2px;
}

.cta-box h4{
  font-size: 12px;
  margin: 0;
}

.cta-box p{
  font-size: 10px;
  margin: 0;
  color: #777;
}

.cta-box.chat i{
  transition: transform 0.3s ease;
}

.cta-box.chat:hover i{
  transform: translateX(-4px);
}

.cta-box.chat:hover{
  background: #f5f5f5;
}

@media (max-width: 768px){

  .cta-main{
    flex-direction: row;
  }

  .cta-right{
    display: none;
  }

  .cta-left{
    width: 100%;
    padding: 10px 12px;
  }

  .cta-left h3{
    font-size: 14px;
    gap: 6px;
  }

  .typing{
    min-width: 180px;
    font-size: 13px;
  }

  .demo-btn{
    font-size: 11px;
    padding: 5px 10px;
  }

}

@media(max-width:900px){

.company-flex{
flex-direction:column;
gap:30px;
}

.company-left{
text-align:center;
}

.company-left h2{
font-size:28px;
}

.company-desc{
font-size:14px;
}

.company-stats{
flex-direction:column;
gap:20px;
}

.stat{
justify-content:center;
text-align:left;
}

.company-btn{
display:inline-block;
margin-top:10px;
}

.company-right{
width:100%;
justify-content:center;
}

.work-box{
max-width:100%;
width:100%;
border-width:6px;
}

.work-item{
padding:12px 10px;
}

.work-item img{
width:40px;
height:40px;
}

.progress{
width:60px;
height:60px;
}

.percent{
font-size:12px;
}

}

@media(max-width:500px){

.company-left h2{
font-size:24px;
}

.tag{
font-size:11px;
}

.company-desc{
font-size:13px;
}

.work-box h4{
font-size:16px;
}

}

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

.industry-header h2{
  font-size:38px;
  font-weight:800;
  margin-bottom:10px;
  color:#111827;
}

.industry-header p{
  color:#6b7280;
  font-size:15px;
}

.industry-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:50px;
}

.feature-box{
  text-align:center;
  padding:30px 25px;
  position:relative;
  transition:.3s;
}

.feature-box:hover{
  transform:translateY(-6px);
}

.feature-box h3{
  font-size:20px;
  margin-bottom:10px;
  color:#111827;
}

.feature-box p{
  font-size:14px;
  color:#6b7280;
  line-height:1.6;
}

.feature-box:not(:last-child)::after{
  content:"";
  position:absolute;
  right:-20px;
  top:15%;
  height:70%;
  border-right:2px dotted #d1d5db;
}

@media(max-width:768px){

  .industry-features{
    grid-template-columns:1fr;
  }

  .feature-box::after{
    display:none;
  }

  .industry-header h2{
    font-size:26px;
  }

}

@media (max-width:1200px){

.industry-grid{
grid-template-columns:1fr;
}

}

@media (max-width:992px){

.industry-grid{
grid-template-columns:1fr;
}

}

@media (max-width:768px){

.industry-grid{
grid-template-columns:1fr;
}

.faq-intro{
text-align:center;
}

.faq-intro p{
text-align:center;
margin:auto;
}

}

.reveal{
opacity:0;
transform:translateY(60px);
transition:all .8s cubic-bezier(.22,.61,.36,1);
}

.reveal-left{
opacity:0;
transform:translateX(-60px);
transition:all .8s cubic-bezier(.22,.61,.36,1);
}

.reveal-right{
opacity:0;
transform:translateX(60px);
transition:all .8s cubic-bezier(.22,.61,.36,1);
}

.reveal-zoom{
opacity:0;
transform:scale(.9);
transition:all .8s cubic-bezier(.22,.61,.36,1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active{
opacity:1;
transform:none;
}

.reveal:nth-child(1){transition-delay:.1s;}
.reveal:nth-child(2){transition-delay:.2s;}
.reveal:nth-child(3){transition-delay:.3s;}
.reveal:nth-child(4){transition-delay:.4s;}
.reveal:nth-child(5){transition-delay:.5s;}
.reveal:nth-child(6){transition-delay:.6s;}
.reveal:nth-child(7){transition-delay:.7s;}
.reveal:nth-child(8){transition-delay:.8s;}
.reveal:nth-child(9){transition-delay:.9s;}
.reveal:nth-child(10){transition-delay:1s;}

.tech-cell{
transition:all .3s ease;
background:transparent;
border-radius:6px;
padding:10px;
}

.tech-cell:hover{
background:#ffffff;
transform:translateY(-5px) scale(1.02);
box-shadow:0 12px 25px rgba(0,0,0,0.08);
}

.tech-cell i{
transition:0.3s;
}

.tech-cell:hover i{
transform:scale(1.1);
}

.hero{
    width:100%;
    height:450px;
    background:url('/images/curvemint-banner.webp') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding-right:30px;
    position:relative;
}

.enquiry-box{
    position:relative;
    z-index:2;
    width:320px;
    padding:40px 35px;
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(6px);
    border-radius:12px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        0 25px 50px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.05);
    box-sizing:border-box;
    margin-top:-15px;
}

.enquiry-box h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:20px;
    color:#111827;
    text-align:center;
}

.enquiry-box input,
.enquiry-box select{
    width:100%;
    padding:11px 12px;
    margin-bottom:12px;
    border-radius:8px;
    border:1px solid #e5e7eb;
    font-size:13px;
    background:#fafafa;
    transition:all 0.25s ease;
}

.enquiry-box input:focus,
.enquiry-box select:focus{
    border-color:#14532d;
    background:#fff;
    box-shadow:0 0 0 2px rgba(25,179,91,0.15);
    outline:none;
}

.enquiry-box select{
    appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg fill='%23111827' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat:no-repeat;
    background-position:right 12px center;
    background-size:14px;
    cursor:pointer;
}

.enquiry-box button{
    width:100%;
    padding:12px;
    margin-top:8px;
    border:none;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    color:#fff;
    cursor:pointer;
    background:linear-gradient(90deg,#0a7c2f,#14532d);
    transition:all .25s ease;
}

.enquiry-box button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(25,179,91,0.35);
}

#successMsg{
    text-align:center;
    font-size:13px;
    margin-top:10px;
    color:#0f9d58;
    display:none;
}

@media(max-width:768px){

    .hero{
        height:auto;
        min-height:420px;
        background-size:contain;
        background-position:top center;
        padding:20px 15px;
        display:flex;
        align-items:flex-end;
        justify-content:center;
    }

}

@media(max-width:768px){

    .enquiry-box{
        width:100%;
        max-width:320px;
        padding:18px;
        margin-top:20px;
        border-radius:10px;
    }

}

@media(max-width:768px){

    .hero::after{
        background:rgba(0,0,0,0.2);
    }

}

@media(max-width:992px){

    .enquiry-box{
        width:80%;
        max-width:220px;
        padding:20px 30px;
        margin-top:18px;
        border-radius:10px;
    }

.enquiry-box select{
    width:100%;
    padding:9px 8px;
    margin-bottom:10px;
    border-radius:8px;
    font-size:10px;
}

.enquiry-box input{
    font-size:10px;
}

.enquiry-box h3{
    font-size:14px;
    font-weight:500;
}

.enquiry-box button{
    font-size:10px;
    font-weight:500;
}

}

@media(max-width:768px){

  .hero{
    background: url('/images/fin-banner.webp') center/cover no-repeat !important;
    height: auto;
    min-height: 420px;
    padding: 20px 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

}

.premium-industries{
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  padding: 90px 0;
}

.industry-header h2{
  color:#111827;
}

.industry-header p{
  color:#6b7280;
}

.industry-card{
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.gradient-heading{
  font-size:38px;
  font-weight:800;
  background:linear-gradient(270deg,#0a7c2f,#14532d,#00c6ff,#14532d);
  background-size:200% 200%;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:gradientMove 4s ease infinite;
}

@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.empower {
  font-size: 34px;
  font-weight: 700;
  text-align: left;
  padding: 10px;
  margin-bottom: 25px;
  padding-top: 10px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: #111827;
  animation: none;
}

.industries-slider {
   .industries-slider {
    background: radial-gradient(circle at bottom right, #ecfdf5, transparent 45%),
                #ffffff;
}

color: #fff;
padding: 80px 0;
position: relative;
}

.industries-slider::before,
.industries-slider::after {
content: "";
position: absolute;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(to right, transparent, #86efac, transparent);
}

.industries-slider::before { top: 0; }
.industries-slider::after { bottom: 0; }

.slider-wrapper {
position: relative;
overflow: hidden;
}

.slides {
display: flex;
transition: transform 0.6s ease;
}

.slide {
min-width: 100%;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.industry-card {
position: relative;
overflow: hidden;
border-radius: 10px;
transition: 0.3s;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.industry-card img {
width: 100%;
height: 180px;
object-fit: cover;
display: block;
border-radius: 10px;
transition: transform 0.5s ease;
}

.industry-card:hover img {
transform: scale(1.08);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
  transition: 0.4s ease;
}

.industry-card:hover::after {
  background: rgba(0,0,0,0);
}

.industry-card img {
  transition: transform 0.5s ease, filter 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.industry-card h4,
.industry-card p {
position: absolute;
left: 15px;
right: 15px;
z-index: 2;
color: #fff;
text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.industry-card h4 {
bottom: 45px;
font-size: 17px;
font-weight: 600;
}

.industry-card p {
bottom: 15px;
font-size: 13px;
opacity: 0.9;
}

.tags {
position: absolute;
top: 12px;
left: 12px;
display: flex;
gap: 8px;
flex-wrap: wrap;
z-index: 3;
}

.tags span {
background: rgba(255,255,255,0.6);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.3);
padding: 6px 12px;
font-size: 12px;
border-radius: 20px;
color: #222;
font-weight: 500;
}

.tags span{
  transition: all 0.3s ease;
}

.industry-card:hover .tags span{
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}

.prev, .next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: linear-gradient(45deg,#00c6ff,#0072ff);
color: #fff;
border: none;
padding: 12px 16px;
border-radius: 50%;
cursor: pointer;
z-index: 5;
transition: 0.3s;
}

.prev { left: -10px; }
.next { right: -10px; }

.prev:hover, .next:hover {
transform: translateY(-50%) scale(1.1);
}

.dots {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.dots span.active {
  background: #d1d5db;
  transform: scale(1.3);
}

.dots span {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
}

.dots span.active {
  background: #d1d5db;
  transform: scale(1.3);
}

.question-title span{
    background:#14532d !important;
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

.question-title span i{
    color:#fff !important;
    font-size:14px;
}



/*-----------------------Clean Index css -----------------*/

.about-section{
  background:#ffffff;
  padding:90px 0;
}

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:60px;
  align-items:center;
}

.about-content h2{
  font-size:30px;
  font-weight:700;
  color:#111827;
  margin-bottom:18px;
  position:relative;
}

.about-content h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  margin-top:8px;
  border-radius:2px;
  background:#0a7c2f;
}

.about-content p{
  font-size:15px;
  line-height:1.8;
  color:#374151;
  margin-bottom:20px;
  max-width:600px;
}

.about-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px 20px;
  list-style:none;
  margin-top:25px;
}

.about-points li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#374151;
}

.about-points i{
  width:18px;
  height:18px;
  font-size:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#16a34a;
  color:#fff;
  border-radius:3px;
}

.about-image{
  width:100%;
  max-width:260px;
}

.about-image img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border:none;
  border-radius:0;
  box-shadow:none;
  transition:transform 0.3s ease;
}

.about-image img:hover{
  transform:translateY(-5px);
}

@media(max-width:768px){

  .about-wrapper{
    grid-template-columns:1fr;
    gap:30px;
    text-align:center;
  }

  .about-image{
    margin:auto;
  }

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

}

.mobile-industries{
  display:none;
}

.industries-slider{
  display:block;
}

@media(max-width:768px){

  .industries-slider{
    display:none !important;
  }

  .mobile-industries{
    display:block;
    padding:0 12px;
    overflow:hidden;
  }

  .m-track{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    gap:12px;
    -webkit-overflow-scrolling:touch;
  }

  .m-track::-webkit-scrollbar{
    display:none;
  }

  .m-card{
    min-width:92%;
    flex:0 0 92%;
    scroll-snap-align:center;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
  }

  .m-card img{
    width:100%;
    height:220px;
    object-fit:cover;
  }

  .m-card h4{
    font-size:18px;
    padding:12px 15px 0;
  }

  .m-card p{
    font-size:14px;
    padding:0 15px 15px;
  }

}

.question-item{
  background:#fff;
  border-radius:50px;
  margin-bottom:15px;
  padding:18px 25px;
  cursor:pointer;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.question-item.active{
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.question-title{
  width:100%;
  background:none;
  border:none;
  outline:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

.question-title span{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#19b35b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.question-title i{
  transition:0.3s;
}

.question-item.active .question-title i{
  transform:rotate(180deg);
}

.question-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:0.4s ease;
}

.question-item.active .question-answer{
  max-height:120px;
  opacity:1;
  margin-top:10px;
}

.advanced-faq{
  padding:100px 0;
}

.faq-layout{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:60px;
  align-items:center;
}

@media(max-width:768px){

  .faq-layout{
    grid-template-columns:1fr;
    gap:30px;
  }

}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

.popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(6px);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.popup-box{
  width:900px;
  max-width:95%;
  height:420px;
  display:flex;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 30px 80px rgba(0,0,0,0.35);
}

.popup-left{
  width:45%;
  background:linear-gradient(135deg,#14532d,#16a34a);
  color:#fff;
  padding:35px 25px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  position:relative;
  overflow:hidden;
  text-align:center;
}

.popup-left::before{
  content:'';
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(255,255,255,0.06);
  border-radius:50%;
  top:-100px;
  right:-80px;
}

.popup-left::after{
  content:'';
  position:absolute;
  width:220px;
  height:220px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
  bottom:-80px;
  left:-60px;
}

.popup-left h3{
  font-size:24px;
  font-weight:600;
  margin-bottom:12px;
}

.popup-left p{
  font-size:14px;
  opacity:0.9;
  line-height:1.6;
}

.badge{
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(5px);
  color:#fff;
  padding:6px 14px;
  border-radius:30px;
  font-size:12px;
  margin-bottom:15px;
  font-weight:600;
  border:1px solid rgba(255,255,255,0.2);
}

.popup-right{
  width:55%;
  padding:60px 35px 35px;
  position:relative;
  background:#fff;
  box-shadow:inset 0 0 25px rgba(0,0,0,0.05);
}

.close-btn{
  position:absolute;
  top:15px;
  right:20px;
  font-size:22px;
  cursor:pointer;
  color:#777;
}

.popup-right h2{
  font-size:28px;
  margin-bottom:10px;
}

.popup-right h2 span{
  color:#16a34a;
}

.popup-right p{
  color:#555;
  margin:15px 0 20px;
  line-height:1.6;
}

.offer{
  font-weight:600;
  color:#16a34a;
  margin-bottom:20px;
}

.cta-btn{
  background:linear-gradient(135deg,#14532d,#16a34a);
  color:#fff;
  border:none;
  padding:14px 25px;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
  width:100%;
}

.cta-btn:hover{
  transform:scale(1.05);
}

.note{
  margin-top:10px;
  font-size:13px;
  color:#888;
  text-align:center;
}

@keyframes popupAnim{
  from{
    opacity:0;
    transform:translateY(50px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:768px){

  .popup{
    display:none !important;
  }

  .popup-box{
    flex-direction:column;
  }

  .popup-left,
  .popup-right{
    width:100%;
    height:100%;
    text-align:center;
    align-items:center;
  }

}

.illustration{
  width:100%;
  max-width:220px;
  margin:15px 0;
  object-fit:contain;
  z-index:2;
  filter:drop-shadow(0 15px 25px rgba(0,0,0,0.2));
}

.mobile-popup{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  display:none;
  justify-content:flex-end;
  align-items:flex-end;
  z-index:9999;
}

.mobile-box{
  width:100%;
  border-radius:20px 20px 0 0;
  overflow:hidden;
  animation:slideUp 0.4s ease;
  background:#fff;
}

.mobile-top{
  background:linear-gradient(135deg,#14532d,#16a34a);
  color:#fff;
  padding:30px 20px;
  text-align:center;
}

.mobile-top h3{
  font-size:20px;
  margin-bottom:8px;
}

.mobile-top p{
  font-size:14px;
  opacity:0.9;
}

.mobile-bottom{
  padding:25px 20px 30px;
  text-align:center;
}

.mobile-bottom button{
  width:100%;
  padding:16px;
  border:none;
  border-radius:12px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  color:#fff;
  box-shadow:0 10px 20px rgba(22,163,74,0.3);
  transition:0.3s;
}

.mobile-bottom button:hover{
  transform:scale(1.03);
}

.mobile-bottom span{
  display:block;
  margin-top:15px;
  font-size:14px;
  color:#666;
  cursor:pointer;
}

@keyframes slideUp{
  from{
    transform:translateY(100%);
  }
  to{
    transform:translateY(0);
  }
}

@media(min-width:769px){

  .mobile-popup{
    display:none !important;
  }

}


















