/*=====================================================
DEB Growth Studio
File : style.css
Version : 1.0
Part : 01
Author : DEB Growth Studio

Contents

01 Root
02 Reset
03 Typography
04 Utility
05 Buttons
06 Navbar
07 Hero
08 Hero Cards
09 Background Blur
10 Responsive Base

======================================================*/


/*=================================
ROOT VARIABLES
==================================*/
:root{

--primary:#2563EB;

--primary-dark:#1D4ED8;

--secondary:#06B6D4;

--accent:#60A5FA;

--success:#22C55E;

--warning:#F59E0B;

--danger:#EF4444;

--dark:#050816;

--dark2:#08111D;

--dark3:#0F172A;

--card:rgba(255,255,255,.06);

--card-2:rgba(255,255,255,.08);

--border:rgba(255,255,255,.08);

--white:#fff;

--light:#F8FAFC;

--text:#CBD5E1;

--heading:#F8FAFC;

--shadow-sm:0 8px 25px rgba(0,0,0,.15);

--shadow:0 20px 60px rgba(0,0,0,.35);

--shadow-lg:0 30px 80px rgba(0,0,0,.45);

--shadow-glow:0 0 40px rgba(37,99,235,.25);

--radius:20px;

--radius-lg:30px;

--transition:.35s ease;

}


/*=================================
RESET
==================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:var(--dark);

color:var(--text);

overflow-x:hidden;

line-height:1.7;

}


.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width:80%;
        overflow: hidden;
    }

img{

max-width:100%;

display:block;

}



a{

text-decoration:none;

transition:var(--transition);

}



ul{

padding:0;

margin:0;

list-style:none;

}



section{

position:relative;

padding:110px 0;

}

.logo{
    width: 14%;
    border-radius: 8px;
    /* position: absolute; */
    float: left;
    padding-right: 20px;
}

/*=================================
TYPOGRAPHY
==================================*/

h1,
h2,
h3,
h4,
h5{

font-family:'Poppins',sans-serif;

font-weight:700;

color:var(--heading);

line-height:1.2;

}



h1{

font-size:72px;

}



h2{

font-size:52px;

}



h3{

font-size:34px;

}



p{

font-size:17px;

color:var(--text);

}



.lead-text{

font-size:22px;

margin:35px 0;

}



.sub-text{

margin-bottom:40px;

}



/*=================================
CUSTOM SCROLLBAR
==================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#09101d;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:30px;

}



/*=================================
PRELOADER
==================================*/

#preloader{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:#050816;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

z-index:99999;

}



.loader-ring{

width:75px;

height:75px;

border-radius:50%;

border:6px solid rgba(255,255,255,.08);

border-top:6px solid var(--primary);

animation:spin .8s linear infinite;

margin-bottom:25px;

}



@keyframes spin{

100%{

transform:rotate(360deg);

}

}



/*=================================
UTILITY
==================================*/

.container{

position:relative;

z-index:20;

}



.text-gradient{

background:linear-gradient(90deg,#3B82F6,#06B6D4);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}



.glass{

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

box-shadow:var(--shadow);

}



/*=================================
BUTTON
==================================*/

.btn{

padding:15px 35px;

font-weight:600;

border-radius:60px;

transition:.35s;
font-size: 15px;

}



.btn-primary{

background: linear-gradient(135deg, #1f60c8, #ff040a);

border:none;

}



.btn-primary:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(59,130,246,.45);

}



.btn-outline-light{

border:2px solid rgba(255,255,255,.2);

}



.btn-outline-light:hover{

background:#fff;

color:#111;

}



/*=================================
NAVBAR
==================================*/

.navbar{

padding:20px 0;

transition:.4s;

background:transparent;

}



.navbar.scrolled{

background:rgba(5,8,22,.92);

backdrop-filter:blur(18px);

box-shadow:0 15px 45px rgba(0,0,0,.3);

}



.navbar-brand{
    font-family: Poppins;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    width: 40%;
}



.navbar-brand span{

color:#2b91eb;

}



.nav-link{

color:#CBD5E1;

font-weight:500;

margin-left:15px;

position:relative;

}



.nav-link:after{

content:"";

position:absolute;

left:0;

bottom:-6px;

width:0;

height:2px;

background:#3B82F6;

transition:.3s;

}



.nav-link:hover:after{

width:100%;

}



.nav-link:hover{

color:#fff;

}



/*=================================
HERO
==================================*/

.hero-section{

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

position:relative;

}



.hero-tag{

display:inline-block;

padding:10px 20px;

border-radius:40px;

background:rgba(59,130,246,.15);

color:#7DD3FC;

margin-bottom:25px;

font-weight:600;

}



.hero-section h1{

font-size:72px;

font-weight:800;

max-width:780px;

margin-bottom:30px;

}



.hero-section h1 span{

color:#60A5FA;

}



.hero-buttons{

display:flex;

gap:20px;

margin-top:45px;

margin-bottom:60px;

flex-wrap:wrap;

}



.hero-stats{

display:flex;

gap:50px;

flex-wrap:wrap;

}



.stat-box h3{

font-size:42px;

margin-bottom:5px;

color:#fff;

}



.stat-box span{

font-size:15px;

color:#94A3B8;

}



/*=================================
HERO RIGHT
==================================*/

.hero-dashboard{

position:relative;

}



.glass-card{

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

padding:30px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

margin-bottom:22px;

transition:.35s;

}

.glass-card img{
    position: absolute;
    top: 0;
    right: 14px;
    width: 41%;
}

.glass-card:hover{

transform:translateY(-10px);

}



.card-icon{

width:65px;

height:65px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

background:linear-gradient(135deg,#3B82F6,#06B6D4);

margin-bottom:18px;

}



.growth-score{

margin-top:30px;

padding:40px;

border-radius:25px;

background:linear-gradient(135deg,#2563EB,#0EA5E9);

text-align:center;

color:#fff;

}



.growth-score h2{

font-size:70px;

margin:15px 0;

}



/*=================================
BACKGROUND BLUR
==================================*/

.hero-blur{

position:absolute;

border-radius:50%;

filter:blur(130px);

opacity:.45;

}



.blur-one{

width:420px;

height:420px;

background:#2563EB;

left:-100px;

top:120px;

}



.blur-two{

width:320px;

height:320px;

background:#06B6D4;

right:120px;

top:80px;

}



.blur-three{

width:260px;

height:260px;

background:#8B5CF6;

bottom:0;

right:40%;

}



/*=================================
FLOAT ANIMATION
==================================*/

.glass-card{

animation:float 6s ease-in-out infinite;

}



@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}



/*=================================
RESPONSIVE
==================================*/

@media(max-width:991px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width:100%;
        overflow: hidden;
    }

.hero-section{

text-align:center;

padding-top:140px;

}

.hero-section h1{

font-size:42px;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.nav-link{

margin-left:0;

margin-top:12px;

}
.cta-section {
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg,#2563EB,#06B6D4);
  padding:40px 12px;
  position: relative;
}
.about-deb-section {
  padding: 20px 0;
}
}



@media(max-width:576px){

.hero-section h1{

font-size:38px;

}

h2{

font-size:34px;

}

.lead-text{

font-size:18px;

}

.btn{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

}

/*=====================================================
DEB Growth Studio
File : style.css
Version : 1.0
Part : 02

Contents

11 Section Title
12 Trusted Brands
13 Problems Section
14 Services
15 Why Choose DEB
16 Industries
17 Portfolio
18 Case Studies
19 Timeline
20 Counter
21 CTA Banner

======================================================*/


/*=========================================
SECTION TITLE
=========================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(59,130,246,.12);

    color:#7DD3FC;

    font-size:14px;

    letter-spacing:1px;

    font-weight:600;

    text-transform:uppercase;

}

.section-title h2{

    margin-top:20px;

    margin-bottom:20px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}


/*=========================================
TRUSTED SECTION
=========================================*/

.trusted-section{

    background:#07111f;

    border-top:1px solid rgba(255,255,255,.05);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.brand-box{

    height:110px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.brand-box:hover{

    transform:translateY(-8px);

    border-color:#3B82F6;

}

.brand-box img{

    max-height:42px;

    opacity:.7;

    transition:.35s;

}

.brand-box:hover img{

    opacity:1;

}


/*=========================================
PROBLEMS SECTION
=========================================*/

.problem-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    height:100%;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.problem-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    border-radius:50%;

    background:rgba(59,130,246,.08);

    right:-50px;

    top:-50px;

}

.problem-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.problem-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#fff;

    margin-bottom:25px;

}

.problem-card h4{

    margin-bottom:15px;

}


/*=========================================
SERVICES
=========================================*/

.service-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:40px;

    height:100%;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#3B82F6;

}

.service-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(180deg,transparent,rgba(59,130,246,.08));

    opacity:0;

    transition:.35s;

}

.service-card:hover::after{

    opacity:1;

}

.service-icon{

    width:80px;

    height:80px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#3B82F6,#06B6D4);

    font-size:34px;

    margin-bottom:25px;

}

.service-card h3{

    margin-bottom:18px;

}

.service-card ul{

    margin-top:25px;

}

.service-card ul li{

    padding:12px 0;

    color:#CBD5E1;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.service-card ul li:last-child{

    border:none;

}

.service-link{

    display:inline-flex;

    align-items:center;

    margin-top:25px;

    color:#7DD3FC;

    font-weight:600;

}

.service-link i{

    margin-left:10px;

    transition:.3s;

}

.service-link:hover i{

    transform:translateX(8px);

}


/*=========================================
WHY CHOOSE DEB
=========================================*/

.feature-card{

    text-align:center;

    padding:35px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.07);

    transition:.35s;
min-height: 345px;
}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-number{

    width:65px;

    height:65px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#3B82F6;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-weight:700;

}


/*=========================================
INDUSTRIES
=========================================*/

.industry-card{

    text-align:center;

    padding:45px 25px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:#3B82F6;

}

.industry-card img{

    width:70px;

    margin:auto;

    margin-bottom:25px;

}

.industry-card h4{

    margin-bottom:10px;

}


/*=========================================
PREMIUM PORTFOLIO
=========================================*/

.portfolio-section{

position:relative;

overflow:hidden;

}

.portfolio-filter{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:15px;

margin-bottom:60px;

}

.portfolio-filter button{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

color:#CBD5E1;

padding:14px 28px;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.portfolio-filter button:hover,

.portfolio-filter .active{

background:linear-gradient(135deg,#2563EB,#06B6D4);

color:#fff;

border-color:transparent;

box-shadow:0 10px 30px rgba(37,99,235,.35);

}

.portfolio-card{

height:100%;

background:#111827;

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

overflow:hidden;

transition:.45s;

position:relative;

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.portfolio-card:hover{

transform:translateY(-12px);

border-color:#3B82F6;

box-shadow:0 25px 60px rgba(37,99,235,.18);

}

.portfolio-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#2563EB,#06B6D4);

}

.portfolio-image{

position:relative;

height:350px;

overflow:hidden;

}

.portfolio-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.portfolio-card:hover img{

transform:scale(1.08);

}

.portfolio-image::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:45%;

background:linear-gradient(to top,#111827,transparent);

}

.portfolio-tag{

position:absolute;

left:20px;

top:20px;

padding:8px 18px;

border-radius:30px;

background:rgba(37,99,235,.9);

backdrop-filter:blur(15px);

color:#fff;

font-size:13px;

font-weight:600;

z-index:5;

}

.portfolio-content{

padding:30px;

}

.portfolio-content h3{

font-size:28px;

margin-bottom:18px;

}

.portfolio-content p{

margin-bottom:25px;

line-height:1.8;

}

.portfolio-stats{

display:flex;

gap:12px;

flex-wrap:wrap;

margin-bottom:30px;

}

.portfolio-stats span{

padding:8px 16px;

border-radius:30px;

background:rgba(37,99,235,.10);

border:1px solid rgba(37,99,235,.20);

font-size:13px;

font-weight:600;

color:#60A5FA;

}

.portfolio-btn{

display:inline-flex;

align-items:center;

gap:10px;

color:#60A5FA;

font-weight:600;

transition:.35s;

}

.portfolio-btn i{

transition:.35s;

}

.portfolio-btn:hover{

color:#fff;

}

.portfolio-btn:hover i{

transform:translateX(8px);

}

.portfolio-cta{

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:45px;

border-radius:24px;

background:

linear-gradient(145deg,

#2563EB,

#0F172A,

#0F172A);

border:1px solid rgba(96,165,250,.35);

position:relative;

overflow:hidden;

}

.portfolio-cta::before{

content:"";

position:absolute;

width:320px;

height:320px;

border-radius:50%;

background:rgba(255,255,255,.05);

right:-140px;

top:-140px;

}

.cta-icon{

width:90px;

height:90px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,#2563EB,#06B6D4);

font-size:38px;

color:#fff;

margin-bottom:30px;

box-shadow:0 0 35px rgba(37,99,235,.45);

}

.portfolio-cta h3{

font-size:34px;

margin-bottom:20px;

}

.portfolio-cta p{

margin-bottom:35px;

max-width:320px;

}

.portfolio-cta .btn{

padding:16px 34px;

}
@media(max-width:991px){

.portfolio-image{

height:220px;

}

.portfolio-content{

padding:24px;

}

.portfolio-content h3{

font-size:24px;

}

.portfolio-filter{

gap:10px;

}

.portfolio-filter button{

padding:12px 18px;

font-size:14px;

}

}

@media(max-width:576px){

.portfolio-image{

height:200px;

}

.portfolio-cta{

padding:35px 25px;

}

.portfolio-cta h3{

font-size:28px;

}

}
.portfolio-card{

opacity:1;

transition:

opacity .4s,

transform .4s,

box-shadow .4s;

}

.portfolio-card:hover{

transform:

translateY(-12px)

scale(1.02);

}

.portfolio-card:hover .portfolio-tag{

background:

linear-gradient(

135deg,

#2563EB,

#06B6D4);

}

.portfolio-card:hover h3{

color:#60A5FA;

}
.portfolio-image img{

transition:

transform .7s ease;

}

.portfolio-card:hover img{

transform:

scale(1.12);

}

/*=========================================
CASE STUDY
=========================================*/

/*=========================================
PREMIUM CASE STUDIES
=========================================*/

.case-study-section{
    position:relative;
    overflow:hidden;
}

.case-study-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(37,99,235,.08);
    filter:blur(160px);
    left:-150px;
    top:150px;
}

.case-study-box{
    position:relative;
    overflow:hidden;
    margin-bottom:50px;
    padding:50px;
    border-radius:30px;
    background:linear-gradient(145deg,#0F172A,#111827);
    border:1px solid rgba(255,255,255,.08);
    transition:.45s;
}

.case-study-box:hover{
    transform:translateY(-10px);
    border-color:#3B82F6;
    box-shadow:0 30px 70px rgba(37,99,235,.20);
}

.case-study-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:linear-gradient(180deg,#2563EB,#06B6D4);
}

.case-image{
    overflow:hidden;
    border-radius:24px;
    position:relative;
}

.case-image img{
    width:100%;
    height:auto;
    object-fit:cover;
    transition:.6s;
}

.case-study-box:hover .case-image img{
    transform:scale(1.08);
}

.case-category{
    display:inline-flex;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(37,99,235,.15);
    color:#7DD3FC;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
    text-transform:uppercase;
}

.case-study-box h3{
    font-size:38px;
    margin-bottom:20px;
}

.case-study-box p{
    margin-bottom:30px;
    line-height:1.9;
}

.case-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.case-grid div{
    padding:22px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.case-grid div:hover{
    border-color:#3B82F6;
    transform:translateY(-5px);
}

.case-grid small{
    display:block;
    color:#94A3B8;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.case-grid h5{
    margin:0;
    font-size:19px;
    font-weight: 400;
}

.before-card,
.after-card{

    height:100%;
    padding:40px;
    border-radius:25px;
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
}

.before-card{
    border-left:6px solid #EF4444;
}

.after-card{
    border-left:6px solid #22C55E;
}

.before-card h4{
    color:#EF4444;
    margin-bottom:25px;
}

.after-card h4{
    color:#22C55E;
    margin-bottom:25px;
}

.before-card li,
.after-card li{

    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.before-card li:last-child,
.after-card li:last-child{

    border:none;
}

.case-cta{

    margin-top:80px;
    padding:70px 50px;
    border-radius:30px;
    background:linear-gradient(135deg,#2563EB,#06B6D4);
    position:relative;
    overflow:hidden;
}

.case-cta::before{

    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-100px;
    top:-100px;
}

.case-cta h2{

    color:#fff;
    font-size:52px;
    margin-bottom:20px;
}

.case-cta p{

    color:#E2E8F0;
    margin-bottom:35px;
    font-size:18px;
}

.case-cta .btn{

    padding:18px 38px;
    border-radius:50px;
    background:#fff;
    color:#111827;
    font-weight:700;
}

.case-cta .btn:hover{

    transform:translateY(-5px);
}

@media(max-width:991px){

.case-study-box{

padding:35px;

}

.case-image img{

height:260px;

}

.case-study-box h3{

font-size:30px;

}

.case-grid{

grid-template-columns:1fr;

}

.case-cta{

padding:50px 30px;

}

.case-cta h2{

font-size:36px;

}

}

@media(max-width:576px){
.navbar-brand {
  font-family: Poppins;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  width: 40%;
}
.case-study-box{

padding:25px;

}

.case-study-box h3{

font-size:26px;

}

.case-cta h2{

font-size:30px;

}

}


/*=========================================
PROCESS TIMELINE
=========================================*/

.process-section{

position:relative;

overflow:hidden;

}

.timeline{

position:relative;

max-width:1100px;

margin:70px auto 0;

padding:30px 0;

}

.timeline::before{

content:"";

position:absolute;

left:50%;

top:0;

transform:translateX(-50%);

width:3px;

height:100%;

background:linear-gradient(

to bottom,

transparent,

#3B82F6,

#3B82F6,

transparent

);

}

.timeline-item{

position:relative;

width:100%;

margin-bottom:70px;

}

.timeline-item:last-child{

margin-bottom:0;

}

.timeline-dot{

position:absolute;

left:50%;

top:55px;

transform:translateX(-50%);

width:20px;

height:20px;

border-radius:50%;

background:#3B82F6;

border:5px solid #08111D;

box-shadow:0 0 25px rgba(59,130,246,.6);

z-index:99;

}

.case-box{

width:calc(50% - 60px);

padding:38px;

background:#111827;

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

position:relative;

transition:.4s;

overflow:hidden;

}

.timeline-item:nth-child(odd) .case-box{

margin-right:auto;

}

.timeline-item:nth-child(even) .case-box{

margin-left:auto;

}

.case-box::before{

content:"";

position:absolute;

left:0;

top:0;

width:5px;

height:100%;

background:linear-gradient(

180deg,

#2563EB,

#06B6D4

);

}

.case-box::after{

content:"";

position:absolute;

top:60px;

width:35px;

height:2px;

background:#3B82F6;

}

.timeline-item:nth-child(odd) .case-box::after{

right:-35px;

}

.timeline-item:nth-child(even) .case-box::after{

left:-35px;

}
.timeline-item img{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
}
.timeline-item-left img{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
}
.case-box:hover{

transform:translateY(-10px);

border-color:#3B82F6;

box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.step-no{

display:inline-flex;

align-items:center;

justify-content:center;

width:55px;

height:55px;

border-radius:50%;

background:linear-gradient(

135deg,

#2563EB,

#06B6D4

);

font-size:22px;

font-weight:700;

color:#fff;

margin-bottom:22px;

}

.case-box h5{

font-size:15px;

color:#60A5FA;

margin-bottom:8px;

text-transform:uppercase;

letter-spacing:1px;

}

.case-box h3{

font-size:30px;

margin-bottom:18px;

}

.case-box p{

margin:0;

line-height:1.9;

color:#CBD5E1;

}

@media(max-width:991px){

.timeline::before{

left:30px;

}

.timeline-dot{

left:30px;
display: none;

}
.growth-score h2 {
  font-size: 44px;
  margin: 15px 0;
}
.case-box{

width:calc(100% - 0px);

margin-left:0px!important;

}

.case-box::after{

display:none;

}

}


/*=========================================
COUNTER
=========================================*/

.counter-box{

    text-align:center;

    padding:45px;

    border-radius:22px;

    background:linear-gradient(145deg,#0B1120,#111827);

}

.counter-box h2{

    font-size:58px;

    color:#60A5FA;

}

.counter-box span{

    display:block;

    margin-top:10px;

}


/*=========================================
CTA
=========================================*/

.cta-section{

    border-radius:40px;

    overflow:hidden;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    padding:90px 60px;

    position:relative;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-150px;

    top:-120px;

}

.cta-section h2{

    color:#fff;

}

.cta-section p{

    color:#E2E8F0;

}

.cta-section .btn{

    background:#fff;

    color:#111827;

}

.cta-section .btn:hover{

    transform:translateY(-6px);

}

/*=====================================================
DEB Growth Studio
File : style.css
Version : 1.0
Part : 03

Contents

22 Testimonials
23 Pricing
24 FAQ
25 Contact
26 Footer
27 WhatsApp
28 Scroll Top
29 Loader
30 Keyframes
31 Responsive

======================================================*/


/*=========================================
TESTIMONIAL
=========================================*/

.testimonial-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    padding:45px;

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#3B82F6;

}

.testimonial-stars{

    color:#FFD54A;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-text{

    font-size:18px;

    color:#CBD5E1;

    margin-bottom:30px;

}

.client{

    display:flex;

    align-items:center;

    gap:18px;

}

.client img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.client h5{

    margin-bottom:5px;

}

.client span{

    color:#94A3B8;

}


/*=========================================
PRICING
=========================================*/

.pricing-card{

    position:relative;

    padding:50px 40px;

    border-radius:30px;

    background:#0F172A;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

    overflow:hidden;

    height:100%;

}

.pricing-card:hover{

    transform:translateY(-12px);

}

.pricing-card.featured{

    background:linear-gradient(145deg,#2563EB,#0EA5E9);

}

.popular-tag{

    position:absolute;

    top:20px;

    right:-40px;

    width:170px;

    text-align:center;

    transform:rotate(45deg);

    background:#fff;

    color:#111;

    padding:8px;

    font-weight:700;

}

.price{

    font-size:60px;

    font-weight:800;

    color:#fff;

    margin:25px 0;

}

.price small{

    font-size:18px;

}

.pricing-card ul{

    margin:35px 0;

}

.pricing-card li{

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.pricing-card li i{

    color:#22C55E;

    margin-right:10px;

}


/*=========================================
FAQ
=========================================*/

.accordion-item{

    background:transparent;

    border:none;

    margin-bottom:18px;

}

.accordion-button{

    background:#111827;

    color:#fff;

    border-radius:18px !important;

    padding:25px;

    font-weight:600;

    box-shadow:none;

}

.accordion-button:not(.collapsed){

    background:#2563EB;

    color:#fff;

}

.accordion-body{

    background:#0F172A;

    color:#CBD5E1;

    border-radius:0 0 18px 18px;

}


/*=========================================
CONTACT
=========================================*/

.contact-box{

    padding:45px;

    border-radius:30px;

    background:#0F172A;

    border:1px solid rgba(255,255,255,.06);

}

.contact-info{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:30px;

}

.contact-icon{

    width:60px;

    height:60px;

    border-radius:16px;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

}

.form-control{

    background:#cbdaff80;

    border:1px solid rgba(255,255,255,.08);

    color:#fff !important;

    padding:18px;

    border-radius:16px;

}

.form-control:focus{

    background:#111827;

    color:#fff;

    border-color:#3B82F6;

    box-shadow:none;

}

textarea.form-control{

    min-height:180px;

}


/*=========================================
FOOTER
=========================================*/

footer{

    background:#030712;

    padding-top:90px;

}

.footer-logo{

    font-size:36px;

    font-weight:800;

    color:#fff;

}

.footer-logo span{

    color:#3B82F6;

}

.footer-title{

    color:#fff;

    margin-bottom:25px;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#94A3B8;

}

.footer-links a:hover{

    color:#fff;

    padding-left:8px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#111827;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

}

.social-icons a:hover{

    background:#2563EB;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding:25px 0;

}


/*=========================================
WHATSAPP BUTTON
=========================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#22C55E;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

    z-index:999;

    animation:pulse 2s infinite;

}


/*=========================================
SCROLL TOP
=========================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:110px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;
    z-index: 999;

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

}


/*=========================================
KEYFRAMES
=========================================*/

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.8);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

.zoom-in{

    animation:zoomIn .8s ease forwards;

}


/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:991px){
a{font-size: 15px !important;}
    section{

        padding:30px 0;

    }

    .section-title h2{

        font-size:32px;

    }

    .pricing-card,

    .testimonial-card,

    .service-card,

    .problem-card{

        margin-bottom:25px;

    }

    .timeline::before{

        display:none;

    }

}

@media (max-width:768px){

    h1{

        font-size:42px;

    }

    h2{

        font-size:32px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-stats{

        flex-direction:column;

        gap:25px;

    }

    .price{

        font-size:42px;

    }

    .contact-box{

        padding:25px;

    }

}

@media (max-width:576px){

    .btn{

        width:100%;

    }

    .section-title{

        margin-bottom:45px;

    }

    .glass-card,

    .pricing-card,

    .testimonial-card,

    .service-card{

        padding:25px;

    }

    .whatsapp{

        width:55px;

        height:55px;

        right:15px;

        bottom:15px;

    }

    .scroll-top{

        right:15px;

        bottom:85px;

    }

}

/*=========================
ROI CALCULATOR
=========================*/

.roi-section{

padding:120px 0;

background:linear-gradient(180deg,#09101d,#050816);

}

.roi-card{

background:rgba(255,255,255,.05);

padding:45px;

border-radius:25px;

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

}

.range-value{

font-size:28px;

font-weight:700;

color:#60A5FA;

margin-top:15px;

}

.roi-result{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.result-card{

padding:35px;

border-radius:22px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

text-align:center;

transition:.35s;

}

.result-card:hover{

transform:translateY(-8px);

border-color:#3B82F6;

}

.result-card small{

color:#94A3B8;

}

.result-card h2{

margin-top:15px;

font-size:42px;

color:#60A5FA;

}

.growth-message{

background:linear-gradient(135deg,#2563EB,#06B6D4);

padding:30px;

border-radius:20px;

color:#fff;

}

.growth-message p{

color:#fff;

margin-top:10px;

}

@media(max-width:768px){

.roi-result{

grid-template-columns:1fr;

}

}

/*==========================
BUSINESS AUDIT
==========================*/

.audit-section{

padding:120px 0;

background:#07111f;

}

.audit-card{

padding:45px;

border-radius:25px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

}

.audit-result{

height:100%;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

background:linear-gradient(135deg,#2563EB,#06B6D4);

border-radius:25px;

padding:40px;

text-align:center;

}

.score-circle{

width:170px;
height:170px;

margin:0 auto 35px;

border-radius:50%;

background:#fff;

display:flex;
align-items:center;
justify-content:center;

font-size:62px;
font-weight:800;

position:relative;

box-shadow:
0 20px 50px rgba(0,0,0,.18);

transition:.4s;

}

.score-circle h1{

font-size:56px;

color:#2563EB;

font-weight:800;

}
.score-circle h2{

font-size:62px;

font-weight:800;

margin:0;

line-height:1;

}
.audit-result h3{

color:#fff;

margin-bottom:20px;

}

.audit-result p{

color:#E5E7EB;

}
.score-result{

background:

linear-gradient(
135deg,
#2563EB,
#20B9E8
);

padding:60px 45px;

border-radius:28px;

position:relative;

overflow:hidden;

box-shadow:

0 25px 60px

rgba(37,99,235,.30);

}
.score-result::before{

content:"";

position:absolute;

width:300px;

height:300px;

right:-120px;

top:-120px;

border-radius:50%;

background:

rgba(255,255,255,.10);

}

.score-result h3{

font-size:42px;

font-weight:800;

margin-bottom:20px;

color:#fff;

}

.score-result p{

font-size:18px;

line-height:1.8;

color:#fff;

opacity:.95;

}

.score-card .btn:hover{

transform:

translateY(-5px);

box-shadow:

0 20px 40px

rgba(37,99,235,.30);

}

.score-card select{

height:60px;

border-radius:15px;

font-size:16px;

padding:0 18px;

}

.score-card .mb-4{

margin-bottom:28px!important;

}

.audit-heading{

font-size:34px;

font-weight:800;

margin-bottom:10px;

}

.audit-subtitle{

color:#94A3B8;

margin-bottom:35px;

font-size:17px;

line-height:1.8;

}

.score-badge{

display:inline-block;

margin:20px auto;

padding:8px 18px;

border-radius:30px;

background:rgba(255,255,255,.12);

color:#fff;

font-size:14px;

font-weight:600;

}

.score-footer{

margin-top:25px;

padding-top:20px;

border-top:1px solid rgba(255,255,255,.15);

color:#E5E7EB;

line-height:1.8;

font-size:14px;

}

.audit-result ul{

margin:18px 0 0;

padding-left:20px;

text-align:left;

}

.audit-result li{

margin:10px 0;

font-size:16px;

color:#fff;

line-height:1.6;

}

.score-circle{

transition:.4s ease;

}
/*=========================
ABOUT DEB
=========================*/

.about-deb-section{

padding:120px 0;

}

.deb-profile-card{

padding:45px;

text-align:center;

border-radius:30px;

}

.profile-image img{

width:100%;
height: auto;
margin:auto;
border-radius: 8px;

}

.profile-badge{

margin:30px 0;

}

.profile-badge span{

background:#2563EB;

padding:10px 18px;

border-radius:30px;

display:inline-block;

color:#fff;

font-size:14px;

}

.skill-card{

background:rgba(255,255,255,.05);

padding:30px;

border-radius:20px;

margin-bottom:25px;

transition:.35s;

border:1px solid rgba(255,255,255,.08);

}

.skill-card:hover{

transform:translateY(-8px);

border-color:#3B82F6;

}

.skill-card i{

font-size:40px;

color:#3B82F6;

margin-bottom:15px;

}

.experience-grid{

display:flex;

justify-content:space-between;

text-align:center;

}

.experience-grid h3{

color:#60A5FA;

font-size:42px;

}

/*=========================
BUSINESS FAIL
=========================*/

.business-fail-section{

padding:120px 0;

background:#08111d;

}

.fail-box,
.success-box{

padding:45px;

border-radius:25px;

height:100%;

}

.fail-box{

background:#1A0F16;

border:1px solid rgba(239,68,68,.25);

}

.success-box{

background:#071E17;

border:1px solid rgba(34,197,94,.25);

}

.fail-box h3{

color:#EF4444;

margin-bottom:30px;

}

.success-box h3{

color:#22C55E;

margin-bottom:30px;

}

.fail-box li,
.success-box li{

padding:15px 0;

border-bottom:1px solid rgba(255,255,255,.08);

font-size:17px;

}

.compare-card{

padding:35px;

border-radius:20px;

text-align:center;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.compare-card:hover{

transform:translateY(-10px);

border-color:#3B82F6;

}

.compare-card h2{

font-size:52px;

color:#60A5FA;

margin-bottom:10px;

}

/*=========================
TOOLS
=========================*/

.tools-section{

padding:120px 0;

}

.tool-card{

height:100%;

padding:35px;

text-align:center;

border-radius:25px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.tool-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(90deg,
transparent,
rgba(255,255,255,.08),
transparent);

transition:.8s;

}

.tool-card:hover::before{

left:100%;

}

.tool-card:hover{

transform:translateY(-12px);

border-color:#3B82F6;

}

.tool-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

display:flex;

align-items:center;

justify-content:center;

border-radius:22px;

background:linear-gradient(135deg,#2563EB,#06B6D4);

font-size:38px;

color:#fff;

}

.tool-card h4{

margin-bottom:15px;

}

.tool-card p{

margin:0;

}

.tool-card.premium{

background:linear-gradient(135deg,#2563EB,#0EA5E9);

}

.tool-card.premium h4,

.tool-card.premium p{

color:#fff;

}

/*=========================
AGENCY COMPARISON
=========================*/

.comparison-section{

padding:120px 0;

background:linear-gradient(180deg,#050816,#08111d);

}

.agency-box,
.deb-box{

padding:45px;

border-radius:28px;

height:100%;

}

.agency-box{

background:#1A0F16;

border:1px solid rgba(239,68,68,.20);

}

.deb-box{

background:#071E17;

border:1px solid rgba(34,197,94,.20);

}

.compare-header{

display:flex;

align-items:center;

gap:18px;

margin-bottom:30px;

}

.compare-header i{

font-size:42px;

}

.compare-header h3{

margin:0;

}

.agency-box li,
.deb-box li{

padding:16px 0;

border-bottom:1px solid rgba(255,255,255,.06);

font-size:16px;

}

.compare-feature{

height:100%;

padding:35px;

text-align:center;

border-radius:22px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.compare-feature:hover{

transform:translateY(-10px);

border-color:#3B82F6;

}

.compare-feature i{

font-size:42px;

color:#3B82F6;

margin-bottom:20px;

}

.comparison-cta{

margin-top:80px;

padding:70px 50px;

border-radius:30px;

background:linear-gradient(135deg,#2563EB,#06B6D4);

}

.comparison-cta h2,

.comparison-cta p{

color:#fff;

}

/*=========================
GROWTH DASHBOARD
=========================*/

.growth-system-section{

padding:120px 0;

background:#050816;

}

.growth-dashboard{

padding:40px;

border-radius:30px;

}

.dashboard-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

}

.live-badge{

background:#22C55E;

padding:8px 16px;

border-radius:30px;

font-size:13px;

font-weight:600;

color:#fff;

}

.dashboard-item{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:10px;

}

.progress{

height:10px;

background:#111827;

border-radius:30px;

overflow:hidden;

}

.google-progress{

background:#4285F4;

}

.seo-progress{

background:#22C55E;

}

.fb-progress{

background:#1877F2;

}

.progress-value{

font-weight:700;

color:#60A5FA;

}

.status-active{

padding:6px 14px;

background:#22C55E;

border-radius:20px;

color:#fff;

font-size:13px;

}

.roadmap-item{

display:flex;

gap:25px;

margin-bottom:35px;

}

.roadmap-number{

width:70px;

height:70px;

border-radius:50%;

background:linear-gradient(135deg,#2563EB,#06B6D4);

display:flex;

justify-content:center;

align-items:center;

font-size:22px;

font-weight:700;

color:#fff;

flex-shrink:0;

}

.kpi-card{

padding:35px;

text-align:center;

border-radius:25px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.kpi-card:hover{

transform:translateY(-10px);

border-color:#3B82F6;

}

.kpi-card h2{

font-size:52px;

color:#60A5FA;

margin-bottom:10px;

}

/*==================================
DIGITAL ECOSYSTEM
==================================*/

.ecosystem-section{

padding:140px 0;

position:relative;

overflow:hidden;

}

.ecosystem-wrapper{

position:relative;

width:900px;

height:900px;

margin:auto;

}

.center-node{

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

z-index:5;

}

.center-circle{

width:220px;

height:220px;

border-radius:50%;

background:linear-gradient(135deg,#2563EB,#06B6D4);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

color:#fff;

box-shadow:0 0 60px rgba(37,99,235,.45);

animation:pulseBusiness 3s infinite;

}

.center-circle i{

font-size:48px;

margin-bottom:20px;

}

.eco-item{

position:absolute;

}

.eco-card{

width:170px;

padding:25px;

text-align:center;

border-radius:22px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.eco-card:hover{

transform:scale(1.08);

border-color:#3B82F6;

}

.eco-card i{

font-size:36px;

color:#60A5FA;

margin-bottom:15px;

}

/* Position */

.eco-top{

top:0;

left:50%;

transform:translateX(-50%);

}

.eco-bottom{

bottom:0;

left:50%;

transform:translateX(-50%);

}

.eco-left{

left:0;

top:50%;

transform:translateY(-50%);

}

.eco-right{

right:0;

top:50%;

transform:translateY(-50%);

}

.eco-top-left{

left:120px;

top:120px;

}

.eco-top-right{

right:120px;

top:120px;

}

.eco-bottom-left{

left:120px;

bottom:120px;

}

.eco-bottom-right{

right:120px;

bottom:120px;

}

@keyframes pulseBusiness{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.06);

}

}

@media(max-width:991px){

.ecosystem-wrapper{
    display: none;

width:100%;

height:auto;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;
padding: 0px;

}
.cta-section {
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg,#2563EB,#06B6D4);
  padding:20px 10px;
  position: relative;
}
.about-deb-section {
  padding:30px 0;
}
.eco-item,

.center-node{

position:relative;

left:auto;

right:auto;

top:auto;

bottom:auto;

transform:none;

}

.center-circle{

margin:auto;

width:180px;

height:180px;

}

}

/* ROI CAL */

/*=========================================
PREMIUM ROI CALCULATOR
=========================================*/

.roi-section{

padding:120px 0;

position:relative;

overflow:hidden;

background:
linear-gradient(180deg,#07111F,#050816);

}

.roi-section::before{

content:"";

position:absolute;

width:520px;

height:520px;

left:-180px;

top:120px;

background:#2563EB;

opacity:.08;

filter:blur(180px);

border-radius:50%;

}

.roi-section::after{

content:"";

position:absolute;

width:420px;

height:420px;

right:-150px;

bottom:50px;

background:#06B6D4;

opacity:.08;

filter:blur(180px);

border-radius:50%;

}

/*============================*/

.roi-card{

background:#111827;

border:1px solid rgba(255,255,255,.08);

border-radius:28px;

padding:45px;

backdrop-filter:blur(20px);

box-shadow:0 20px 60px rgba(0,0,0,.25);

transition:.35s;

}

.roi-card:hover{

border-color:#3B82F6;

transform:translateY(-6px);

}

.roi-card h3{

font-size:34px;

margin-bottom:12px;

}

.roi-card p{

color:#94A3B8;

margin-bottom:35px;

}

/*============================*/

.roi-card .form-label{

font-weight:600;

margin-bottom:12px;

color:#E2E8F0;

}

.roi-card .form-control,

.roi-card .form-select{

height:58px;

background:#0F172A;

border:1px solid rgba(255,255,255,.08);

color:#fff;

border-radius:16px;

padding:0 18px;

}

.roi-card .form-control:focus,

.roi-card .form-select:focus{

border-color:#3B82F6;

box-shadow:0 0 0 .20rem rgba(59,130,246,.15);

background:#0F172A;

color:#fff;

}

.roi-card option{

background:#0F172A;

color:#fff;

}

/*============================*/

.form-range{

height:8px;

}

.form-range::-webkit-slider-thumb{

width:22px;

height:22px;

background:#3B82F6;

border-radius:50%;

cursor:pointer;

box-shadow:0 0 20px rgba(59,130,246,.45);

}

.range-value{

margin-top:18px;

font-size:44px;

font-weight:700;

color:#60A5FA;

}

/*============================*/

.roi-card .btn{

margin-top:20px;

height:62px;

border-radius:50px;

font-size:18px;

font-weight:700;

background:linear-gradient(90deg,#2563EB,#FF003C);

border:none;

transition:.35s;

}

.roi-card .btn:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(37,99,235,.35);

}

/*============================*/

.roi-result{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

}

/*============================*/

.result-card{

background:#111827;

border:1px solid rgba(59,130,246,.35);

border-radius:24px;

padding:32px;

text-align:center;

transition:.35s;

position:relative;

overflow:hidden;

}

.result-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:3px;

background:linear-gradient(90deg,#2563EB,#06B6D4);

transform:scaleX(0);

transition:.35s;

}

.result-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(37,99,235,.20);

}

.result-card:hover::before{

transform:scaleX(1);

}

.result-card small{

display:block;

font-size:15px;

color:#94A3B8;

margin-bottom:15px;

}

.result-card h2{

margin:0;

font-size:38px;

font-weight:800;

color:#60A5FA;

}

.result-card h5{

margin:0;

font-size:16px;

font-weight:400;

color:#fff;

}

/*============================*/

.growth-message{

margin-top:30px;

padding:35px;

border-radius:24px;

background:

linear-gradient(135deg,#2563EB,#06B6D4);

color:#fff;

position:relative;

overflow:hidden;

}

.growth-message::before{

content:"";

position:absolute;

width:260px;

height:260px;

right:-120px;

top:-120px;

border-radius:50%;

background:rgba(255,255,255,.08);

}

.growth-message h4{

font-size:22px;

margin-bottom:18px;

}

.growth-message p{

font-size:18px;

line-height:1.8;

margin:0;

color:#fff;

}

/*============================*/

.result-card.active{

transform:translateY(-8px);

border-color:#60A5FA;

box-shadow:0 25px 55px rgba(37,99,235,.30);

}

/*============================*/

@media(max-width:991px){

.roi-card{

padding:35px;

}

.roi-result{

margin-top:20px;

}

.result-card h2{

font-size:42px;

}

}

@media(max-width:768px){

.roi-result{

grid-template-columns:1fr;

}

.range-value{

font-size:36px;

}

.roi-card{

padding:30px;

}

}

@media(max-width:576px){

.roi-card{

padding:25px;

}

.result-card{

padding:25px;

}

.result-card h2{

font-size:34px;

}

.growth-message{

padding:25px;

}

}

.growth-message ul{

margin-top:18px;

padding-left:20px;

}

.growth-message li{

margin:10px 0;

font-size:16px;

line-height:1.7;

}

.sky-blue{
    color: #7DD3FC;
    
}