/* ====================================
HERO SECTION
==================================== */

.hero-stats{
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    width: 100%;

    margin-top: 20px;

}

.stat-card:hover {

    transform: translateY(-5px);

    border-color: rgba(0, 212, 255, 0.30);

    box-shadow:

        0 10px 35px rgba(0, 212, 255, 0.10),

        0 0 25px rgba(0, 212, 255, 0.08);
}

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

/* OLD HERO RESPONSIVE BLOCK */

@media (max-width: 768px){

	/* OLD HERO RESPONSIVE BLOCK */

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-title{
        font-size:36px;
        line-height:1.15;
        letter-spacing:-1px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .hero-buttons a{
        width:100%;
    }

    .hero-section{
        padding:80px 0 40px;


    }
}

@media (max-width:768px){

    .container{
        padding-left:20px;
        padding-right:20px;
    }
}

.hero-title{
font-weight:800;
line-height:1;
letter-spacing:-3px;
}

.gradient-text{

background:linear-gradient(
90deg,
#00D4FF,
#6B5CFF
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.hero-description{

font-size:18px;
line-height:1.75;
max-width:650px;

color:#b9c3d5;

margin-bottom:40px;

}

/* Homepage Hero Badge Override */

.hero-section .hero-badge{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background-color: rgba(0, 212, 255, 0.12);

    background-image: none !important;

    border: 1px solid rgba(0, 212, 255, 0.35);

    color: #00D4FF !important;

    -webkit-background-clip: border-box !important;

    background-clip: border-box !important;

    -webkit-text-fill-color: #00D4FF !important;

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    box-shadow:

        0 0 8px rgba(0, 212, 255, 0.45),

        0 0 20px rgba(0, 212, 255, 0.28),

        0 0 40px rgba(0, 212, 255, 0.15),

        inset 0 0 20px rgba(0, 212, 255, 0.06);

}

/* ==========================================================
   HERO HEADING HIGHLIGHT
========================================================== */

.hero-heading-highlight {

    background: linear-gradient(
        90deg,
        #00D4FF 0%,
        #38BDF8 45%,
        #8B5CF6 100%
    );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}

.stat-card h3{
margin: 0 0 8px;

    font-size: 32px;

    line-height: 1.1;

    font-weight: 800;

    color: #00D4FF;

    text-shadow:

        0 0 8px rgba(0, 212, 255, 0.45),

        0 0 18px rgba(0, 212, 255, 0.20);
}

.hero-content h1{

    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
	max-width:700px;
    margin-bottom:20px;
}

.hero-content p{
max-width:650px;
    margin-bottom:30px;
    line-height:1.8;
    color:#b9c3d5;
    font-size:18px;

}

.hero-buttons{
display:flex;
    gap:20px;
    flex-wrap:nowrap;
    justify-content:flex-start;
    margin-bottom:30px;

}

/* HERO BUTTONS */

.hero-buttons .btn-primary{

    min-width:320px;
    width:auto;

    background:linear-gradient(
        135deg,
        #00D4FF,
        #8B5CF6
    );

    border:none;

    color:#fff;

    box-shadow:
        0 15px 40px rgba(0,212,255,.25),
        0 15px 40px rgba(139,92,246,.25);

    transition:all .35s ease;

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
        0 20px 50px rgba(0,212,255,.35),
        0 20px 50px rgba(139,92,246,.35);

}

/* HERO VIEW PORTFOLIO BUTTONS */

.hero-buttons .btn-secondary{


    min-width:320px;
    width:auto;

    background:linear-gradient(
        135deg,
        #1A2340,
        #2A245F
    );

    color:#fff;

    border:1px solid rgba(139,92,246,.80);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 0 0 1px rgba(139,92,246,.40),
        0 0 35px rgba(139,92,246,.35),
        0 0 60px rgba(139,92,246,.18);

    transition:all .35s ease;

}

/* HOVER */

.hero-buttons .btn-secondary:hover{

    transform:translateY(-4px);

    background:linear-gradient(
        135deg,
        #A855F7,
        #4F8FFF,
        #00E5FF
    );

    border-color:rgba(255,255,255,.20);

    box-shadow:
        0 0 35px rgba(0,229,255,.45),
        0 0 70px rgba(168,85,247,.35);

}

.hero-image img{

width:100%;

border-radius:20px;

}

.logo-track{

display:flex;

position:relative;
    z-index:2;

align-items:center;

gap:20px;

width:max-content;

animation:logoScroll 35s linear infinite;

}

/* ====================================
STATS
==================================== */

.stat-card{
     width: 100%;

    min-width: 0;

    min-height: 140px;

    padding: 30px 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    box-shadow:

        0 0 20px rgba(0, 212, 255, 0.06);

    transition:

        transform 0.35s ease,

        border-color 0.35s ease,

        box-shadow 0.35s ease;
}

.stat-card > span {

    display: block;

    font-size: 14px;

    line-height: 1.45;

    color: rgba(255, 255, 255, 0.82);
}

/* ==========================================================
   SERVICES SECTION
========================================================== */

.services-section{

    padding:120px 0;

    position:relative;

}

.services-section .container{

    max-width:1400px;

    margin:0 auto;

}

/* ==========================================================
   SERVICES SECTION PREMIUM SPACING (V4)
========================================================== */

.services-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
    radial-gradient(circle at top,
    rgba(0,212,255,.06),
    transparent 45%);

}

.services-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:50%;

    top:-320px;

    transform:translateX(-50%);

    border-radius:50%;

    background:rgba(0,212,255,.08);

    filter:blur(130px);

    pointer-events:none;

}

.section-title{

    position:relative;

    z-index:2;

    max-width:860px;

    margin:0 auto;

    text-align:center;

}

.services-section>.container>p{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:28px auto 90px;

    text-align:center;

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,.72);

}

.section-title h2{

    margin:22px 0 0;

    font-size:60px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-1px;

}

.section-title .section-badge{

    padding:10px 22px;

    border-radius:999px;

    backdrop-filter:blur(12px);

}

.services-grid{

    position:relative;

    z-index:2;

}

@media (max-width:991px){

.section-title h2{

font-size:46px;

}

.services-section>.container>p{

font-size:18px;

margin-bottom:70px;

}

}

@media (max-width:767px){

.services-section{

padding:90px 0;

}

.section-title h2{

font-size:34px;

}

.services-section>.container>p{

font-size:17px;

line-height:1.8;

margin-bottom:50px;

}

}

/* ==========================================================
   SECTION HEADER
========================================================== */

.section-title{

    text-align:center;

    max-width:900px;

    margin:0 auto 20px;

}

.section-title h2{

    margin-top:18px;

    margin-bottom:18px;

}

.services-section> .container>p{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

    color:var(--text-light);

    line-height:1.8;

}

/* ==========================================================
   GRID
========================================================== */

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:40px;

    max-width:1280px;

    margin:0 auto;

    align-items:stretch;

}

/* ==========================================================
   CARD
========================================================== */

.service-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    height:100%;

    min-height:430px;

    padding:34px;

    border-radius:28px;

    background:rgba(18,28,60,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(0,212,255,.05),
        rgba(107,92,255,.05)
    );

    opacity:0;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,212,255,.35);

    box-shadow:

        0 30px 70px rgba(0,0,0,.35),

        0 0 30px rgba(0,212,255,.12);

}

.service-card:hover::before{

    opacity:1;

}

/* ==========================================================
   CARD TOP
========================================================== */

.service-card-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:28px;

}

.service-tag{

    padding:8px 16px;

    border-radius:999px;

    font-size:12px;

    font-weight:600;

    color:#00D4FF;

    background:rgba(0,212,255,.08);

    border:1px solid rgba(0,212,255,.18);

}

/* ==========================================================
   ICON
========================================================== */

.service-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    border-radius:22px;

    color:#00D4FF;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:

        0 15px 35px rgba(0,0,0,.20);

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:scale(1.08);

    color:#fff;

    background:linear-gradient(

        135deg,

        #00D4FF,

        #6B5CFF

    );

}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

.service-card h3{

    font-size:28px;

    line-height:1.25;

    margin-bottom:20px;

    color:#fff;

    transition:.35s;

}

.service-card p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:35px;

    flex:1;

}

/* ==========================================================
   FOOTER
========================================================== */

.service-footer{

    margin-top:auto;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.service-link:hover{

    color:#00D4FF;

}

.service-link .arrow{

    transition:.35s;

}

.service-link:hover .arrow{

    transform:translateX(6px);

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:991px){

    .services-grid{

        grid-template-columns:1fr;

        gap:30px;

    }

}

@media(max-width:767px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        min-height:auto;

    }

}

@media(max-width:992px){

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

    .section-title h2{
        font-size:42px;
    }

}

@media(max-width:768px){

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

	.industries-grid,
    .tech-grid,
    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:34px;
    }

}



/* ==========================
   INDUSTRIES
========================== */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
	max-width:1200px;
    margin:0 auto;
}

@media(max-width:992px){
    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .industries-grid{
        grid-template-columns:1fr;
    }
}

.industry-card:hover{
    transform:translateY(-6px);

    border-color:rgba(0,212,255,.35);

    background:linear-gradient(
        180deg,
        rgba(20,35,80,.95),
        rgba(8,15,40,.95)
    );

    box-shadow:
        0 15px 40px rgba(0,212,255,.12),
        0 0 30px rgba(0,212,255,.12);

    z-index:2;
}

/*
.industry-icon{

display:flex;
align-items:center;
justify-content:center;

width:80px;
height:80px;

margin:0 auto 20px;

font-size:38px;

border-radius:20px;

background:
linear-gradient(
135deg,
rgba(0,212,255,.15),
rgba(107,92,255,.15)
);

}

*/

.industry-card h3{

	font-size:26px;
    font-weight:800;
    margin:25px 0 15px;
    color:#fff;

	transition:all .4s ease;
}

.industry-card p{

    font-size:17px;

    line-height:1.8;

    color:#b9c3d5;

}

/* DUPLICATE INDUSTRIES RESPONSIVE - REMOVE AFTER FINAL AUDIT */

@media(max-width:992px){

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

}

@media(max-width:768px){

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

}

/* DUPLICATE INDUSTRIES RESPONSIVE - REMOVE AFTER FINAL AUDIT */

/* ==========================
   TECHNOLOGY STACK
========================== */

.tech-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.tech-card{

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:35px;

text-align:center;

backdrop-filter:blur(20px);

transition:.35s ease;

}

.tech-card:hover{

transform:translateY(-10px);

border-color:rgba(0,212,255,.35);

box-shadow:
0 20px 60px rgba(0,212,255,.12);

}

.tech-card:hover img{

transform:scale(1.12);

}

.tech-card{

position:relative;
overflow:hidden;

}

.tech-card p{

margin-top:10px;

font-size:14px;

color:rgba(255,255,255,.65);

line-height:1.6;

}

.tech-card h3{

margin-top:10px;
margin-bottom:8px;

font-size:22px;
font-weight:700;

}

.tech-card::before{

content:"";

position:absolute;

top:-100%;
left:-100%;

width:220%;
height:220%;

background:
radial-gradient(
circle,
rgba(0,212,255,.12),
transparent 70%
);

transition:.5s ease;

}

.tech-card:hover::before{

top:-60%;
left:-60%;

}

.tech-card img{

width:70px;
height:70px;

object-fit:contain;

margin:0 auto 20px;

display:block;

transition:.35s ease;

}

.tech-card:hover img{

transform:scale(1.12);

}

.tech-card h3{

font-size:22px;

}

@media(max-width:992px){

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

}

@media(max-width:768px){

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

}

/* ==========================
   TRUSTED BRANDS
========================== */

.logo-carousel{

    position:relative;

    overflow:visible;

    padding:30px 0 40px;

}

.logo-item{

min-width:180px;

height:90px;

position:relative;

overflow:visible;

display:flex;

align-items:center;
justify-content:center;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

font-weight:700;

font-size:18px;

color:var(--text-light);

transition:.3s ease;

}

@keyframes logoScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* ==========================
   PORTFOLIO PREMIUM
========================== */

.portfolio-placeholder{

height:220px;

display:flex;
align-items:center;
justify-content:center;

background:
linear-gradient(
135deg,
rgba(0,212,255,.08),
rgba(107,92,255,.08)
);

border-bottom:
1px solid rgba(255,255,255,.08);

}

.portfolio-placeholder span{

font-weight:700;
color:var(--text-light);

}

.portfolio-category{

display:inline-block;

margin:25px 25px 10px;

padding:8px 16px;

border-radius:50px;

background:rgba(0,212,255,.08);

color:var(--primary);

font-size:13px;
font-weight:700;

}

.portfolio-result{

    margin:0;

    font-size:16px;

    line-height:1.8;

    font-weight:400;

    color:var(--text-light);

}

.portfolio-stack{

padding:0 25px;

color:var(--text-light);

font-size:14px;

}

/* ==========================
   PORTFOLIO
========================== */



/* Mobile Fix */
@media(max-width:991px){

    .portfolio-section .portfolio-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

}

@media(max-width:768px){

    .portfolio-section .portfolio-grid{
        grid-template-columns:1fr !important;
    }

}

    .related-projects .portfolio-card{
        width:100% !important;
    }

	/* Tablet */
@media(max-width:991px){

    .related-projects .portfolio-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

}

@media(max-width:768px){

    .related-projects .portfolio-grid{
        grid-template-columns:1fr !important;
    }

}

.portfolio-card:hover{

transform:translateY(-10px);

border-color:rgba(0,212,255,.35);

box-shadow:
0 20px 60px rgba(0,212,255,.12);

}

.portfolio-content{

    padding:30px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.portfolio-card img{

width:100%;
height:240px;
object-fit:cover;

}

.portfolio-card h3{

    margin:0;

    font-size:28px;

    line-height:1.35;

    color:#fff;

}

.portfolio-card p{

padding:0 25px 25px;

}

.portfolio-category{

    display:inline-flex;

    align-self:flex-start;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(0,212,255,.08);

    color:var(--primary);

    font-size:13px;

    font-weight:700;

}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.swiper-slide-active .testimonial-card{
    border:1px solid rgba(0,212,255,.35);

    box-shadow:
        0 0 30px rgba(0,212,255,.15);
}

.testimonial-card:hover{

transform:translateY(-10px);

border-color:rgba(0,212,255,.35);

box-shadow:
0 20px 60px rgba(0,212,255,.12);

}

.rating{

font-size:22px;

margin-bottom:20px;

color:#FFD700;

}

.testimonial-card p{
    font-size:24px;
    line-height:1.8;
    font-weight:500;
    max-width:760px;
    letter-spacing:-0.2px;
	margin:0 auto 25px;
    position:relative;
	padding-left:0;
	text-wrap:balance;

}

.testimonial-card p::before{
    content:'❝';
    display:block;
    text-align:center;
    font-size:48px;
    line-height:1;
    color:rgba(0,212,255,.35);
    margin-bottom:5px;
}

.testimonial-card span{

color:var(--text-light);

}

@media(max-width:992px){

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

}

/* ==========================
   TESTIMONIAL SLIDER
========================== */

.testimonial-slider{

position:relative;
	max-width:900px;
    margin:0 auto;
}

.testimonial-slider,
.swiper,
.swiper-wrapper{
    overflow:hidden;
}


.testimonial-track{

display:flex;
gap:0px;
transition:.5s ease;

}

.testimonial-card{
     display:flex;
    flex-direction:column;

    flex:0 0 100%;
    width:100%;
    min-width:100%;
    max-width:100%;

    margin:0 auto;
    padding:25px 45px;
    min-height:420px;

    text-align:center;

    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;

    backdrop-filter:blur(20px);
}

.testimonial-card.active{
    border:1px solid rgba(0,212,255,.35);

    box-shadow:
        0 0 30px rgba(0,212,255,.12),
        0 20px 50px rgba(0,0,0,.25);
}

.testimonial-author{
    margin-top:auto;
}

.testimonial-author h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
	color:#fff;

}

.testimonial-author span,
.testimonial-author p{
    font-size:18px;
    opacity:.8;
	color:rgba(255,255,255,.7);
}

.testimonial-rating{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:25px;
}

.testimonial-rating span{
    font-size:28px;
    filter:drop-shadow(0 0 8px rgba(0,212,255,.4));
}

.testimonial-rating span:nth-child(1){
    color:#00D4FF;
}

.testimonial-rating span:nth-child(2){
    color:#29C5FF;
}

.testimonial-rating span:nth-child(3){
    color:#4DA6FF;
}

.testimonial-rating span:nth-child(4){
    color:#6366F1;
}

.testimonial-rating span:nth-child(5){
    color:#8B5CF6;
}

.testimonial-dots{

display:flex;

justify-content:center;

gap:10px;

margin-top:40px;

}

.testimonial-dots span{

width:12px;
height:12px;

border-radius:50%;

background:rgba(255,255,255,.2);

cursor:pointer;

}

.testimonial-dots span.active{

background:var(--primary);

}

@media(max-width:992px){

.testimonial-card{
min-width:100%;
}

}

/* ====================================
RESPONSIVE
==================================== */

/* OLD HERO RESPONSIVE - DO NOT USE */



/* OLD HERO RESPONSIVE BLOCK START */

	@media (max-width:768px){

.hero-section{

padding-top:120px;

}

}

/* OLD HERO RESPONSIVE BLOCK END */


.hero-stats{

margin-top:20px;

grid-template-columns:1fr 1fr;

}

.hero-buttons{

flex-direction:column;

}

.cta-box{
padding:50px 25px;

}

.cta-box h2{
font-size:36px;
}

.cta-box p{
font-size:18px;
margin:30px auto 48px;
margin-top:0;
}

.floating-whatsapp{
bottom:25px;
left:25px;

z-index:999;

}

@media (max-width:768px){

.floating-whatsapp{

width:55px;
height:55px;

}

}

/* ==========================
   HERO DASHBOARD
========================== */

.dashboard-mockup{

width:100%;
max-width:560px;
margin-top:25px;
position:relative;
z-index:20;
background:rgba(8,12,30,.88);
border:1px solid rgba(255,255,255,.08);
border-radius:30px;
overflow:hidden;
backdrop-filter:blur(20px);
box-shadow:
0 30px 80px rgba(0,0,0,.25);
}

.dashboard-header{

display:flex;
gap:10px;

padding:18px 20px;

border-bottom:
1px solid rgba(255,255,255,.08);

}

.dashboard-header span{

width:12px;
height:12px;

border-radius:50%;

background:rgba(255,255,255,.4);

}

.dashboard-body{

padding:25px;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.metric-card{

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

padding:22px;

}

.metric-card small{

display:block;

color:var(--text-light);

margin-bottom:10px;

}

.metric-card h3{

font-size:32px;

color:var(--primary);

}

/* =========================================
   HERO DASHBOARD — PREMIUM GROWTH CHART
========================================= */

.chart-card{
    grid-column:1 / -1 !important;

    height:180px;

    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;

    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.025) 0%,
            rgba(0,212,255,.015) 100%
        );
}


/* CHART GRID */

.chart-grid{
    position:absolute;
    inset:24px 34px 26px;

    background-image:
        linear-gradient(
            rgba(255,255,255,.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size:
        100% 32px,
        25% 100%;

    pointer-events:none;
}


/* SOFT AREA GLOW */

.chart-area{
    position:absolute;

    left:35px;
    right:35px;
    bottom:28px;

    height:100px;

    background:linear-gradient(
        180deg,
        rgba(0,212,255,.20) 0%,
        rgba(79,172,254,.08) 48%,
        rgba(107,92,255,0) 100%
    );

    clip-path:polygon(
        0 78%,
        24% 62%,
        48% 70%,
        73% 35%,
        100% 8%,
        100% 100%,
        0 100%
    );

    filter:blur(2px);
}


/* GROWTH LINE */

.chart-line{
    position:absolute;

    left:35px;
    right:35px;
    bottom:28px;

    height:100px;

    background:linear-gradient(
        90deg,
        #00D4FF 0%,
        #4FACFE 55%,
        #8B5CF6 100%
    );

    clip-path:polygon(
        0 76%,
        24% 60%,
        48% 68%,
        73% 33%,
        100% 6%,
        100% 10%,
        73% 37%,
        48% 72%,
        24% 64%,
        0 80%
    );

    box-shadow:
        0 0 14px rgba(0,212,255,.55),
        0 0 28px rgba(79,172,254,.30);
}


/* DATA POINTS */

.chart-point{
    position:absolute;

    width:10px;
    height:10px;

    border:2px solid #00D4FF;
    border-radius:50%;

    background:#081225;

    box-shadow:
        0 0 8px rgba(0,212,255,.95),
        0 0 18px rgba(0,212,255,.55);

    transform:translate(-50%, 50%);

    z-index:3;
}

.chart-point.point-1{
    left:35px;
    bottom:52px;
}

.chart-point.point-2{
    left:27%;
    bottom:68px;
}

.chart-point.point-3{
    left:49%;
    bottom:60px;
}

.chart-point.point-4{
    left:72%;
    bottom:95px;
}

.chart-point.point-5{
    right:30px;
    bottom:122px;
}

/* ===================================
   COMMUNICATION SOLUTIONS
=================================== */


.communication-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    max-width:1000px;

    margin:0 auto;

}

@media(max-width:768px){

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

}


/* ===================================
   RESPONSIVE OPTIMIZATION
=================================== */

/* ==================
   TABLETS
================== */

@media (max-width: 992px){

.hero-grid{
grid-template-columns:1fr;
gap:60px;
text-align:center;
}

@media(max-width:768px){

    .services-grid,
    .industries-grid,
    .tech-grid,
    .portfolio-grid{

        grid-template-columns:1fr !important;

    }

}


.hero-buttons{
justify-content:center;
}

.hero-stats{
justify-content:center;
flex-wrap:wrap;
}

.dashboard-mockup{
max-width:100%;
}

}


/* ==================
   TABLET PORTRAIT
================== */

@media (max-width:1024px){

    .hero-title{
        font-size:72px;
    }

}

@media (max-width:768px){

    .hero-title{
        font-size:48px;
        line-height:1.1;
        letter-spacing:-1px;
    }

    .hero-content{
        width:100%;
        max-width:100%;
        padding:0 20px;
        text-align:center;
    }

    .hero-subtitle{
        font-size:18px;
        line-height:1.7;
    }

    .hero-content h1{
        line-height:1.1;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .hero-buttons a{
        width:100%;
    }

    .services-grid,
    .industries-grid,
    .tech-grid,
    .portfolio-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:36px;
    }

    .chart-card{
        grid-column:span 1;
    }

    .testimonial-card{
        min-width:100%;
        padding:30px 25px;
    }

    .testimonial-card p{
        font-size:20px;
        padding-left:20px;
    }

    .testimonial-card p::before{
        font-size:50px;
        top:-5px;
    }

}


/* ==================
   MOBILE
================== */

@media (max-width: 576px){

.container{
padding:0 18px;
}

.hero-section{
padding-top:80px;
}

.hero-content p{
font-size:16px;
}

.section-title h2{
font-size:30px;
}

.stat-card{
width:100%;
}

.logo-item{
min-width:140px;
height:70px;
font-size:15px;
}

.metric-card h3{
font-size:26px;
}

.dashboard-header{
padding:15px;
}

.dashboard-body{
padding:15px;
}

}


/* ==================
   SMALL MOBILE
================== */

@media (max-width:480px){

	.hero-title{
        font-size:36px;
        line-height:1.15;
        letter-spacing:0;
    }
}


	@media(max-width:768px){

.services-section,
.industries-section{
    padding-top: 60px;
    padding-bottom: 120px;
	margin-top: -100px !important;
}

.tech-section .section-title {
    margin-bottom: 60px;

}

		.trusted-section .section-title,
.logo-carousel .section-title {
    padding-top: 0 !important;
}

.tech-section .section-title p {
    font-size: 18px;
    line-height: 1.8 !important;
    padding-bottom: 15px !important;
	overflow: visible !important;

}


.portfolio-section,
.testimonials-section,
.cta-section{

padding:80px 0;

}

}

.metric-card{
padding:18px;
}

.metric-card h3{
font-size:22px;
}

@keyframes logoScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

/* =========================
   PORTFOLIO PREMIUM
========================= */

.portfolio-card{

    position:relative;

    display:flex;

    flex-direction:column;

    height:100%;

    max-width:540px;

    width:100%;

    margin:0 auto;

    overflow:hidden;

    border-radius:24px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;

}

.portfolio-card:hover{

transform:translateY(-10px);

box-shadow:
0 20px 40px rgba(0,0,0,.25);

}

.portfolio-placeholder{

height:220px;

background:
linear-gradient(
135deg,
#00d4ff,
#6b5cff
);

display:flex;
align-items:center;
justify-content:center;

font-size:22px;
font-weight:700;
color:#fff;

}

.portfolio-tags{

display:flex;

flex-wrap:wrap;

gap:10px;

padding:0 25px 20px;

}

.portfolio-tags span{

padding:8px 14px;

border-radius:50px;

background:
rgba(0,212,255,.08);

border:
1px solid rgba(0,212,255,.15);

font-size:13px;

font-weight:600;

color:#00d4ff;

}

.portfolio-link{

display:inline-flex;

align-items:center;

gap:8px;

font-weight:600;

transition:.3s;

}

.portfolio-link:hover{

transform:translateX(6px);

}

/* Force Font Awesome */

.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
    font-family: "Font Awesome 5 Free" !important;
}

.fas,
.fa-solid {
    font-weight: 900 !important;
}

.fab,
.fa-brands {
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

/* ==========================
   PORTFOLIO IMAGE FIX
========================== */

.portfolio-placeholder{
    height:260px;
    overflow:hidden;
    border-radius:20px;
}

.portfolio-placeholder img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ==========================
   SINGLE PORTFOLIO
========================== */

.portfolio-single{
    padding:120px 0;
}

.portfolio-featured-image{
    border-radius:20px;
    overflow:hidden;
    margin-bottom:40px;
}

.portfolio-featured-image img{
    width:100%;
    display:block;
}

.portfolio-single h1{
    font-size:48px;
    margin-bottom:30px;
    color:#fff;
}

.portfolio-content{
    max-width:900px;
    color:#d6d6d6;
    line-height:1.9;
    font-size:18px;
}

.portfolio-content{
    max-width:900px;
    margin:0 auto;
}

.portfolio-content h2{
    margin-top:40px;
    margin-bottom:15px;
    font-size:32px;
    color:#fff;
}

.portfolio-content p,
.portfolio-content li{
    font-size:18px;
    line-height:1.8;
    color:#d6d6d6;
}

.related-projects .portfolio-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:30px !important;
}

@media(max-width:991px){
    .related-projects .portfolio-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

@media(max-width:768px){
    .related-projects .portfolio-grid{
        grid-template-columns:1fr !important;
    }
}

.related-projects .portfolio-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.related-projects .portfolio-placeholder{
    height:230px;
    overflow:hidden;
}

.related-projects .portfolio-placeholder img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.portfolio-cta{
    margin-top:120px !important;
    text-align:center !important;
}

.related-projects .portfolio-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.related-projects .portfolio-placeholder{
    height:220px;
    overflow:hidden;
}

.related-projects .portfolio-placeholder img{
    width:100%;
    height:100%;
    object-fit:cover;
}

@media screen and (max-width:768px){

    .related-projects .portfolio-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:20px !important;
    }

}

.project-meta{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:40px 0;
    padding:30px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
}

.project-meta div{
    color:#d6d6d6;
}

.project-meta strong{
    color:#00d4ff;
}

@media(max-width:768px){

    .project-meta{
        grid-template-columns:1fr;
    }

}

.project-demo-btn{
    margin:40px 0;
    text-align:center;
}

/* ==========================
   PORTFOLIO FILTERS
========================== */

.portfolio-filters{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
    margin-bottom:60px;
}

.filter-btn{
    padding:12px 24px;
    border-radius:50px;
    background:#0b1229;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.filter-btn:hover{
    background:linear-gradient(
        90deg,
        #00d4ff,
        #6a5cff
    );
    color:#fff;
}

.filter-btn.active{
    background:linear-gradient(
        90deg,
        #00d4ff,
        #6a5cff
    );
}

.portfolio-badge{
    display:inline-flex;
    align-self:flex-start;

    padding:8px 16px;
    margin-bottom:15px;

    border-radius:30px;

    font-size:12px;
    font-weight:600;

    background:rgba(0,212,255,.15);
    color:#00d4ff;

    border:1px solid rgba(0,212,255,.25);
}

/* Portfolio Equal Height Cards */
/*
.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:56px;

    max-width:1180px;

    margin:70px auto 0;

    align-items:stretch;

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

    .portfolio-grid{

        grid-template-columns:1fr;

        gap:32px;

    }

}

.portfolio-card .portfolio-content{
    display:flex;
    flex-direction:column;
    flex:1;
}

.portfolio-card a:last-child{
    margin-top:auto;
}

/* Industry Icons */

/* INDUSTRY CARDS */

.industry-card:hover h3{
    color:#fff;
    transform:translateY(-2px);
	 text-shadow:none;

}

.industry-card:hover i{

    transform:scale(1.15) rotate(5deg);

    text-shadow:
        0 0 20px currentColor,
        0 0 40px currentColor;

}

/* INDUSTRY ICONS */

.industry-card i{
    display:flex;
    align-items:center;
    justify-content:center;

    width:90px;
    height:90px;

    margin:0 auto 25px;

    font-size:42px;

    border-radius:24px;

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);

    transition:all .35s ease;
}

/* Colors */

.industry-card:nth-child(1) i{
    color:#00D4FF;
}

.industry-card:nth-child(2) i{
    color:#FF5E7E;
}

.industry-card:nth-child(3) i{
    color:#FFB100;
}

.industry-card:nth-child(4) i{
    color:#22C55E;
}

.industry-card:nth-child(5) i{
    color:#38BDF8;
}

.industry-card:nth-child(6) i{
    color:#A855F7;
}

.industry-card:nth-child(7) i{
    color:#F97316;
}

.industry-card:nth-child(8) i{
    color:#84CC16;
}

.industry-card{
    min-height:320px;
    position:relative;
    overflow:hidden;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    padding:35px;

    border-radius:24px;
    text-align:center;

    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);

    transition:all .4s ease;
}

.industry-card::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        #00d4ff,
        #8b5cf6
    );

    opacity:0;
    transition:.4s ease;
}

.industry-card:hover::after{
    opacity:1;
}

/* Industry Section Center Fix */

.industries-section .section-title{
    text-align:center !important;
    max-width:900px;
    margin:0 auto 60px !important;
}

.industries-section .section-title span{
    display:inline-flex !important;
    width:auto !important;
    max-width:max-content !important;
	margin-bottom:20px;

    padding:10px 22px;
    border-radius:24px;
	border:1px solid rgba(255,255,255,.06);
    background:rgba(0,212,255,.08);

    color:var(--primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* ====================================
GLOBAL SECTION TITLE FIX
==================================== */

.trusted-section{

    position:relative;

    padding:110px 0 70px;

    overflow:hidden;

    isolation:isolate;

}

.trusted-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 20% 20%,
    rgba(0,212,255,.08),
    transparent 38%),

    radial-gradient(circle at 80% 70%,
    rgba(124,92,255,.08),
    transparent 38%);

    pointer-events:none;

}

.trusted-section .container{

    position:relative;

    z-index:2;

}

@media(max-width:768px){

    .section-title h2{
        font-size:36px;
        line-height:1.3;
    }

    .section-title p{
        font-size:16px;
    }

}

/* Services Icon Colors */

.service-card:nth-child(1) i{
    color:#00D4FF; /* AI */
}

.service-card:nth-child(2) i{
    color:#6B5CFF; /* Software */
}

.service-card:nth-child(3) i{
    color:#22C55E; /* WordPress */
}

.service-card:nth-child(4) i{
    color:#38BDF8; /* Web */
}

.service-card:nth-child(5) i{
    color:#F59E0B; /* SEO */
}

.service-card:nth-child(6) i{
    color:#EF4444; /* Marketing */
}

.service-card:nth-child(7) i{
    color:#8B5CF6; /* Mobile */
}

.service-card:nth-child(8) i{
    color:#06B6D4; /* Cloud */
}

.service-card:nth-child(9) i{
    color:#10B981; /* Ecommerce */
}

.service-card:before{
    content:'';
    position:absolute;
	transition:all .4s ease;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(
        90deg,
        #00d4ff,
        #6b5cff
    );
}

.service-card:hover .service-link{
 color:#00d4ff !important;
    transform:translateX(2px);
}

.service-card:hover .service-link i{
     transform:translateX(8px) scale(1.08);

}

.service-card:hover .service-icon{
     transform:
        translateY(-4px)
        scale(1.08);

    box-shadow:
    0 0 12px rgba(255,255,255,.45),
    0 0 24px rgba(0,212,255,.45),
    0 0 36px rgba(0,212,255,.20);

    border-color:rgba(0,212,255,.35);
}

.service-card:hover .service-icon i{
    transform:scale(1.1);
    filter:drop-shadow(0 0 15px currentColor);
}

.service-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:#00d4ff;
    transition:.35s ease;
}

.service-card:hover .service-link::after{
    width:100%;
}

/* ===================================
FINAL SERVICE CARD STYLE
=================================== */

.service-card{
    position:relative;
    background:#0f1b3d;
    display:flex;
    flex-direction:column;
    border:1px solid rgba(0,212,255,.25);
    border-radius:32px;
    min-height:250px;
    overflow:hidden;
    padding:32px;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.service-card::before{
     content:'';
    position:absolute;
    top:0;

    left:10px;
    right:10px;

    height:3px;

    background:linear-gradient(
        90deg,
        #00d4ff,
        #6b5cff
    );

    border-radius:3px;

    transition:.5s ease;
}

.service-card:hover::before{
    box-shadow:
        0 0 12px rgba(0,212,255,.8),
        0 0 20px rgba(107,92,255,.5);
}

.service-card::after{
    content:'';
    position:absolute;
    inset:0;
	display:none;
    border-radius:24px;
    padding:1px;

    background:linear-gradient(
        135deg,
        rgba(0,212,255,.55),
        rgba(107,92,255,.45)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    opacity:0;
    transition:opacity .35s ease;
    pointer-events:none;
}


.service-card:hover::after{
    opacity:1;
}

.service-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:1.5px;
    opacity:.7;
    background:currentColor;
    transition:width .35s ease;
}

.service-card:hover .service-link::after{
    width:100%;
}

.service-card:hover{
    transform:translateY(-12px);

    border-color:rgba(0,212,255,.25);

    box-shadow:
        0 0 25px rgba(0,212,255,.10),
        0 16px 40px rgba(0,212,255,.10);
}

.portfolio-stat{
    display:none !important;
}



@media (max-width:768px){

    .hero-content{
        width:100% !important;
        max-width:100% !important;
        padding:0 !important;
        text-align:center !important;
    }

    .hero-content h1{
        font-size:32px !important;
        line-height:1.2 !important;
        letter-spacing:-1px !important;
        width:auto !important;
        max-width:100% !important;
        white-space:normal !important;
        word-break:break-word !important;
		margin-bottom:16px;
    }

    .hero-content p{
        max-width:100% !important;
    }

    .hero-stats{
        grid-template-columns:1fr 1fr !important;
    }

    .hero-image{
        display:flex !important;
        justify-content:center;
        align-items:center;
        margin-top:30px;
        transform:none;
    }

}

.dashboard-mockup{
    width:100%;
    max-width:560px;
    margin:0 auto;
    }

/* ====================================
HERO SECTION CLEAN VERSION
==================================== */

.hero-image{

    position:relative;

    display:flex;

    justify-content:flex-end;

    align-items:flex-start;

    width:100%;
    height:100%;

    margin-top:0;

    padding-top:0;

    z-index:30;

    filter:
        drop-shadow(0 0 25px rgba(0,212,255,.12))
        drop-shadow(0 0 35px rgba(168,85,247,.10));

}

.hero-grid {

    display:grid;

    grid-template-columns:58% 42%;

    gap:40px;

    align-items:center;

    position:relative;

    z-index:2;

    transform:translateY(-40px);
}

.hero-content{

    position:relative;

    z-index:20;

    max-width:700px;

    transform:translateY(-45px);

}

.hero-content h1{

    font-size:60px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-1px;
	max-width:800px;

    padding-bottom:10px;
    margin-bottom:14px;

	text-shadow:
0 0 20px rgba(0,212,255,.15),
0 0 40px rgba(168,85,247,.12);

    background:linear-gradient(
        90deg,
        #00E5FF,
        #4FACFE,
        #A855F7
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

}

.hero-content p{
    max-width:700px;
    margin:0 0 35px;
    line-height:1.8;
    color:#b9c3d5;
    font-size:18px;
}

.hero-buttons{
    display: flex;

    flex-direction: row;

    align-items: center;

    justify-content: flex-start;

    gap: 20px;

    flex-wrap: nowrap;

    margin-top: 28px;

    margin-bottom: 30px;
}

/* ====================================
   HERO WORLD MAP
==================================== */

.hero-section{
    isolation:isolate;
}

/* ====================================
HERO MOBILE
==================================== */

@media (max-width:768px){

    .hero-section{
        padding:90px 0 40px !important;
    }

    .hero-grid{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:30px !important;
    }

    .hero-content{
        width:100% !important;
        max-width:100% !important;
        padding:0 12px !important;
        text-align:center !important;
    }

    .hero-content h1{
        font-size:40px !important;
        line-height:1.08 !important;
        letter-spacing:-1px !important;
        white-space:normal !important;
        overflow-wrap:break-word !important;
    }

    .hero-content p{
        max-width:100% !important;
        font-size:16px !important;
    }

    .hero-buttons{
        flex-direction:column !important;
        gap:15px !important;
    }

    .hero-buttons a{
        width:100% !important;
    }

    .hero-stats{
        grid-template-columns:1fr 1fr !important;
    }

    .hero-image{
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        margin-top:20px !important;
        transform:none !important;
    }

    .dashboard-mockup{
        width:100% !important;
        max-width:260px !important;
        margin:0 auto !important;
        transform:none !important;
        height:auto !important;
        min-height:0 !important;
    }

    .dashboard-body{
        grid-template-columns:1fr !important;
        padding:15px !important;
    }

	.contact-hero-stats{
gap:25px;
flex-wrap:wrap;
}

.contact-hero-stats strong{
font-size:28px;
}

.contact-hero-actions{
flex-direction:column;
align-items:center;
}

}


/* =========================
   PORTFOLIO VIEW ALL BUTTON
========================= */

.portfolio-view-all{

    display:flex;

    justify-content:center;

    align-items:center;

    margin:40px 0 70px;

}

.portfolio-view-all .btn-primary{

    min-width:220px;

}


/* ==========================================
CONTACT PAGE
========================================== */

.page-hero,
.contact-section,
.map-section,
.faq-section{
background:#050816;
}

.page-hero{

padding:100px 0 0;

min-height:900px;

display:flex;
align-items:flex-start;
justify-content:center;
padding:40px 0 10px;
position:relative;

text-align:center;

overflow:hidden;

background-image:
        linear-gradient(
           rgba(5,8,22,.15),
			rgba(5,8,22,.25)
        ),
url("../images/contact-bg.webp");

background-size:cover;
background-position:center -45px;
background-repeat:no-repeat;
border-bottom:1px solid rgba(255,255,255,.05);

}

.page-hero::after{
content:'';
position:absolute;
bottom:0;
left:0;
width:100%;
height:1px;
background:rgba(255,255,255,.05);
}

.page-hero::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:radial-gradient(
circle,
rgba(0,212,255,.18),
transparent 70%
);
top:-200px;
left:50%;
transform:translateX(-50%);
pointer-events:none;
}

.page-hero-content{
	max-width:900px;
    margin:0 auto;
	padding-top:120px;
    padding-bottom:120px;
	padding-bottom:110px;
	position:relative;
	z-index:2;

}

.page-hero h1{
font-size:64px;
line-height:1.1;
font-weight:800;
margin-bottom:20px;
color:#fff;
}

.page-hero p{
font-size:18px;
line-height:1.8;
color:#B8C5D6;
max-width:760px;
margin:0 auto;
}

.contact-hero-stats{
display:flex;
justify-content:center;
gap:60px;
margin-top:35px;
margin-bottom:35px;
}

.contact-hero-stats div{
display:flex;
flex-direction:column;
align-items:center;
}

.contact-hero-stats strong{
font-size:34px;
font-weight:800;
color:#00D4FF;
line-height:1;
}

.contact-hero-stats span{
margin-top:8px;
font-size:14px;
color:#B8C5D6;
}

.contact-hero-actions{
display:flex;
justify-content:center;
gap:18px;
margin-top:10px;
}

.contact-hero-actions .btn-secondary{
padding:14px 30px;
border-radius:999px;
border:1px solid rgba(255,255,255,.12);
background:rgba(255,255,255,.04);
color:#fff;
font-weight:600;
transition:.3s;
}

.contact-hero-actions .btn-secondary:hover{
transform:translateY(-2px);
border-color:#00D4FF;
background:rgba(255,255,255,.08);
}

.contact-section{
	padding:90px 0 100px;
    background:#050816;
	position:relative;
	z-index:5;
}

.grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-info h2{
font-size:42px;
margin-bottom:20px;
color:#fff;
}

.contact-info > p{
color:#B8C5D6;
margin-bottom:40px;
line-height:1.8;
}

.contact-card{
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
border-radius:18px;
padding:24px;
margin-bottom:20px;
backdrop-filter:blur(10px);
}

.contact-card h3{
font-size:20px;
margin-bottom:8px;
color:#fff;
}

.contact-card p{
color:#B8C5D6;
margin:0;
}

.contact-form-wrap{
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
border-radius:24px;
padding:40px;
backdrop-filter:blur(10px);
}

.contact-form-wrap input,
.contact-form-wrap textarea{
width:100%;
padding:16px 18px;
margin-bottom:18px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.12);
background:rgba(255,255,255,0.04);
color:#fff;
font-size:15px;
}

.contact-form-wrap textarea{
min-height:160px;
resize:none;
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder{
color:#9CAFC3;
}

.map-section{
padding:100px 0;
background:#050816;
}

.map-placeholder{
height:450px;
border-radius:24px;
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
color:#B8C5D6;
}

.faq-list{
max-width:900px;
margin:auto;
}

.faq-item{
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
border-radius:20px;
padding:25px;
margin-bottom:20px;
}

.faq-item h3{
color:#fff;
margin-bottom:10px;
}

.faq-item p{
color:#B8C5D6;
margin:0;
}

@media(max-width:768px){

.page-hero{
padding:90px 0 60px;
}

.page-hero h1{
font-size:42px;
}

.page-hero p{
font-size:16px;
}

.grid-2{
grid-template-columns:1fr;
gap:40px;
}

.contact-info h2{
font-size:34px;
}

.contact-form-wrap{
padding:25px;
}

.hero-content p{
max-width:320px;
margin-left:auto;
margin-right:auto;
}

}

/* ====================================
HERO SECTION WOW BACKGROUND
==================================== */

.hero-section {
    position: relative;
    overflow: visible;
    isolation: isolate;

    padding: 120px 0 40px;

    background:

        radial-gradient(
            circle at 15% 30%,
            rgba(0, 212, 255, 0.12),
            transparent 25%
        ),

        radial-gradient(
            circle at 85% 70%,
            rgba(168, 85, 247, 0.10),
            transparent 25%
        ),

        linear-gradient(
            180deg,
            #020611 0%,
            #050816 40%,
            #07112A 100%
        );
}


.hero-section .container{

position:relative;
	z-index:10;

}


.hero-section::before{

content:'';

position:absolute;

inset:0;

background:
url('../images/world-map.webp')
center center
no-repeat;

background-size:100% auto;

opacity:.30;

pointer-events:none;

z-index:0;

}


.hero-section::after{
display:none;
}


.hero-content,
.hero-image{

position:relative;

z-index:2;

}


/* LEFT ENERGY GLOW */

.hero-section .container::before{

content:'';

position:absolute;

left:-250px;
top:80px;

width:700px;
height:700px;

background:
radial-gradient(
circle,
rgba(0,212,255,.28),
transparent 70%
);

filter:blur(90px);

pointer-events:none;

z-index:1;

}

/* RIGHT ENERGY GLOW */

.hero-section .container::after{

content:'';

position:absolute;

right:-250px;
top:120px;

width:800px;
height:800px;
	opacity:1;

background:
radial-gradient(
circle,
rgba(168,85,247,.22),
transparent 70%
);

filter:blur(120px);

pointer-events:none;

z-index:1;

}

.hero-motto{

display:block;

margin-top:14px;
margin-bottom:18px;

font-size:14px;
font-weight:600;

letter-spacing:5px;

text-transform:uppercase;

color:#8B5CF6;

opacity:.75;

}

.footer-tech-logo{

max-width:220px;

}

.footer-tagline{
    margin-top:8px;
}

/* ==========================================
PREMIUM CONTACT PAGE V2
========================================== */

.contact-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:center;
}

.contact-content h2{
font-size:56px;
line-height:1.1;
margin:20px 0;
color:#fff;
}

.contact-content > p{
font-size:18px;
line-height:1.8;
color:#B8C5D6;
max-width:650px;
margin-bottom:40px;
}

/* ===================================
   GLOBAL SECTION BADGE
=================================== */

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 28px;

    border-radius:999px;

    border:1px solid rgba(0,212,255,.35);

    background:

    linear-gradient(
        180deg,
        rgba(20,35,70,.85),
        rgba(10,18,38,.92)
    );

    color:#18d8ff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    box-shadow:

    0 0 25px rgba(0,212,255,.18),

    inset 0 0 18px rgba(0,212,255,.08);

}

.contact-highlights{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:40px;
}

.highlight-card{
padding:24px;
border-radius:20px;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px);
transition:.3s;
}

.highlight-card:hover{
transform:translateY(-5px);
border-color:rgba(0,212,255,.35);
}

.highlight-card h3{
font-size:18px;
margin-bottom:10px;
color:#fff;
}

.highlight-card p{
margin:0;
color:#B8C5D6;
}

.contact-stats{
display:flex;
gap:50px;
margin-top:20px;
}

.stat-item h3{
font-size:42px;
margin:0;
color:#00D4FF;
}

.stat-item span{
color:#B8C5D6;
font-size:14px;
}

.contact-form-box{
position:relative;
padding:40px;
border-radius:30px;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(14px);
overflow:hidden;
}

.contact-form-box::before{
content:'';
position:absolute;
inset:-100px;
background:
radial-gradient(
circle,
rgba(0,212,255,.15),
transparent 70%
);
pointer-events:none;
}

.form-header{
position:relative;
z-index:2;
margin-bottom:30px;
}

.form-header h3{
font-size:32px;
margin-bottom:10px;
color:#fff;
}

.form-header p{
color:#B8C5D6;
}

.contact-form-box form{
position:relative;
z-index:2;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
padding:18px;
margin-bottom:18px;
border-radius:14px;
border:1px solid rgba(255,255,255,.12);
background:rgba(255,255,255,.04);
color:#fff;
}

.contact-form-box textarea{
height:180px;
resize:none;
}

.contact-form-box button{
width:100%;
}

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
gap:40px;
}

.contact-content h2{
font-size:38px;
}

.contact-highlights{
grid-template-columns:1fr;
}

.contact-stats{
justify-content:space-between;
gap:15px;
}

.stat-item h3{
font-size:28px;
}

.contact-form-box{
padding:25px;
}

}

.contact-trust-box{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
padding:30px;
margin-top:30px;
}

/* CONTACT PAGE HEADING GRADIENT */

.page-hero h1,
.contact-content h2,
.form-header h3,
.map-section h2,
.faq-section h2{

background:linear-gradient(
90deg,
#00E5FF,
#4FACFE,
#A855F7
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;

}

/* Contact Form 7 Inputs */

.contact-form-box input,
.contact-form-box textarea {

    font-size: 16px !important;
	font-weight: 500;
    line-height: 1.5;

}

/* Placeholder */

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {

    font-size: 15px;
    opacity: 0.75;
	height:52px;

}

.contact-form-box label {

    font-size: 14px;
    font-weight: 600;
	color:#E5E7EB;

}

.contact-form-box .wpcf7-submit {

    font-size: 16px;
    font-weight: 600;

}

.wpcf7-submit{

    height:54px;
    font-size:16px;
    font-weight:700;

}

/* ==========================================
VISIT OFFICE SECTION
========================================== */

.office-grid{
display:grid;
grid-template-columns:1.4fr .8fr;
gap:40px;
align-items:stretch;
margin-top:60px;
}

.office-map{
border-radius:24px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
background:rgba(255,255,255,.03);
min-height:500px;
}

.office-map iframe{
width:100%;
height:100%;
min-height:500px;
border:0;
display:block;
}

.office-info{
display:flex;
flex-direction:column;
gap:20px;
}

.office-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
padding:25px;
backdrop-filter:blur(12px);
}

.office-card h3{
font-size:22px;
margin-bottom:10px;
color:#fff;
}

.office-card p{
margin:0;
line-height:1.8;
color:#B8C5D6;
}

.office-info .btn-primary{
margin-top:10px;
text-align:center;
}

@media(max-width:991px){

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

.office-map{
min-height:400px;
}

.office-map iframe{
min-height:400px;
}

}

/* ==========================================
PREMIUM FAQ
========================================== */

.faq-section{

    padding:120px 0;

    background:#050816;

}

.faq-list{
max-width:1000px;
margin:60px auto 0;
}

.faq-item{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
padding:30px;
margin-bottom:20px;
transition:.3s;
backdrop-filter:blur(12px);
}

.faq-item:hover{
transform:translateY(-4px);
border-color:rgba(0,212,255,.25);
box-shadow:0 20px 50px rgba(0,212,255,.08);
}

.faq-item h3{
font-size:24px;
margin-bottom:15px;
color:#fff;
}

.faq-item p{
color:#B8C5D6;
line-height:1.8;
margin:0;
}

/* ==========================================
CONTACT SERVICES
========================================== */

.contact-services-section{
padding:120px 0;
}

.contact-services-section .section-title{
max-width:900px;
margin:0 auto 70px;
}

.contact-services-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:60px;
}

.contact-service-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
padding:35px;
backdrop-filter:blur(12px);
transition:.35s ease;
}

.contact-service-card:hover{
transform:translateY(-6px);
border-color:rgba(0,229,255,.35);
box-shadow:
0 0 30px rgba(0,229,255,.8),
0 25px 60px rgba(0,212,255,.10);
}

.contact-service-card h3{
font-size:28px;
font-weight:800;
line-height:1.3;

background:linear-gradient(
90deg,
#00E5FF,
#4FACFE,
#A855F7
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.contact-service-card ul{
list-style:none;
padding:0;
margin:0;
}

.contact-service-card li{
padding:12px 0 12px 28px;
position:relative;
color:#B8C5D6;
border-bottom:1px solid rgba(255,255,255,.05);
}

.contact-service-card li::before{
content:"✓";
position:absolute;
left:0;
top:12px;
color:#00D4FF;
font-weight:700;
}

.contact-service-card li:last-child{
border-bottom:none;
}

@media(max-width:768px){

.contact-services-grid{
grid-template-columns:1fr;
}

}

.service-badges{

display:flex;
flex-wrap:wrap;
gap:10px;

margin-top:20px;

}

.service-badges span{

display:inline-flex;
align-items:center;
justify-content:center;

padding:8px 14px;

border-radius:999px;

font-size:12px;
font-weight:600;
letter-spacing:.5px;

color:#00D4FF;

background:rgba(255,255,255,.03);

border:1px solid rgba(0,212,255,.20);

transition:.3s ease;

}

.service-badges span:hover{

transform:translateY(-2px);

border-color:#00D4FF;

box-shadow:
0 0 15px rgba(0,212,255,.25);

}



/* ==========================================
SERVICES LIST LI
========================================== */


.service-list li{

display:flex;
justify-content:space-between;
align-items:center;
gap:15px;

}

.service-tag{

display:inline-flex;
align-items:center;
justify-content:center;

min-width:95px;

padding:6px 14px;

border-radius:30px;

font-size:14px;
font-weight:600;

color:#00D4FF;

background:rgba(0,212,255,.08);

border:1px solid rgba(0,212,255,.25);

}

/* =========================
   FAQ SECTION
========================= */

.faq-accordion{

max-width:900px;
margin:60px auto 0;

}

.faq-item{

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

margin-bottom:20px;

overflow:hidden;

transition:.35s ease;

}

.faq-item:hover{

transform:translateY(-2px);

border-color:rgba(0,229,255,.25);

}

.faq-item.active{

border-color:rgba(0,229,255,.30);

box-shadow:
0 0 30px rgba(0,229,255,.08);

}

.faq-question{

width:100%;

background:none;

border:none;

padding:28px 30px;

display:flex;

align-items:center;

justify-content:space-between;

cursor:pointer;

color:#fff;

font-size:22px;

font-weight:700;

text-align:left;

}

.faq-question span:first-child{

flex:1;

}

.faq-icon{

font-size:32px;

font-weight:700;

color:#00E5FF;

margin-left:20px;

transition:.3s ease;

}

/*

.faq-answer{

    display:block;

    max-height:0;

    overflow:hidden;

    opacity:0;

    padding:0 30px;

    transition:
        max-height .45s ease,
        opacity .35s ease,
        padding .35s ease;

}

*/

.faq-answer p{

margin:0;

font-size:16px;

line-height:1.8;

color:rgba(255,255,255,.75);

}

/* closed items */

@media(max-width:768px){

.whatsapp-float{
width:54px;
height:54px;
left:15px;
bottom:15px;
}

.whatsapp-float i{
font-size:28px;
}

}

@media(max-width:768px){

.back-to-top{
width:54px;
height:54px;
right:15px;
bottom:15px;
}

}

/* =========================
   FLOATING BUTTON HOVER
========================= */

.whatsapp-float,
.back-to-top{
position:fixed;
overflow:visible;
}

.whatsapp-float::before,
.back-to-top::before{

content:'';
position:absolute;
inset:-15px;
border-radius:50%;

opacity:0;
transition:.35s ease;

z-index:-1;

}

#floating-whatsapp::before{

background:#25D366;
filter:blur(25px);

}

.back-to-top::before{

background:linear-gradient(
45deg,
#00D4FF,
#4FACFE,
#A855F7
);

filter:blur(25px);

}

.whatsapp-float:hover::before,
.back-to-top:hover::before{

opacity:.9;

}

/* WhatsApp Hover */

#floating-whatsapp:hover{

transform:translateY(-6px) scale(1.12);

box-shadow:
0 0 25px #25D366,
0 0 50px #25D366,
0 0 80px rgba(37,211,102,.9),
0 0 120px rgba(37,211,102,.7),
0 0 160px rgba(37,211,102,.5);

}

@media (hover:hover){

.whatsapp-float:hover{
    transform:translateY(-4px) scale(1.08);
}

.back-to-top:hover{
    transform:translateY(-4px) scale(1.08);
}

}

/* =========================
   WHATSAPP FLOAT
========================= */

a[href*="wa.me"]{
transition:all .35s ease !important;
}

a[href*="wa.me"]:hover{

transform:translateY(-6px) scale(1.15);

box-shadow:
0 0 20px #25D366,
0 0 40px #25D366,
0 0 80px #25D366,
0 0 120px rgba(37,211,102,.9),
0 0 180px rgba(37,211,102,.8);

}


/* MOBILE FLOATING BUTTONS */

@media(max-width:768px){

#floating-whatsapp{

left:15px !important;
bottom:15px !important;

width:60px;
height:60px;

}

#backToTop{

right:15px !important;
bottom:15px !important;

width:55px;
height:55px;

}

}

@media(max-width:768px){

.footer-bottom{
padding-bottom:90px;
}

}

@media(max-width:768px){

#floating-whatsapp{
left:15px;
bottom:75px !important;
}

#backToTop{
right:15px;
bottom:75px !important;
}

}

/* ====================================
   CTA SECTION V3
==================================== */

.cta-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
    radial-gradient(circle at top right, rgba(0,212,255,.08), transparent 35%),
    radial-gradient(circle at bottom left, rgba(107,92,255,.08), transparent 35%),
    var(--dark);

}

.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    padding:80px;

    background:linear-gradient(
    145deg,
    #181c2f,
    #10131f
    );

    border:1px solid rgba(0,212,255,.15);

    box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    left:-180px;
    top:-180px;

    border-radius:50%;

    background:radial-gradient(
    rgba(0,212,255,.22),
    transparent 70%
    );

    filter:blur(40px);

    pointer-events:none;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-180px;
    bottom:-180px;

    border-radius:50%;

    background:radial-gradient(
    rgba(123,97,255,.18),
    transparent 70%
    );

    filter:blur(40px);

    pointer-events:none;

}

/* ==========================
   FELIX CTA AURORA
========================== */

.cta-box{

    position:relative;

    overflow:hidden;

    max-width:1280px;

    margin:0 auto;

    padding:110px 90px;

    border-radius:36px;

    text-align:center;

    background:
        linear-gradient(145deg,
        rgba(18,24,42,.96),
        rgba(12,16,30,.98));

    border:1px solid rgba(0,225,255,.12);

    box-shadow:

        0 40px 120px rgba(0,0,0,.45),

        inset 0 1px 0 rgba(255,255,255,.04),

        0 0 80px rgba(0,225,255,.08);

}

.cta-box h2 span{

    background:linear-gradient(
        90deg,
        #00d8ff,
        #7b61ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.cta-trust{

    display:flex;

    justify-content:center;

    gap:50px;

    margin-top:45px;

    flex-wrap:wrap;

}

.cta-trust div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#d8e6ff;

    font-weight:600;

}

.cta-trust span{

    opacity:.9;

}

.cta-glow{

    position:absolute;

    width:600px;

    height:600px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    background:

        radial-gradient(circle,
        rgba(0,225,255,.12),
        transparent 70%);

    filter:blur(80px);

    pointer-events:none;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    left:-220px;
    top:-220px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(0,225,255,.18) 0%,
        transparent 70%);

    animation:felixAuroraOne 14s ease-in-out infinite;

    z-index:-2;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    right:-180px;
    bottom:-220px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(123,97,255,.18) 0%,
        transparent 70%);

    animation:felixAuroraTwo 16s ease-in-out infinite;

    z-index:-2;

}

@keyframes felixAuroraOne{

    0%{
        transform:translate(0,0) scale(1);
    }

    50%{
        transform:translate(70px,40px) scale(1.12);
    }

    100%{
        transform:translate(0,0) scale(1);
    }

}

@keyframes felixAuroraTwo{

    0%{
        transform:translate(0,0) scale(1);
    }

    50%{
        transform:translate(-60px,-40px) scale(1.10);
    }

    100%{
        transform:translate(0,0) scale(1);
    }

}

/*==============================
GRID
==============================*/

.cta-grid{

    display:grid;

    grid-template-columns:1.4fr .8fr;

    gap:68px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*==============================
LEFT
==============================*/

.cta-content{

    position:relative;

    margin-top:-20px;

    max-width:620px;

    margin-right:40px;

}

.cta-content .section-badge{

    margin-bottom:30px;

}

.cta-content h2{

    font-size:64px;

    line-height:1.05;

    max-width:650px;

    font-weight:800;

    margin-bottom:28px;

    color:#fff;

}

.cta-content h2 span{

    background:linear-gradient(
90deg,
#18D8FF,
#42A5FF,
#6C63FF,
#8B5CF6
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/*==============================
RIGHT STATS
==============================*/

.cta-stats{

    display:grid;

    grid-template-columns:repeat(2,210px);

    gap:16px;

}

/*==============================
BUTTONS
==============================*/

.cta-buttons .btn{

    min-width:215px;

    justify-content:center;

     height:56px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.cta-box{

padding:60px 40px;

}

.cta-grid{

grid-template-columns:1fr;

gap:55px;

}

.cta-content{

text-align:center;

}

.cta-content p{

margin:0 auto 40px;

}

.cta-buttons{

justify-content:center;

}

}

@media(max-width:640px){

.cta-box{

padding:40px 25px;

}

.cta-content h2{

font-size:42px;

}

.cta-content p{

font-size:17px;

}

.cta-stats{

grid-template-columns:1fr;

}

.cta-buttons{

flex-direction:column;

}

.cta-buttons .btn{

width:100%;

}

}

/* ==========================
   CTA MOBILE
========================== */

@media (max-width:768px){

.cta-box{

padding:60px 16px;

}

.cta-box h2{

font-size:42px;

line-height:1.06;

letter-spacing:-0.8px;

margin-bottom:18px;

}

.cta-box h2 span{

display:block;

padding-bottom:6px;

 background:linear-gradient(
        90deg,
        #18C8FF 0%,
        #4EA6FF 45%,
        #7C6DFF 75%,
        #A855F7 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

}

.cta-line{

display:block;

margin-top:6px;

}

.cta-text{

max-width:100%;

margin:24px auto 34px;

font-size:17px;

line-height:1.7;

color:#C6D3E8;

}

.cta-box .btn-primary{

padding:18px 40px;

font-size:17px;

}

}

/* ===========================
   GLOBAL SECTION HEADER
=========================== */

.section-header{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

}

.section-header p{

    max-width:760px;

    margin:18px auto 0;

    font-size:18px;

    line-height:1.8;

    color:var(--text-light);

}

.section-header .section-title{

    font-size:56px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:-2px;

    margin:0;

    background:linear-gradient(
        90deg,
        #00D4FF,
        #4FACFE,
        #8B5CF6
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.section-header p{

    max-width:760px;

    margin:18px auto 0;

    font-size:18px;

    line-height:1.8;

    color:var(--text-light);

}

/* ==========================
   GLOBAL SECTION TITLE
========================== */

.section-title{

    max-width:820px;

    margin:0 auto 65px;

    text-align:center;

}

.section-title .section-badge{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    align-self:center;

    margin:0 auto 18px;

}

.section-title .section-badge{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 18px;

}

.section-title .section-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:auto;

    padding:10px 18px;

    margin-bottom:16px;

    border-radius:999px;

    background:rgba(0,212,255,.10);

    border:1px solid rgba(0,212,255,.45);

    backdrop-filter:blur(15px);

    box-shadow:
        0 0 8px rgba(0,212,255,.50),
        0 0 20px rgba(0,212,255,.35),
        0 0 40px rgba(0,212,255,.20);

    color:#00D4FF;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

}

.section-title h2{

    margin:28px 0 22px;

    font-size:56px;

    line-height:1.08;

    font-weight:800;

    background:

    linear-gradient(
        90deg,
        #18d8ff,
        #68a8ff,
        #9d6dff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.section-title p{

    max-width:760px;

    margin:auto;

    color:#b9c9df;

    font-size:19px;

    line-height:1.9;

}

/* ==========================
   TRUSTED SECTION
========================== */

.trusted-section .container{

    display:flex;
    flex-direction:column;
    align-items:center;

}

.trusted-section .section-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 20px;

    margin:0 auto 20px;

    border-radius:999px;

    background:rgba(0,212,255,.10);

    border:1px solid rgba(0,212,255,.45);

    color:#00D4FF;

    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

    backdrop-filter:blur(15px);

    box-shadow:
        0 0 10px rgba(0,212,255,.55),
        0 0 24px rgba(0,212,255,.35),
        0 0 45px rgba(0,212,255,.18);

    position:relative;

}

.trusted-section .section-badge::before{

    content:"";

    position:absolute;

    inset:1px 1px auto 1px;

    height:45%;

    border-radius:999px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.12),
        transparent
    );

    pointer-events:none;

}

.trusted-section .section-title{

    max-width:900px;
    margin:0 auto 24px;

    text-align:center;

    font-size:56px;
    line-height:1.18;
    padding-bottom:16px;
    font-weight:800;
    letter-spacing:-2px;

    overflow:visible;

    background:linear-gradient(
        90deg,
        #00D4FF,
        #4FACFE,
        #8B5CF6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

}

.trusted-section p{

    max-width:780px;
    margin:0 auto 60px;

    text-align:center;

    font-size:18px;
    line-height:1.8;

    color:var(--text-light);

}

/* =========================
   TRUSTED SECTION DESCRIPTION FIX
========================= */

.trusted-section .section-title p{

    max-width:850px !important;

    margin:-20px auto 55px !important;

    font-size:18px !important;

    line-height:1.8 !important;

    font-weight:400 !important;

    text-align:center !important;

    color:#b9c3d5 !important;

    background:none !important;

    background-image:none !important;

    -webkit-background-clip:border-box !important;

    background-clip:border-box !important;

    -webkit-text-fill-color:#b9c3d5 !important;

    letter-spacing:0 !important;

    text-shadow:none !important;

}

/* =========================
   OUR EXPERTISE SECTION FIX
========================= */

.services-section .section-title h2{

    padding-bottom:12px !important;

    line-height:1.15 !important;

    overflow:visible !important;

}


/* =========================
   OUR EXPERTISE DESCRIPTION FIX
========================= */

.services-section > .container > p{

    max-width:1050px !important;

    margin:18px auto 34px !important;

    font-size:17px !important;

    line-height:1.7 !important;

    font-weight:400 !important;

    text-align:center !important;

    color:#b9c3d5 !important;

    background:none !important;

    background-image:none !important;

    -webkit-background-clip:border-box !important;

    background-clip:border-box !important;

    -webkit-text-fill-color:#b9c3d5 !important;

    letter-spacing:0 !important;

    text-shadow:none !important;

}

/* =========================
   SERVICES HEADER FINAL FIX
========================= */

.services-section .section-title{
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 14px !important;
    padding-bottom: 0 !important;
}

.services-section .section-title h2{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 8px !important;
}

.services-section .section-title + p{
    max-width: 760px !important;
    width: 100%;
    margin: 0 auto 32px !important;

    text-align: center;
    line-height: 1.7;
}

/* =========================
   COMMUNICATION DESCRIPTION WIDTH FIX
========================= */

.communication-section .section-title > p{
    max-width: 760px !important;
    width: 100% !important;

    margin: 20px auto 32px !important;

    text-align: center !important;
    line-height: 1.7 !important;
}

/* =========================================
   TRUSTED LOGO SLIDER — MOBILE BOTTOM GAP
========================================= */

@media (max-width: 768px){

    .logo-carousel{
        margin-bottom:190px !important;
    }

}

/* =========================================
   HOMEPAGE SECTION BADGE TEXT COLOR FINAL
========================================= */

.home .section-badge{
    color:#00D4FF !important;

    background-color:rgba(0,212,255,.10) !important;
    background-image:none !important;

    -webkit-background-clip:border-box !important;
    background-clip:border-box !important;

    -webkit-text-fill-color:#00D4FF !important;
}

/* ==========================================================
   FELIX HERO GLASS CARDS
========================================================== */

.hero-visual{

    position:relative;

    width:100%;
    height:680px;

    display:flex;

    justify-content:flex-end;

    align-items:flex-start;

    overflow:visible;

    padding-top:60px;

    transform:translateX(180px);

}

/* =======================================================
   HERO V2 — CARD SYSTEM
======================================================= */

.floating-card{

    position:relative;
    left:auto;
    top:auto;
    right:auto;
    bottom:auto;
    transform:none !important;

    width:230px;

    min-height:132px;

    display:flex;

    align-items:center;

    gap:16px;

    padding:20px;

    box-sizing:border-box;

    border-radius:22px;

    overflow:hidden;

    isolation:isolate;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.04)
    );

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(20px);

    box-shadow:

    0 20px 45px rgba(0,0,0,.25);

    transition:

    border-color .35s,

    box-shadow .35s,

    background .35s;

    pointer-events:auto;

}

.floating-card:hover{

    border-color:#19d4ff;

    box-shadow:

    0 25px 60px rgba(0,212,255,.18);

}

.floating-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

    115deg,

    transparent 15%,

    rgba(255,255,255,.18) 48%,

    transparent 82%

    );

    transform:translateX(-180%) skewX(-18deg);

    animation:felixShine 8s linear infinite;

}

/* ===================================
   RESTORE CARD SIZE
=================================== */

.floating-card{

    width:230px;
    min-height:130px;
    padding:22px;

    display:flex;
    align-items:center;

    border-radius:24px;

    box-sizing:border-box;

}

/* Hover */



/* ---------------------------
   Icon
---------------------------- */

.card-icon{

    width:56px;

    height:56px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:28px;

    background:

    linear-gradient(

    135deg,

    rgba(0,212,255,.20),

    rgba(123,97,255,.20)

    );

    border:1px solid rgba(255,255,255,.12);

}

/* ---------------------------
   Text
---------------------------- */

.card-content{

    flex:1;

}

.card-content h4{

    margin:0 0 6px;

    font-size:18px;

    font-weight:700;

    line-height:1.25;

    color:#fff;

}

.card-content p{

    margin:0;

    font-size:14px;

    line-height:1.45;

    color:#BFD2F4;

}

/* ==========================================================
   FLOAT ANIMATIONS
========================================================== */

@keyframes floatOne{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes floatTwo{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(8px);

    }

    100%{

        transform:translateY(0);

    }

}

.card-ai{

    animation:floatOne 7s ease-in-out infinite;

}

.card-web{

    animation:floatTwo 9s ease-in-out infinite;

}

.card-seo{

    animation:floatOne 8s ease-in-out infinite;

}

.card-cloud{

    animation:floatTwo 10s ease-in-out infinite;

}

.card-mobile{

    animation:floatOne 8.5s ease-in-out infinite;

}

.card-whatsapp{

    animation:floatTwo 9.5s ease-in-out infinite;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:991px){

    .hero-visual{

        height:560px;

    }

    .floating-card{

        width:170px;

        padding:14px;

    }

    .card-content h4{

        font-size:15px;

    }

    .card-content p{

        font-size:12px;

    }

}

@media(max-width:767px){

    .hero-visual{

        height:460px;

    }

    .floating-card{

        transform:scale(.82);

    }

}

/* ==========================
   CLIENT LOGOS MARQUEE
========================== */

.clients-section{
    padding:120px 0;
    overflow:hidden;
}

.logo-marquee{
    width:100%;
    overflow:hidden;
    margin-top:70px;
    position:relative;
}

.logo-marquee::before,
.logo-marquee::after{
    content:"";
    position:absolute;
    top:0;
    width:180px;
    height:100%;
    z-index:0;
    pointer-events:none;
}

.logo-marquee::before{
    left:0;
    background:linear-gradient(to right,#070b18 0%,transparent 100%);
}

.logo-marquee::after{
    right:0;
    background:linear-gradient(to left,#070b18 0%,transparent 100%);
}

.logo-track{

    display:flex;
    align-items:center;
    gap:26px;
    overflow:visible;
    width:max-content;

    animation:felixMarquee 34s linear infinite;

}

.logo-marquee:hover .logo-track{
    animation-play-state:paused;
}

.logo-track span{

    flex:0 0 auto;

    padding:16px 30px;

    border-radius:999px;

    position:relative;

    overflow:visible;

    isolation:isolate;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(0,225,255,.10);

    color:#fff;

    font-weight:600;

    font-size:16px;

    letter-spacing:.3px;

    backdrop-filter:blur(14px);

     transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 10px 30px rgba(0,0,0,.25);

}

.logo-track span::before{

    content:"";

    position:absolute;

    top:-6px;
    left:-6px;
    right:-6px;
    bottom:-6px;

    border-radius:20px;
     inset:0;
    border:2px solid transparent;

    opacity:0;

    transition:.35s;

    pointer-events:none;

}

.logo-track span:hover{

    transform:translateY(-4px);

    border-color:rgba(24,216,255,.55);

    color:#00e5ff;

    box-shadow:
        0 0 0 1px rgba(24,216,255,.85),
        0 0 18px rgba(24,216,255,.35),
        0 0 38px rgba(24,216,255,.18);

}

.logo-track span:hover::before{

    opacity:1;

    border-color:#18d8ff;

    box-shadow:
        inset 0 0 0 1px #18d8ff,
        0 0 18px rgba(24,216,255,.45);

}

@keyframes felixMarquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* ====================================
   FELIX CTA PREMIUM POLISH
==================================== */

/* Bigger Stats */

.cta-stat h3{

    font-size:58px;

    line-height:1;

    margin-bottom:16px;

    background:linear-gradient(
        90deg,
        #18D8FF,
        #5B7CFF
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* Hover */

/* ====================================
   CTA Paragraph
==================================== */

.cta-content p{

max-width:540px;

font-size:20px;

line-height:1.7;

color:#c6d0e3;

margin-bottom:42px;

}

/* Better buttons */

.cta-buttons .btn{

    min-width:230px;

    height:60px;

    font-size:17px;

    border-radius:999px;

    transition:.35s;

}

.cta-buttons .btn:hover{

    transform:translateY(-4px);

}

/* Animated center glow */

.cta-box{

    isolation:isolate;

}

.cta-box::before{

    animation:felixAuroraOne 16s ease-in-out infinite;

}

.cta-box::after{

    animation:felixAuroraTwo 18s ease-in-out infinite;

    right:-80px;

    bottom:-80px;

    opacity:.12;

}

.cta-box .cta-glow{

    position:absolute;

    inset:0;

    pointer-events:none;

    z-index:0;

}

.cta-box .cta-glow::before{

    content:"";

    position:absolute;

    left:50%;

    top:50%;

    width:520px;

    height:520px;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(0,212,255,.10),

    transparent 70%);

    filter:blur(70px);

    animation:felixPulse 8s ease-in-out infinite;

}

/* Keep content above glow */

.cta-grid{

    position:relative;

    z-index:2;

}

@keyframes felixPulse{

0%{

transform:translate(-50%,-50%) scale(1);

opacity:.6;

}

50%{

transform:translate(-50%,-50%) scale(1.18);

opacity:1;

}

100%{

transform:translate(-50%,-50%) scale(1);

opacity:.6;

}

}

/* ====================================
   FELIX CTA FINAL POLISH v3
==================================== */

.cta-grid{

    align-items:center;

    gap:90px;

}

.cta-content h2{

    max-width:720px;

    line-height:.96;

    letter-spacing:-2px;

}

.cta-box{

    border:1px solid rgba(0,212,255,.18);

    box-shadow:

    inset 0 1px 0 rgba(255,255,255,.05),

    0 40px 100px rgba(0,0,0,.45),

    0 0 90px rgba(0,212,255,.08);

}

.cta-box::before{

    filter:blur(70px);

}

.cta-box::after{

    filter:blur(70px);

}

.cta-box:hover{

    box-shadow:

    inset 0 1px 0 rgba(255,255,255,.05),

    0 50px 120px rgba(0,0,0,.55),

    0 0 120px rgba(0,212,255,.12);

}

.cta-content{

    animation:felixFadeLeft .9s ease both;

}

.cta-stats{

    animation:felixFadeRight .9s ease both;

}

@keyframes felixFadeLeft{

    from{

        opacity:0;

        transform:translateX(-40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes felixFadeRight{

    from{

        opacity:0;

        transform:translateX(40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@media(max-width:992px){

    .cta-grid{

        gap:55px;

    }

    .cta-stat{

        width:100%;

        height:170px;

    }

}

@media(max-width:768px){

    .cta-content p{

        font-size:18px;

    }

    .cta-stat h3{

        font-size:48px;

    }

}

/* ====================================
   CTA STATS
==================================== */

.cta-stat{

    width:210px;

    height:190px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:30px;

    text-align:center;

    border-radius:22px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02)
    );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:none;

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

}

.cta-stat:hover{

    transform:translateY(-8px) scale(1.03);

    border-color:#19d4ff;

    box-shadow:
    0 18px 40px rgba(0,212,255,.16),
    0 0 40px rgba(0,212,255,.20);

}

.cta-stat span{

    font-size:18px;

    line-height:1.6;

    color:#d5def0;

}

/* ====================================
   CTA BUTTONS
==================================== */

.cta-buttons{

display:flex;

justify-content:flex-start;

align-items:center;

gap:18px;

margin-top:12px;

}

/* ====================================
   FELIX HERO SIDE DECORATIONS
==================================== */

.hero-section{
    position:relative;
    overflow:hidden;
}

/* Side Wrapper */

.hero-side{

    position:absolute;

    top:0;
    bottom:0;

    width:240px;

    pointer-events:none;

    z-index:1;

}

.hero-side-left{

    left:0;

}

.hero-side-right{

    right:0;

}

/* Grid */

.hero-side-grid{

    position:absolute;

    inset:0;

    opacity:.22;

    background-image:

        linear-gradient(rgba(0,212,255,.12) 1px, transparent 1px),

        linear-gradient(90deg, rgba(0,212,255,.12) 1px, transparent 1px);

    background-size:34px 34px;

    mask-image:linear-gradient(to right,
        rgba(0,0,0,1),
        transparent);

    -webkit-mask-image:linear-gradient(to right,
        rgba(0,0,0,1),
        transparent);

}

.hero-side-right .hero-side-grid{

    mask-image:linear-gradient(to left,
        rgba(0,0,0,1),
        transparent);

    -webkit-mask-image:linear-gradient(to left,
        rgba(0,0,0,1),
        transparent);

}

/* Glow */

.hero-side-glow{

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    filter:blur(90px);

    opacity:.35;

}

.hero-side-left .hero-side-glow{

    top:18%;

    left:-120px;

    background:#00D4FF;

}

.hero-side-right .hero-side-glow{

    bottom:18%;

    right:-120px;

    background:#7B61FF;

}

/* Responsive */

@media(max-width:991px){

.hero-side{

display:none;

}

}

/* ====================================
   HOMEPAGE PREMIUM BACKGROUND
==================================== */

.homepage-wrapper{

    position:relative;

    overflow:hidden;

}

.homepage-bg{

    position:absolute;

    top:0;

    bottom:0;

    width:180px;

    pointer-events:none;

    z-index:0;

}

.homepage-bg-left{

    left:0;

}

.homepage-bg-right{

    right:0;

}

.homepage-grid{

    position:absolute;

    inset:0;

    opacity:.18;

    background-image:

        linear-gradient(rgba(0,212,255,.16) 1px, transparent 1px),

        linear-gradient(90deg, rgba(0,212,255,.16) 1px, transparent 1px);

    background-size:40px 40px;

    animation:gridMove 20s linear infinite;

}

.homepage-glow{

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at center,

        rgba(0,212,255,.18),

        transparent 70%);

    filter:blur(70px);

    animation:gridGlow 8s ease-in-out infinite;

}

@keyframes gridMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(40px);

    }

}

@keyframes gridGlow{

    0%{

        opacity:.25;

    }

    50%{

        opacity:.7;

    }

    100%{

        opacity:.25;

    }

}

/* Keep sections above background */

.homepage-wrapper > *{

    position:relative;

    z-index:2;

}

/* ====================================
   FELIX MOTION SYSTEM v1.1
   HERO INDIVIDUAL FLOATING CARDS
==================================== */



.floating-card-inner{

    width:100%;

    height:100%;

    transition:
        transform .22s ease-out;

    will-change:transform;

}

/* AI */

.card-ai .floating-card-inner{

    animation:floatAI 7s ease-in-out infinite;

}

.card-web .floating-card-inner{

    animation:floatWeb 8s ease-in-out infinite;

}

.card-seo .floating-card-inner{

    animation:floatSEO 6.5s ease-in-out infinite;

}

.card-cloud .floating-card-inner{

    animation:floatCloud 9s ease-in-out infinite;

}

.card-mobile .floating-card-inner{

    animation:floatMobile 7.5s ease-in-out infinite;

}

.card-whatsapp .floating-card-inner{

    animation:floatWhatsApp 8.5s ease-in-out infinite;

}

/* ====================================
   KEYFRAMES
==================================== */

@keyframes floatAI{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-16px);

    }

}

@keyframes floatWeb{

    0%,100%{

        transform:translate(0,0) rotate(0deg);

    }

    50%{

        transform:translate(-10px,-14px) rotate(-2deg);

    }

}

@keyframes floatSEO{

    0%,100%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(10px);

    }

}

@keyframes floatCloud{

    0%,100%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(-8px,-10px);

    }

}

@keyframes floatMobile{

    0%,100%{

        transform:translateY(0) rotate(0deg);

    }

    50%{

        transform:translateY(-18px) rotate(2deg);

    }

}

@keyframes floatWhatsApp{

    0%,100%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(8px,-12px);

    }

}

/* ====================================
   HERO CARD POSITIONS
==================================== */



/* ===================================
   HERO CARDS CONTAINER
=================================== */

.hero-cards-grid{

    position:absolute;

    inset:0;

    transform:translateX(480px);

    width:100%;

    height:100%;

    display:block;

    pointer-events:none;

    z-index:10;

}

.cards-column{

    display:flex;

    flex-direction:column;

    gap:46px;

}

.cards-column:first-child{

    margin-top:-30px;

}

.cards-column:last-child{

    margin-top:30px;

}

/*=========================================
AI CORE
=========================================*/

.hero-core{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:160px;
    height:160px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.core-dot{

    position:absolute;

    inset:38px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    #6ef3ff 0%,

    #33b5ff 45%,

    #675dff 100%);

    box-shadow:

    0 0 35px rgba(0,212,255,.55),

    0 0 90px rgba(106,90,255,.45);

}

.core-glow{

    position:absolute;

    inset:-40px;

    width:150px;
    height:150px;

    filter:blur(18px);

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(0,212,255,.22),

    transparent 72%);

}

.core-ring{

    position:absolute;

    inset:0;

    border-radius:50%;

    border:1px solid rgba(0,212,255,.28);

}

.ring-1{

    animation:ringPulse 4s linear infinite;

}

.ring-2{

    animation:ringPulse 4s linear infinite 1.2s;

}

.ring-3{

    animation:ringPulse 4s linear infinite 2.4s;

}

@keyframes ringPulse{

    0%{

        transform:scale(.72);

        opacity:0;

    }

    30%{

        opacity:.85;

    }

    100%{

        transform:scale(1.45);

        opacity:0;

    }

}

/*=========================================
NETWORK
=========================================*/

.hero-network{

    position:absolute;

    inset:0;

    pointer-events:none;

    z-index:1;

}

.hero-network span{

    position:absolute;

    height:2px;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(0,212,255,.7),

    transparent);

    animation:dataFlow 5s linear infinite;

}

.line-1{

    width:210px;

    top:34%;

    left:41%;

    transform:rotate(-18deg);

}

.line-2{

    width:180px;

    top:46%;

    left:44%;

    transform:rotate(22deg);

}

.line-3{

    width:220px;

    top:56%;

    left:40%;

    transform:rotate(-12deg);

}

.line-4{

    width:200px;

    top:67%;

    left:46%;

    transform:rotate(18deg);

}

@keyframes dataFlow{

    0%{

        opacity:.15;

        background-position:0;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:.15;

        background-position:220px;

    }

}

/*=========================================
FELIX CURSOR LIGHT
=========================================*/

.hero-light{

    position:absolute;

    width:340px;

    height:340px;

    border-radius:50%;

    pointer-events:none;

    z-index:1;

    opacity:.55;

    transform:translate(-50%,-50%);

    background:
    radial-gradient(circle,
    rgba(0,212,255,.22) 0%,
    rgba(79,70,229,.12) 45%,
    transparent 72%);

    filter:blur(28px);

    transition:
        left .12s linear,
        top .12s linear;

}

/* ==========================================
   PREMIUM GLASS SHINE
========================================== */



@keyframes felixGlassShine{

    0%{

        transform:translateX(-180%) skewX(-22deg);

    }

    100%{

        transform:translateX(220%) skewX(-22deg);

    }

}

@keyframes felixShine{

    from{

        transform:translateX(-180%) skewX(-18deg);

    }

    to{

        transform:translateX(220%) skewX(-18deg);

    }

}

/* ==========================================
   PREMIUM CARD ICONS
========================================== */



.floating-card:hover .card-icon{

    transform:scale(1.12);

    box-shadow:
        0 0 28px rgba(0,212,255,.55),
        0 0 55px rgba(126,87,255,.35);

}

/* ============================
   SYMMETRIC CIRCLE LAYOUT
============================ */



/*==================================================
  FELIX HERO RADIAL LAYOUT
==================================================*/

.hero-cards-grid{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    pointer-events:none;

}

/* ---------------- CORE ---------------- */

.hero-core{

    position:absolute;

    left:50%;
    top:50%;

    width:140px;
    height:140px;

    transform:translate(-50%,-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:30;

}

/* --------------- CARDS ---------------- */

.hero-cards-grid .floating-card{

    position:absolute;

    width:230px;

    pointer-events:auto;

    z-index:20;

}

/* TOP */

.card-ai{
left:76%;
top:12%;
}


/* TOP RIGHT */

.card-web{
left:82%;
top:29%;
}

/* RIGHT */

.card-cloud{
left:83%;
top:57%;
}

/* BOTTOM */

.card-whatsapp{
left:76%;
top:80%;
}

/* BOTTOM LEFT */

.card-mobile{
left:63%;
top:64%;
}

/* LEFT */

.card-seo{
left:62%;
top:31%;
}

.core-logo img{

    width:68px;
    height:68px;
    object-fit:contain;

}

.core-logo{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:100%;

}

/*====================================
 HERO CLUSTER V2
====================================*/

.hero-cluster{

    position:relative;

    width:100%;
    height:100%;

    top:0;
    right:0;

    transform:translate(-80px,0);

    z-index:5;

}


/* =========================================================
   FEATURED PROJECT — LIGHT SWEEP
   ========================================================= */

.featured-project{

    position:relative;

    isolation:isolate;

}


/*
   Premium moving light across the featured card.
   This does NOT change the content or layout.
*/

.featured-project::after{

    content:"";

    position:absolute;

    top:-20%;

    left:-80%;

    width:45%;

    height:140%;

    transform:rotate(18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.055),
            transparent
        );

    pointer-events:none;

    z-index:1;

    animation:
        portfolioLightSweep 7s ease-in-out infinite;

}


/* Keep card content above the light */

.featured-project > *{

    position:relative;

    z-index:2;

}


/* =========================================================
   RIGHT SIDE PROJECT LIST
   ========================================================= */

.portfolio-list{

    position:relative;

    display:flex;

    flex-direction:column;

    gap:16px;

}


/* =========================================================
   MINI PROJECT PREMIUM MOTION
   ========================================================= */

.mini-project{

    position:relative;

    overflow:hidden;

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease,
        box-shadow .4s ease;

}


.mini-project::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    transform:skewX(-18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.045),
            transparent
        );

    pointer-events:none;

    transition:left .7s ease;

}


.mini-project:hover{

    transform:translateX(8px);

    border-color:rgba(0,212,255,.28);

    background:
        rgba(20,33,58,.94);

    box-shadow:
        0 15px 40px rgba(0,0,0,.22),
        0 0 28px rgba(0,212,255,.07);

}


.mini-project:hover::before{

    left:140%;

}


/* =========================================================
   FOOTER BUTTON
   ========================================================= */

.portfolio-footer{

    margin-top:60px;

    text-align:center;

}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes portfolioAmbientGlow{

    0%{

        transform:
            translateX(-50%)
            scale(.92);

        opacity:.65;

    }

    100%{

        transform:
            translateX(-50%)
            scale(1.08);

        opacity:1;

    }

}


@keyframes portfolioAmbientFloat{

    0%{

        transform:translate(0,0) scale(.92);

        opacity:.45;

    }

    100%{

        transform:translate(-80px,-45px) scale(1.08);

        opacity:.8;

    }

}


@keyframes portfolioLightSweep{

    0%{

        left:-80%;

        opacity:0;

    }

    15%{

        opacity:1;

    }

    45%{

        left:140%;

        opacity:.75;

    }

    100%{

        left:140%;

        opacity:0;

    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:992px){

    .portfolio-section{

        padding:110px 0;

    }

    .portfolio-grid{

        grid-template-columns:1fr;

        gap:26px;

        margin-top:55px;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:768px){

    .portfolio-section{

        padding:90px 0;

    }

    .portfolio-section::before{

        width:520px;

        height:520px;

        top:-250px;

    }

    .portfolio-section::after{

        width:300px;

        height:300px;

        right:-160px;

        bottom:-140px;

    }

    .portfolio-grid{

        grid-template-columns:1fr;

        gap:22px;

        margin-top:45px;

    }

    .portfolio-list{

        gap:14px;

    }

    .mini-project:hover{

        transform:translateY(-4px);

    }

}

/*=========================================================
  FEATURED PROJECT
=========================================================*/

.featured-project{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    min-height:430px;

    padding:42px;

    border-radius:30px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    background:
    linear-gradient(
    180deg,
    rgba(20,33,58,.90),
    rgba(10,18,35,.98));

    backdrop-filter:blur(18px);

    transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

    box-shadow:

    0 30px 80px rgba(0,0,0,.32),

    inset 0 1px 0 rgba(255,255,255,.05);

}

.featured-project::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top left,

    rgba(0,212,255,.12),

    transparent 42%);

    pointer-events:none;

}

.featured-project:hover{

    transform:translateY(-8px);

    border-color:rgba(0,212,255,.30);

    box-shadow:

    0 40px 90px rgba(0,0,0,.40),

    0 0 45px rgba(0,212,255,.14);

}

/*=========================================================
  PROJECT PREVIEW
=========================================================*/

.project-preview{

    width:120px;

    height:120px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:28px;

    margin-bottom:40px;

    background:

    linear-gradient(
    135deg,
    rgba(0,212,255,.16),
    rgba(255,255,255,.05));

    border:1px solid rgba(255,255,255,.08);

}

.project-content{

    margin-top:auto;

}

.project-emoji{

    font-size:60px;

    line-height:1;

}

/*==============================================================
Development Process V1 (Cards Layout) - BACKUP
==============================================================*/

/*==============================================================
Development Process
==============================================================*/

.development-process{
    padding:120px 0;
}

.development-process .section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.development-process .process-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:24px;

}

.development-process .process-card{

    position:relative;

    overflow:visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background:linear-gradient(
        180deg,
        #18233c 0%,
        #111a30 100%
    );

    border:1px solid rgba(0,224,255,.18);

    border-radius:22px;

    padding:35px 28px;

    text-align:center;

    min-height:260px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.development-process .process-card:hover{

    transform:translateY(-10px);

    border-color:#00e0ff;

    box-shadow:
        0 22px 55px rgba(0,224,255,.22);

}

.development-process .process-icon{

    width:74px;
    height:74px;

    margin:0 auto 24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
transition:.35s ease;
    background:rgba(0,224,255,.08);

    border:1px solid rgba(0,224,255,.25);

}

.development-process .process-card:hover .process-icon{

    transform:scale(1.08);

    background:rgba(0,224,255,.12);

    border-color:#00e0ff;

}

.development-process .process-icon i{

    font-size:30px;

    color:#00e0ff;

}

.development-process .process-number{

    font-size:38px;

    font-weight:800;

    color:#00e0ff;
    text-shadow:
    0 0 12px rgba(0,224,255,.45);
    margin-bottom:20px;

}

.development-process h3{

    margin-bottom:16px;

}

.development-process p{

    font-size:15px;

    line-height:1.8;

}

.development-process .process-card:not(:last-child)::after{

    content:"";

    position:absolute;

    top:64px;

    left:100%;

    width:24px;

    height:3px;

    background:linear-gradient(
        90deg,
        rgba(0,224,255,.15),
        rgba(0,224,255,.9),
        rgba(0,224,255,.15)
    );

    box-shadow:0 0 12px rgba(0,224,255,.65);

}

.development-process .process-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    background:radial-gradient(
        circle at top,
        rgba(0,224,255,.08),
        transparent 65%
    );

    opacity:0;

    transition:opacity .35s ease;

    pointer-events:none;

}

.development-process .process-card:hover::before{

    opacity:1;

}

.development-process .process-card h3{
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.development-process .process-card p{
    margin-top: 8px;
}


/*==================== END V1 BACKUP ====================*/

/*==============================================================
Why Choose Felix
==============================================================*/

.why-felix{
    padding:120px 0;
}

.why-felix .section-title{
    max-width:860px;
    margin:0 auto 70px;
    text-align:center;
}

.why-felix .why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.why-felix .why-card{

    position:relative;
display: flex;
flex-direction: column;
justify-content: flex-start;
min-height: 260px;
    overflow:hidden;

    background:linear-gradient(
        180deg,
        #18233c 0%,
        #111a30 100%
    );

    border:1px solid rgba(0,224,255,.18);

    border-radius:22px;

    padding:38px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.why-felix .why-card:hover{

    transform:translateY(-8px);

    border-color:#00e0ff;

    box-shadow:
        0 20px 50px rgba(0,224,255,.18);

}

.why-felix .why-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    background:radial-gradient(
        circle at top,
        rgba(0,224,255,.08),
        transparent 70%
    );

    opacity:0;

    transition:.35s ease;

    pointer-events:none;

}

.why-felix .why-card:hover::before{

    opacity:1;

}

.why-felix .why-icon{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    margin-bottom:32px;

    background:rgba(0,224,255,.08);

    border:1px solid rgba(0,224,255,.22);

    transition:.35s ease;

}

.why-felix .why-card h3{
    min-height: 72px;
    display:flex;
    align-items:center;
}

.why-felix .why-card:hover .why-icon{

    transform:scale(1.08);

    border-color:#00e0ff;

    background:rgba(0,224,255,.12);

}

.why-felix .why-icon i{

    font-size:34px;

    color:#00e0ff;

}

.why-felix h3{

    margin-bottom:18px;

    font-size:28px;

}

.why-felix p{

    font-size:16px;

    line-height:1.9;

    color:rgba(255,255,255,.82);

}

/*================ Tablet ================*/

@media (max-width:991px){

    .why-felix .why-grid{

        grid-template-columns:1fr;

    }

}

/*================ Mobile ================*/

@media (max-width:767px){

    .why-felix{

        padding:80px 0;

    }

    .why-felix .section-title{

        margin-bottom:50px;

    }

    .why-felix .why-card{

        padding:28px;

    }

    .why-felix h3{

        font-size:24px;

    }

}

/*==============================================================
FAQ Section
==============================================================*/

.homepage-faq{
    padding:120px 0;
}

.homepage-faq .section-title{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.faq-wrapper{
    max-width:950px;
    margin:0 auto;
}

.faq-item{

    background:linear-gradient(
        180deg,
        #18233c 0%,
        #111a30 100%
    );

    border:1px solid rgba(0,224,255,.15);

    border-radius:20px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.35s ease;

}

.faq-item:hover{

    border-color:#00e0ff;

    box-shadow:
        0 15px 35px rgba(0,224,255,.10);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:28px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    color:#fff;

    font-size:20px;

    font-weight:700;

    text-align:left;

}

.faq-question i{

    color:#00e0ff;

    font-size:18px;

    transition:.35s ease;

}

.faq-answer p{

    margin:0;

    color:#bfc7d9;

    line-height:1.9;

    font-size:16px;

}

.faq-item.active{

    border-color:#00e0ff;

    box-shadow:
        0 0 30px rgba(0,224,255,.12);

}

/*

.faq-item.active .faq-answer{

    max-height:300px;

    opacity:1;

    padding:0 30px 30px;

}

*/

.faq-item.active .faq-question i{

    transform:rotate(180deg);

}

/* ==========================================================
   HERO RESPONSIVE — TABLET
========================================================== */

@media (max-width: 1100px) {

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 50px;

        transform: none;
    }

    .hero-content {

        max-width: 850px;

        transform: none;
    }

    .hero-stats {

        grid-template-columns: repeat(4, minmax(0, 1fr));

    }

}


/* ==========================================================
   HERO RESPONSIVE — MOBILE
========================================================== */

@media (max-width: 767px) {

    .hero-section {

        padding: 90px 0 30px;

    }

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        transform: none;

    }

    .hero-content {

        max-width: 100%;

        transform: none;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

        width: 100%;

        gap: 14px;

    }

    .hero-buttons a {

        width: 100%;

        text-align: center;

    }

    .hero-stats {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 14px;

    }

    .stat-card {

        min-height: 115px;

        padding: 22px 16px;

        border-radius: 18px;

    }

    .stat-card h3 {

        font-size: 27px;

    }

    .stat-card > span {

        font-size: 13px;

    }

}


/* ==========================================================
   HERO RESPONSIVE — SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .hero-section {

        padding-top: 75px;

    }

    .hero-stats {

        grid-template-columns: 1fr 1fr;

    }

    .hero-motto {

        font-size: 11px;

        letter-spacing: 3px;

    }

}

/* ==========================================================
   HERO STATS — DESKTOP FINAL OVERRIDE
========================================================== */

.hero-section .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: 100%;
    margin-top: 20px;
}

.hero-section .stat-card {
    width: 100% !important;
    min-width: 0 !important;
}

/* ============================================================
   FELIX HOMEPAGE — SERVICES / OUR EXPERTISE
   PART 2
   ============================================================ */

.services-section {
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden;
    isolation: isolate;
}

/* ------------------------------------------------------------
   BACKGROUND GLOW
   ------------------------------------------------------------ */

.services-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -260px;
    top: 180px;

    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.10),
        transparent 68%
    );

    pointer-events: none;
    z-index: -1;
}

.services-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    bottom: 80px;

    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.10),
        transparent 68%
    );

    pointer-events: none;
    z-index: -1;
}


/* ------------------------------------------------------------
   SECTION TITLE
   ------------------------------------------------------------ */

.services-section .section-title {
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.services-section .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 28px;

    border: 1px solid rgba(0, 212, 255, 0.45);
    border-radius: 999px;

    background: rgba(0, 212, 255, 0.08);

    color: #00D4FF;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    box-shadow:
        0 0 10px rgba(0, 212, 255, 0.28),
        0 0 28px rgba(0, 212, 255, 0.12),
        inset 0 0 18px rgba(0, 212, 255, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    margin-bottom: 25px;
}

.services-section .section-title h2 {
    margin: 0 auto 22px;

    max-width: 900px;

    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 800;

    background: linear-gradient(
        90deg,
        #00D4FF 0%,
        #38BDF8 38%,
        #8B5CF6 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    color: transparent;
}

.services-section .section-title p {
    max-width: 780px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;
    line-height: 1.8;
}


/* ------------------------------------------------------------
   SERVICES GRID
   ------------------------------------------------------------ */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    max-width: 1180px;
    margin: 0 auto;
}


/* ------------------------------------------------------------
   SERVICE CARD
   ------------------------------------------------------------ */

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 360px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.025)
        );

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 22px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.18),
        inset 0 0 30px rgba(255, 255, 255, 0.015);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* Top cyan light line */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;
    right: 30px;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 212, 255, 0.75),
        rgba(139, 92, 246, 0.75),
        transparent
    );

    opacity: 0.45;

    transition: opacity 0.35s ease;
}


/* Hover glow */

.service-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    bottom: -90px;

    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.13),
        transparent 70%
    );

    pointer-events: none;

    opacity: 0;

    transition: opacity 0.35s ease;
}


.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 212, 255, 0.38);

    background:
        linear-gradient(
            145deg,
            rgba(0, 212, 255, 0.075),
            rgba(139, 92, 246, 0.035)
        );

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(0, 212, 255, 0.10);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}


/* ------------------------------------------------------------
   CARD TOP
   ------------------------------------------------------------ */

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 28px;
}


/* ------------------------------------------------------------
   SERVICE ICON
   ------------------------------------------------------------ */

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 212, 255, 0.15),
            rgba(139, 92, 246, 0.10)
        );

    border: 1px solid rgba(0, 212, 255, 0.22);

    color: #00D4FF;

    font-size: 24px;

    box-shadow:
        0 0 18px rgba(0, 212, 255, 0.10),
        inset 0 0 15px rgba(0, 212, 255, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.04);

    box-shadow:
        0 0 22px rgba(0, 212, 255, 0.22),
        0 0 45px rgba(0, 212, 255, 0.08);
}


/* ------------------------------------------------------------
   SERVICE TAG
   ------------------------------------------------------------ */

.service-tag {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 0 12px;

    border-radius: 999px;

    background: rgba(139, 92, 246, 0.08);

    border: 1px solid rgba(139, 92, 246, 0.18);

    color: rgba(255, 255, 255, 0.58);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    white-space: nowrap;
}


/* ------------------------------------------------------------
   CARD CONTENT
   ------------------------------------------------------------ */

.service-card h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 750;
}

.service-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.67);

    font-size: 15px;
    line-height: 1.75;
}


/* ------------------------------------------------------------
   CARD FOOTER
   ------------------------------------------------------------ */

.service-footer {
    margin-top: auto;
    padding-top: 28px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #00D4FF;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.service-link:hover {
    color: #8B5CF6;
    gap: 14px;
}

.service-link .arrow {
    font-size: 19px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.service-link:hover .arrow {
    transform: translateX(3px);
}


/* ------------------------------------------------------------
   TABLET
   ------------------------------------------------------------ */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-section {
        padding: 90px 0 100px;
    }

}


/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 680px) {

    .services-section {
        padding: 75px 0 85px;
    }

    .services-section .section-title {
        margin-bottom: 45px;
    }

    .services-section .section-title h2 {
        font-size: 34px;
    }

    .services-section .section-title p {
        font-size: 15px;
        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: auto;
        padding: 25px;
    }

}

/* ============================================================
   FELIX HOMEPAGE — DEVELOPMENT PROCESS
   PART 3
   ============================================================ */

.development-process-section {
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden;
    isolation: isolate;
}

/* ------------------------------------------------------------
   BACKGROUND GLOW
   ------------------------------------------------------------ */

.development-process-section::before {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    top: 220px;

    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.08),
        transparent 68%
    );

    pointer-events: none;
    z-index: -1;
}

.development-process-section::after {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    bottom: 80px;

    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.09),
        transparent 68%
    );

    pointer-events: none;
    z-index: -1;
}


/* ------------------------------------------------------------
   SECTION HEADER
   ------------------------------------------------------------ */

.development-process-section .section-title {
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.development-process-section .section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 28px;

    border: 1px solid rgba(0, 212, 255, 0.45);
    border-radius: 999px;

    background: rgba(0, 212, 255, 0.07);

    color: #00D4FF;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    box-shadow:
        0 0 10px rgba(0, 212, 255, 0.30),
        0 0 28px rgba(0, 212, 255, 0.12),
        inset 0 0 18px rgba(0, 212, 255, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    margin-bottom: 25px;
}

.development-process-section .section-title h2 {
    max-width: 900px;

    margin: 0 auto 22px;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 800;

    background: linear-gradient(
        90deg,
        #00D4FF 0%,
        #38BDF8 40%,
        #8B5CF6 100%
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}

.development-process-section .section-title p {
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.70);

    font-size: 16px;
    line-height: 1.8;
}


/* ------------------------------------------------------------
   PROCESS GRID
   ------------------------------------------------------------ */

.development-process-grid {
    position: relative;

    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 20px;

    max-width: 1200px;

    margin: 0 auto;
}


/* ------------------------------------------------------------
   PROCESS CONNECTOR
   ------------------------------------------------------------ */

.development-process-grid::before {
    content: "";

    position: absolute;

    top: 57px;

    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 212, 255, 0.65),
        rgba(0, 212, 255, 0.85),
        rgba(139, 92, 246, 0.75),
        transparent
    );

    box-shadow:
        0 0 8px rgba(0, 212, 255, 0.45),
        0 0 20px rgba(0, 212, 255, 0.18);

    z-index: 0;

    pointer-events: none;
}


/* ------------------------------------------------------------
   PROCESS CARD
   ------------------------------------------------------------ */

.development-process-card {
    position: relative;

    z-index: 1;

    min-height: 380px;

    padding: 30px 24px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(24, 42, 76, 0.92),
            rgba(13, 24, 48, 0.92)
        );

    border: 1px solid rgba(0, 212, 255, 0.20);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.20),
        inset 0 0 25px rgba(0, 212, 255, 0.025);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.development-process-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 212, 255, 0.48);

    background:
        linear-gradient(
            145deg,
            rgba(25, 52, 88, 0.96),
            rgba(14, 27, 53, 0.96)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        0 0 25px rgba(0, 212, 255, 0.10);
}


/* ------------------------------------------------------------
   PROCESS ICON
   ------------------------------------------------------------ */

.development-process-card .process-icon {
    position: relative;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background:
        rgba(0, 212, 255, 0.08);

    border: 1px solid rgba(0, 212, 255, 0.42);

    color: #00D4FF;

    font-size: 26px;

    box-shadow:
        0 0 14px rgba(0, 212, 255, 0.12),
        inset 0 0 15px rgba(0, 212, 255, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.development-process-card:hover .process-icon {
    transform: scale(1.08);

    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.25),
        0 0 40px rgba(0, 212, 255, 0.10);
}


/* ------------------------------------------------------------
   PROCESS NUMBER
   ------------------------------------------------------------ */

.development-process-card .process-number {
    margin-bottom: 28px;

    color: #00D4FF;

    font-size: 34px;
    line-height: 1;
    font-weight: 800;

    text-shadow:
        0 0 12px rgba(0, 212, 255, 0.35);
}


/* ------------------------------------------------------------
   PROCESS TITLE
   ------------------------------------------------------------ */

.development-process-card h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
}


/* ------------------------------------------------------------
   PROCESS DESCRIPTION
   ------------------------------------------------------------ */

.development-process-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 1.75;
}


/* ------------------------------------------------------------
   RESPONSIVE — TABLET
   ------------------------------------------------------------ */

@media (max-width: 1050px) {

    .development-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .development-process-grid::before {
        display: none;
    }

}


/* ------------------------------------------------------------
   RESPONSIVE — MOBILE
   ------------------------------------------------------------ */

@media (max-width: 680px) {

    .development-process-section {
        padding: 80px 0 90px;
    }

    .development-process-section .section-title {
        margin-bottom: 45px;
    }

    .development-process-section .section-title h2 {
        font-size: 34px;
    }

    .development-process-section .section-title p {
        font-size: 15px;
    }

    .development-process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .development-process-card {
        min-height: auto;

        padding: 28px 24px;
    }

}

/* ==========================================================
   FELIX INDUSTRIES SECTION
   ========================================================== */

.industries-section {

    position: relative;

    padding: 120px 0 130px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(0, 212, 255, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 65%,
            rgba(139, 92, 246, 0.08),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #050816 0%,
            #071126 50%,
            #050816 100%
        );
}


/* ----------------------------------------------------------
   SECTION TITLE
   ---------------------------------------------------------- */

.industries-section .section-title {

    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;

}


.industries-section .section-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 11px 25px;

    margin-bottom: 24px;

    border: 1px solid rgba(0, 212, 255, 0.45);

    border-radius: 999px;

    background: rgba(0, 212, 255, 0.08);

    color: #00D4FF;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;


    box-shadow:
        0 0 3px #00D4FF,
        0 0 8px #00D4FF,
        0 0 16px rgba(0, 212, 255, .40) !important;


    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

}


.industries-section .section-title h2 {

    margin: 0 0 22px;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.12;

    font-weight: 800;

    background:
        linear-gradient(
            90deg,
            #00D4FF 0%,
            #38BDF8 35%,
            #8B5CF6 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;

}


.industries-section .section-title p {

    max-width: 760px;

    margin: 0 auto;

    color: rgba(226, 232, 240, 0.72);

    font-size: 17px;

    line-height: 1.8;

}


/* ----------------------------------------------------------
   INDUSTRIES GRID
   ---------------------------------------------------------- */

.industries-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

    position: relative;

    z-index: 2;

}


/* ----------------------------------------------------------
   INDUSTRY CARD
   ---------------------------------------------------------- */

.industry-card {

    position: relative;

    min-height: 225px;

    padding: 30px 26px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-start;

    overflow: hidden;

    border: 1px solid rgba(148, 163, 184, 0.14);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(30, 41, 69, 0.82),
            rgba(15, 23, 42, 0.72)
        );

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;

}


/* subtle glow inside card */

.industry-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    top: -75px;

    right: -75px;

    border-radius: 50%;

    background: rgba(0, 212, 255, 0.10);

    filter: blur(35px);

    pointer-events: none;

}


/* bottom accent */

.industry-card::after {

    content: "";

    position: absolute;

    left: 26px;

    right: 26px;

    bottom: 0;

    height: 2px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 212, 255, 0.75),
            rgba(139, 92, 246, 0.75),
            transparent
        );

    opacity: 0;

    transform: scaleX(0.5);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

}


/* ----------------------------------------------------------
   INDUSTRY ICON
   ---------------------------------------------------------- */


/* ----------------------------------------------------------
   INDUSTRY TITLE
   ---------------------------------------------------------- */

.industry-card h3 {

    margin: 0 0 13px;

    color: #F8FAFC;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;

    transition: color 0.3s ease;

}


/* ----------------------------------------------------------
   TECHNOLOGY TAG
   ---------------------------------------------------------- */

.industry-tech {

    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    border: 1px solid rgba(139, 92, 246, 0.22);

    border-radius: 999px;

    background: rgba(139, 92, 246, 0.07);

    color: rgba(148, 163, 184, 0.85);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

}


/* ----------------------------------------------------------
   HOVER EFFECT
   ---------------------------------------------------------- */

.industry-card:hover {

    transform: translateY(-8px);

    border-color: rgba(0, 212, 255, 0.42);

    background:
        linear-gradient(
            145deg,
            rgba(30, 58, 90, 0.90),
            rgba(18, 27, 53, 0.82)
        );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30),
        0 0 28px rgba(0, 212, 255, 0.10);

}


.industry-card:hover::after {

    opacity: 1;

    transform: scaleX(1);

}


.industry-card:hover .industry-icon {

    transform: translateY(-3px) scale(1.05);

    border-color: rgba(0, 212, 255, 0.60);

    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.28);

}


.industry-card:hover h3 {

    color: #00D4FF;

}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 1100px) {

    .industries-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}


/* ----------------------------------------------------------
   TABLET / SMALL DESKTOP
   ---------------------------------------------------------- */

@media (max-width: 800px) {

    .industries-section {

        padding: 90px 0 100px;

    }

    .industries-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

    }

    .industries-section .section-title {

        margin-bottom: 45px;

    }

}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 560px) {

    .industries-section {

        padding: 75px 0 85px;

    }

    .industries-section .section-badge {

        padding: 9px 18px;

        font-size: 11px;

        letter-spacing: 1.5px;

    }

    .industries-section .section-title h2 {

        font-size: 34px;

    }

    .industries-section .section-title p {

        font-size: 15px;

        line-height: 1.7;

    }

    .industries-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }

    .industry-card {

        min-height: 205px;

        padding: 26px 23px;

    }

}

/* ----------------------------------------------------------
   ROTATING RING
   ---------------------------------------------------------- */

@keyframes industryRingRotate {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}


/* ----------------------------------------------------------
   ICON FLOAT
   ---------------------------------------------------------- */

@keyframes industryIconFloat {

    0%,
    100% {

        transform:
            translateY(0)
            scale(1);

    }

    50% {

        transform:
            translateY(-4px)
            scale(1.04);

    }

}


/* ----------------------------------------------------------
   ENERGY BREATHING
   ---------------------------------------------------------- */

@keyframes industryEnergyPulse {

    0%,
    100% {

        opacity: .10;

        transform: scale(.94);

        box-shadow:
            inset 0 0 12px currentColor,
            0 0 8px currentColor;

    }

    50% {

        opacity: .25;

        transform: scale(1.08);

        box-shadow:
            inset 0 0 22px currentColor,
            0 0 24px currentColor;

    }

}


/* ==========================================================
   INDUSTRY COLORS
   ========================================================== */
/*

/* 01 Healthcare */
/*
.industry-card:nth-child(1) .industry-icon {

    color: #00E5FF;

}

*/

/* 02 E-Commerce */
/*
.industry-card:nth-child(2) .industry-icon {

    color: #FF4D8D;

}

*/
/* 03 Education */
/*
.industry-card:nth-child(3) .industry-icon {

    color: #FFD21F;

}


/* 04 Real Estate */
/*
.industry-card:nth-child(4) .industry-icon {

    color: #20E58A;

}


/* 05 Manufacturing */
/*
.industry-card:nth-child(5) .industry-icon {

    color: #FF9D2E;

}


/* 06 Logistics */
/*
.industry-card:nth-child(6) .industry-icon {

    color: #9B6CFF;

}


/* 07 Banking & Finance */
/*
.industry-card:nth-child(7) .industry-icon {

    color: #FF8A32;

}


/* 08 Travel */
/*
.industry-card:nth-child(8) .industry-icon {

    color: #65E51B;

}


/* 09 Retail */
/*
.industry-card:nth-child(9) .industry-icon {

    color: #FFFFFF;

}


/* 10 Startups */
/*
.industry-card:nth-child(10) .industry-icon {

    color: #B66CFF;

}


/* 11 Government */
/*
.industry-card:nth-child(11) .industry-icon {

    color: #4DE8C0;

}


/* 12 NGOs */
/*
.industry-card:nth-child(12) .industry-icon {

    color: #FF5FA2;

}


/* ==========================================================
   DIFFERENT LIVE TIMINGS
   ========================================================== */
/*
.industry-card:nth-child(2) .industry-icon i,
.industry-card:nth-child(5) .industry-icon i,
.industry-card:nth-child(8) .industry-icon i,
.industry-card:nth-child(11) .industry-icon i {

    animation-delay: -.8s;

}


.industry-card:nth-child(3) .industry-icon i,
.industry-card:nth-child(6) .industry-icon i,
.industry-card:nth-child(9) .industry-icon i,
.industry-card:nth-child(12) .industry-icon i {

    animation-delay: -1.6s;

}


.industry-card:nth-child(2) .industry-icon::before,
.industry-card:nth-child(5) .industry-icon::before,
.industry-card:nth-child(8) .industry-icon::before,
.industry-card:nth-child(11) .industry-icon::before {

    animation-duration: 6s;

}


.industry-card:nth-child(3) .industry-icon::after,
.industry-card:nth-child(6) .industry-icon::after,
.industry-card:nth-child(9) .industry-icon::after,
.industry-card:nth-child(12) .industry-icon::after {

    animation-delay: -1.2s;

}


/* ==========================================================
   CARD HOVER — WOW EFFECT
   ========================================================== */
/*
.industry-card:hover .industry-icon {

    transform:
        translateY(-5px)
        scale(1.08);

}


.industry-card:hover .industry-icon i {

    transform:
        scale(1.22)
        rotate(-3deg);

    filter:
        drop-shadow(0 0 8px currentColor)
        drop-shadow(0 0 18px currentColor)
        drop-shadow(0 0 30px currentColor);

}


.industry-card:hover .industry-icon::before {

    opacity: .85;

    animation-duration: 2s;

}


.industry-card:hover .industry-icon::after {

    opacity: .32;

}
*/

/* ==========================================================
   ACCESSIBILITY
   ========================================================== */
/*
@media (prefers-reduced-motion: reduce) {

    .industry-icon::before,
    .industry-icon::after,
    .industry-icon i {

        animation: none !important;

    }

}

 */

 /* ==========================================================
   FELIX INDUSTRIES
   SINGLE BOX LIVE NEON ICON SYSTEM
   ========================================================== */


/* ----------------------------------------------------------
   SINGLE ICON BOX
   ---------------------------------------------------------- */

.industry-icon {

    position: relative;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );

    border: 1px solid currentColor;

    color: #00E5FF;

    box-shadow:
        inset 0 0 14px rgba(255,255,255,.035),
        0 0 10px currentColor,
        0 0 22px color-mix(
            in srgb,
            currentColor 22%,
            transparent
        );

    overflow: visible;

    isolation: isolate;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

    animation:
        felixIndustryBoxPulse 3.5s ease-in-out infinite;

}


/* ----------------------------------------------------------
   IMPORTANT:
   REMOVE ALL EXTRA BOX / RING LAYERS
   ---------------------------------------------------------- */

.industry-icon::before,
.industry-icon::after {

    content: none !important;

    display: none !important;

}


/* ----------------------------------------------------------
   ICON
   ---------------------------------------------------------- */

.industry-icon i {

    position: relative;

    z-index: 2;

    font-size: 23px;

    line-height: 1;

    color: currentColor !important;

    filter:
        drop-shadow(0 0 4px currentColor)
        drop-shadow(0 0 9px currentColor);

    animation:
        felixIndustryIconFloat 3s ease-in-out infinite;

    transition:
        transform .35s ease,
        filter .35s ease;

}


/* ==========================================================
   LIVE NEON PULSE
   ========================================================== */

@keyframes felixIndustryBoxPulse {

    0%,
    100% {

        box-shadow:
            inset 0 0 14px rgba(255,255,255,.035),
            0 0 8px currentColor,
            0 0 16px color-mix(
                in srgb,
                currentColor 16%,
                transparent
            );

    }

    50% {

        box-shadow:
            inset 0 0 16px rgba(255,255,255,.055),
            0 0 13px currentColor,
            0 0 28px color-mix(
                in srgb,
                currentColor 28%,
                transparent
            );

    }

}


/* ----------------------------------------------------------
   LIVE ICON FLOAT
   ---------------------------------------------------------- */

@keyframes felixIndustryIconFloat {

    0%,
    100% {

        transform:
            translateY(0)
            scale(1);

    }

    50% {

        transform:
            translateY(-2px)
            scale(1.06);

    }

}


/* ==========================================================
   INDUSTRY COLORS
   ========================================================== */

.industry-card:nth-child(1) .industry-icon {
    color: #00E5FF;
}

.industry-card:nth-child(2) .industry-icon {
    color: #FF4F8B;
}

.industry-card:nth-child(3) .industry-icon {
    color: #FFD21F;
}

.industry-card:nth-child(4) .industry-icon {
    color: #20E58A;
}

.industry-card:nth-child(5) .industry-icon {
    color: #FF9D2E;
}

.industry-card:nth-child(6) .industry-icon {
    color: #A56CFF;
}

.industry-card:nth-child(7) .industry-icon {
    color: #FF8A32;
}

.industry-card:nth-child(8) .industry-icon {
    color: #7CFF28;
}

.industry-card:nth-child(9) .industry-icon {
    color: #FFFFFF;
}

.industry-card:nth-child(10) .industry-icon {
    color: #B86CFF;
}

.industry-card:nth-child(11) .industry-icon {
    color: #4DE8C0;
}

.industry-card:nth-child(12) .industry-icon {
    color: #FF5FA2;
}


/* ==========================================================
   DIFFERENT ANIMATION TIMING
   ========================================================== */

.industry-card:nth-child(2) .industry-icon,
.industry-card:nth-child(2) .industry-icon i {

    animation-delay: -.7s;

}


.industry-card:nth-child(3) .industry-icon,
.industry-card:nth-child(3) .industry-icon i {

    animation-delay: -1.4s;

}


.industry-card:nth-child(4) .industry-icon,
.industry-card:nth-child(4) .industry-icon i {

    animation-delay: -2.1s;

}


.industry-card:nth-child(5) .industry-icon,
.industry-card:nth-child(5) .industry-icon i {

    animation-delay: -.9s;

}


.industry-card:nth-child(6) .industry-icon,
.industry-card:nth-child(6) .industry-icon i {

    animation-delay: -1.8s;

}


.industry-card:nth-child(7) .industry-icon,
.industry-card:nth-child(7) .industry-icon i {

    animation-delay: -2.5s;

}


.industry-card:nth-child(8) .industry-icon,
.industry-card:nth-child(8) .industry-icon i {

    animation-delay: -1.2s;

}


.industry-card:nth-child(9) .industry-icon,
.industry-card:nth-child(9) .industry-icon i {

    animation-delay: -2.2s;

}


.industry-card:nth-child(10) .industry-icon,
.industry-card:nth-child(10) .industry-icon i {

    animation-delay: -.5s;

}


.industry-card:nth-child(11) .industry-icon,
.industry-card:nth-child(11) .industry-icon i {

    animation-delay: -1.6s;

}


.industry-card:nth-child(12) .industry-icon,
.industry-card:nth-child(12) .industry-icon i {

    animation-delay: -2.7s;

}


/* ==========================================================
   HOVER
   ========================================================== */

.industry-card:hover .industry-icon {

    transform:
        translateY(-5px)
        scale(1.08);

    box-shadow:
        inset 0 0 18px rgba(255,255,255,.06),
        0 0 15px currentColor,
        0 0 34px color-mix(
            in srgb,
            currentColor 35%,
            transparent
        );

}


.industry-card:hover .industry-icon i {

    transform: scale(1.16);

    filter:
        drop-shadow(0 0 5px currentColor)
        drop-shadow(0 0 12px currentColor)
        drop-shadow(0 0 20px currentColor);

}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .industry-icon,
    .industry-icon i {

        animation: none !important;

    }

}

/* ==========================================================
   FELIX INDUSTRIES — SINGLE ICON BOX + LIVE ICON ANIMATION
   Fix: Removes double / vertical icon box
   ========================================================== */

.industry-card .industry-icon {
    position: relative !important;

    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    min-height: 64px !important;

    max-width: 64px !important;
    max-height: 64px !important;

    padding: 0 !important;
    margin: 0 0 18px 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-shrink: 0 !important;

    border-radius: 16px !important;

    background: rgba(18, 35, 65, 0.72) !important;

    border: 1px solid rgba(0, 212, 255, 0.55) !important;

    box-shadow:
        0 0 12px rgba(0, 212, 255, 0.28),
        inset 0 0 18px rgba(0, 212, 255, 0.08) !important;

    overflow: visible !important;

    transform: none !important;

    animation: industryIconPulse 3s ease-in-out infinite !important;
}


/* REMOVE ALL OLD INNER / OUTER BOX EFFECTS */

.industry-card .industry-icon::before,
.industry-card .industry-icon::after {
    content: none !important;
    display: none !important;
}


/* ICON ITSELF — NO SECOND BOX */

.industry-card .industry-icon i {
    position: relative !important;

    width: auto !important;
    height: auto !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-size: 24px !important;
    line-height: 1 !important;

    transform: translateY(0) !important;

    animation: industryIconFloat 2.8s ease-in-out infinite !important;
}


/* ==========================================================
   LIVE ICON — SUBTLE FLOAT
   ========================================================== */

@keyframes industryIconFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.06);
    }

}


/* ==========================================================
   LIVE BOX GLOW
   ========================================================== */

@keyframes industryIconPulse {

    0%,
    100% {
        box-shadow:
            0 0 10px rgba(0, 212, 255, 0.22),
            inset 0 0 14px rgba(0, 212, 255, 0.06);
    }

    50% {
        box-shadow:
            0 0 20px rgba(0, 212, 255, 0.42),
            0 0 32px rgba(0, 212, 255, 0.12),
            inset 0 0 18px rgba(0, 212, 255, 0.10);
    }

}


/* ==========================================================
   COLORFUL INDUSTRY ICONS
   ========================================================== */

.industry-card:nth-child(1) .industry-icon {
    border-color: #00D4FF !important;
}

.industry-card:nth-child(1) .industry-icon i {
    color: #00D4FF !important;
}


.industry-card:nth-child(2) .industry-icon {
    border-color: #FF3D81 !important;
}

.industry-card:nth-child(2) .industry-icon i {
    color: #FF3D81 !important;
}


.industry-card:nth-child(3) .industry-icon {
    border-color: #FFD21F !important;
}

.industry-card:nth-child(3) .industry-icon i {
    color: #FFD21F !important;
}


.industry-card:nth-child(4) .industry-icon {
    border-color: #22E58A !important;
}

.industry-card:nth-child(4) .industry-icon i {
    color: #22E58A !important;
}


.industry-card:nth-child(5) .industry-icon {
    border-color: #FF9D2E !important;
}

.industry-card:nth-child(5) .industry-icon i {
    color: #FF9D2E !important;
}


.industry-card:nth-child(6) .industry-icon {
    border-color: #A56CFF !important;
}

.industry-card:nth-child(6) .industry-icon i {
    color: #A56CFF !important;
}


.industry-card:nth-child(7) .industry-icon {
    border-color: #FF8A3D !important;
}

.industry-card:nth-child(7) .industry-icon i {
    color: #FF8A3D !important;
}


.industry-card:nth-child(8) .industry-icon {
    border-color: #7CFF3D !important;
}

.industry-card:nth-child(8) .industry-icon i {
    color: #7CFF3D !important;
}


.industry-card:nth-child(9) .industry-icon {
    border-color: #E8E8E8 !important;
}

.industry-card:nth-child(9) .industry-icon i {
    color: #E8E8E8 !important;
}


.industry-card:nth-child(10) .industry-icon {
    border-color: #B05CFF !important;
}

.industry-card:nth-child(10) .industry-icon i {
    color: #B05CFF !important;
}


.industry-card:nth-child(11) .industry-icon {
    border-color: #35E6C0 !important;
}

.industry-card:nth-child(11) .industry-icon i {
    color: #35E6C0 !important;
}


.industry-card:nth-child(12) .industry-icon {
    border-color: #FF5C9A !important;
}

.industry-card:nth-child(12) .industry-icon i {
    color: #FF5C9A !important;
}


/* ==========================================================
   HOVER — WOW EFFECT
   ========================================================== */

.industry-card:hover .industry-icon {
    transform: translateY(-4px) scale(1.05) !important;

    box-shadow:
        0 0 18px rgba(0, 212, 255, 0.45),
        0 0 35px rgba(0, 212, 255, 0.18),
        inset 0 0 20px rgba(0, 212, 255, 0.10) !important;
}

.industry-card:hover .industry-icon i {
    transform: scale(1.12) !important;
}

/* ==========================================================
   FELIX INDUSTRIES — CENTER ALIGN + LIVE ICON ANIMATION
   ========================================================== */

.industry-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}


/* ----------------------------------------------------------
   ICON — PERFECT CENTER
   ---------------------------------------------------------- */

.industry-card .industry-icon {
    margin: 0 auto 18px auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: relative !important;

    width: 64px !important;
    height: 64px !important;

    min-width: 64px !important;
    min-height: 64px !important;

    max-width: 64px !important;
    max-height: 64px !important;

    flex-shrink: 0 !important;

    border-radius: 16px !important;

    overflow: visible !important;

    transform: translateY(0) !important;

    animation:
        industryIconFloat 3s ease-in-out infinite,
        industryIconGlow 2.4s ease-in-out infinite !important;
}


/* ----------------------------------------------------------
   ICON — CENTER INSIDE BOX
   ---------------------------------------------------------- */

.industry-card .industry-icon i {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    line-height: 1 !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    animation: industryIconHeartbeat 2.2s ease-in-out infinite !important;

    transform-origin: center center !important;
}


/* ----------------------------------------------------------
   HEADING — CENTER
   ---------------------------------------------------------- */

.industry-card h3 {
    width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}


/* ----------------------------------------------------------
   BADGE — CENTER
   ---------------------------------------------------------- */

.industry-card .industry-tech {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}


/* ==========================================================
   LIVE ANIMATION 1
   Gentle floating movement
   ========================================================== */

@keyframes industryIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


/* ==========================================================
   LIVE ANIMATION 2
   Breathing neon glow
   ========================================================== */

@keyframes industryIconGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 4px currentColor);
    }

    50% {
        filter:
            drop-shadow(0 0 8px currentColor)
            drop-shadow(0 0 16px currentColor);
    }

}


/* ==========================================================
   LIVE ANIMATION 3
   Icon subtle heartbeat
   ========================================================== */

@keyframes industryIconHeartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    45% {
        transform: scale(1);
    }

    55% {
        transform: scale(1.12);
    }

    65% {
        transform: scale(1);
    }

}


/* ==========================================================
   HOVER — STRONGER WOW EFFECT
   ========================================================== */

.industry-card:hover .industry-icon {
    transform: translateY(-7px) scale(1.08) !important;

    animation:
        industryIconFloatHover 1.2s ease-in-out infinite,
        industryIconGlowHover 1.2s ease-in-out infinite !important;
}


@keyframes industryIconFloatHover {

    0%,
    100% {
        transform: translateY(-5px) scale(1.08);
    }

    50% {
        transform: translateY(-10px) scale(1.12);
    }

}


@keyframes industryIconGlowHover {

    0%,
    100% {
        filter: drop-shadow(0 0 8px currentColor);
    }

    50% {
        filter:
            drop-shadow(0 0 14px currentColor)
            drop-shadow(0 0 28px currentColor);
    }

}


/* ----------------------------------------------------------
   HOVER ICON
   ---------------------------------------------------------- */

.industry-card:hover .industry-icon i {
    animation: industryIconHeartbeatHover .8s ease-in-out infinite !important;
}


@keyframes industryIconHeartbeatHover {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

}


/* ==========================================================
   RESPECT REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .industry-card .industry-icon,
    .industry-card .industry-icon i {
        animation: none !important;
        transform: none !important;
    }

}

/* ==========================================================
   RETAIL — COLOR FIX
   ========================================================== */

.industry-card:nth-child(9) .industry-icon {
    border-color: #FFB84D !important;

    box-shadow:
        0 0 10px rgba(255, 184, 77, 0.35),
        inset 0 0 14px rgba(255, 184, 77, 0.08) !important;
}

.industry-card:nth-child(9) .industry-icon i {
    color: #FFB84D !important;

    filter:
        drop-shadow(0 0 5px #FFB84D)
        drop-shadow(0 0 10px rgba(255, 184, 77, 0.55)) !important;
}

/* ==========================================
   INDUSTRY ICON — CLEAN SHARP STYLE
   ========================================== */

/* Remove glow from industry icon container */
.industry-card .industry-icon{
    box-shadow:none !important;
    filter:none !important;
}

/* Remove glow from icon itself */
.industry-card .industry-icon i{
    filter:none !important;
    text-shadow:none !important;
    box-shadow:none !important;
}

/* Remove glow even while hovering the card */
.industry-card:hover .industry-icon{
    box-shadow:none !important;
    filter:none !important;
}

.industry-card:hover .industry-icon i{
    filter:none !important;
    text-shadow:none !important;
    box-shadow:none !important;
}

/* ==========================================
   RETAIL — GOLDEN ORANGE
   ========================================== */

.industry-card:nth-child(9) .industry-icon{
    border-color:#FFAA2B !important;
    box-shadow:none !important;
}

.industry-card:nth-child(9) .industry-icon i{
    color:#FFAA2B !important;
    text-shadow:none !important;
    filter:none !important;
}

/* ==========================================================
   FELIX INDUSTRIES
   LIVE ICON ANIMATION — V2
   ========================================================== */

/* Main icon box */
.industry-card .industry-icon {
    animation: felixIndustryIconFloat 2.4s ease-in-out infinite !important;
    transform-origin: center center;
    will-change: transform;
}


/* ----------------------------------------------------------
   CLEAR LIVE FLOATING MOTION
   ---------------------------------------------------------- */

@keyframes felixIndustryIconFloat {

    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate3d(0, -5px, 0) rotate(-2deg) scale(1.03);
    }

    50% {
        transform: translate3d(0, -8px, 0) rotate(0deg) scale(1.06);
    }

    75% {
        transform: translate3d(0, -5px, 0) rotate(2deg) scale(1.03);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }

}


/* ----------------------------------------------------------
   DIFFERENT START TIMES
   So all icons don't move together
   ---------------------------------------------------------- */

.industry-card:nth-child(1) .industry-icon {
    animation-delay: 0s !important;
}

.industry-card:nth-child(2) .industry-icon {
    animation-delay: -0.35s !important;
}

.industry-card:nth-child(3) .industry-icon {
    animation-delay: -0.70s !important;
}

.industry-card:nth-child(4) .industry-icon {
    animation-delay: -1.05s !important;
}

.industry-card:nth-child(5) .industry-icon {
    animation-delay: -1.40s !important;
}

.industry-card:nth-child(6) .industry-icon {
    animation-delay: -1.75s !important;
}

.industry-card:nth-child(7) .industry-icon {
    animation-delay: -0.55s !important;
}

.industry-card:nth-child(8) .industry-icon {
    animation-delay: -0.90s !important;
}

.industry-card:nth-child(9) .industry-icon {
    animation-delay: -1.25s !important;
}

.industry-card:nth-child(10) .industry-icon {
    animation-delay: -1.60s !important;
}

.industry-card:nth-child(11) .industry-icon {
    animation-delay: -1.95s !important;
}

.industry-card:nth-child(12) .industry-icon {
    animation-delay: -2.30s !important;
}


/* ----------------------------------------------------------
   ICON ITSELF — KEEP SHARP
   NO GLOW / NO BLUR
   ---------------------------------------------------------- */

.industry-card .industry-icon i {
    filter: none !important;
    text-shadow: none !important;
}


/* ----------------------------------------------------------
   HOVER
   Pause natural float and give a stronger interaction
   ---------------------------------------------------------- */

.industry-card:hover .industry-icon {
    animation-play-state: paused !important;
    transform: translateY(-6px) scale(1.08) !important;
}


/* ----------------------------------------------------------
   REDUCE MOTION ACCESSIBILITY
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .industry-card .industry-icon {
        animation: none !important;
    }

}

/* ==========================================================
   FELIX INDUSTRIES — FINAL LIVE ICON MOTION
   Clean Icon • No Glow • Clear Colors • Visible Animation
   ========================================================== */

/* ICON BOX — FINAL */
.industry-card .industry-icon {
    position: relative !important;

    animation-name: felixIndustryFinalFloat !important;
    animation-duration: 2.2s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    animation-direction: alternate !important;
    animation-play-state: running !important;

    transform-origin: center center !important;
    will-change: transform !important;

    /* NO GLOW */
    box-shadow: none !important;
    filter: none !important;
}

/* ICON — SHARP / CLEAR */
.industry-card .industry-icon i {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;

    transform: none !important;

    will-change: transform !important;
}

/* ==========================================================
   CLEAR VISIBLE FLOAT
   ========================================================== */

@keyframes felixIndustryFinalFloat {

    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
    }

    25% {
        transform: translate3d(0, -4px, 0) rotate(-1.5deg) scale(1.02) !important;
    }

    50% {
        transform: translate3d(0, -9px, 0) rotate(0deg) scale(1.06) !important;
    }

    75% {
        transform: translate3d(0, -4px, 0) rotate(1.5deg) scale(1.02) !important;
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
    }
}

/* ==========================================================
   DIFFERENT TIMING
   All icons move independently
   ========================================================== */

.industry-card:nth-child(1) .industry-icon {
    animation-delay: 0s !important;
}

.industry-card:nth-child(2) .industry-icon {
    animation-delay: -0.35s !important;
}

.industry-card:nth-child(3) .industry-icon {
    animation-delay: -0.70s !important;
}

.industry-card:nth-child(4) .industry-icon {
    animation-delay: -1.05s !important;
}

.industry-card:nth-child(5) .industry-icon {
    animation-delay: -1.40s !important;
}

.industry-card:nth-child(6) .industry-icon {
    animation-delay: -1.75s !important;
}

.industry-card:nth-child(7) .industry-icon {
    animation-delay: -0.55s !important;
}

.industry-card:nth-child(8) .industry-icon {
    animation-delay: -0.90s !important;
}

.industry-card:nth-child(9) .industry-icon {
    animation-delay: -1.25s !important;
}

.industry-card:nth-child(10) .industry-icon {
    animation-delay: -1.60s !important;
}

.industry-card:nth-child(11) .industry-icon {
    animation-delay: -1.95s !important;
}

.industry-card:nth-child(12) .industry-icon {
    animation-delay: -2.30s !important;
}

/* ==========================================================
   RETAIL — GOLDEN ORANGE
   ========================================================== */

.industry-card:nth-child(9) .industry-icon {
    border-color: #FFAA2B !important;
    box-shadow: none !important;
    filter: none !important;
}

.industry-card:nth-child(9) .industry-icon i {
    color: #FFAA2B !important;
    filter: none !important;
    text-shadow: none !important;
}

/* ==========================================================
   HOVER — KEEP ANIMATION RUNNING
   ========================================================== */

.industry-card:hover .industry-icon {
    animation-play-state: running !important;
    box-shadow: none !important;
    filter: none !important;
}

.industry-card:hover .industry-icon i {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .industry-card .industry-icon {
        animation: none !important;
        transform: none !important;
    }

}

/* ==========================================================
   FELIX INDUSTRIES — FINAL VISIBLE LIVE ICON ANIMATION
   Strong Motion • No Glow • No Pause
   ========================================================== */

.industry-card .industry-icon {
    animation-name: felixIndustryLiveMotion !important;
    animation-duration: 1.8s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    animation-direction: alternate !important;
    animation-fill-mode: both !important;
    animation-play-state: running !important;

    transform-origin: center center !important;
    will-change: transform !important;

    box-shadow: none !important;
    filter: none !important;
}

/* ==========================================================
   STRONGER VISIBLE FLOAT
   ========================================================== */

@keyframes felixIndustryLiveMotion {

    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
    }

    20% {
        transform: translate3d(0, -5px, 0) rotate(-2deg) scale(1.02) !important;
    }

    50% {
        transform: translate3d(0, -14px, 0) rotate(0deg) scale(1.07) !important;
    }

    80% {
        transform: translate3d(0, -5px, 0) rotate(2deg) scale(1.02) !important;
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1) !important;
    }
}

/* ==========================================================
   EACH ICON HAS DIFFERENT RHYTHM
   ========================================================== */

.industry-card:nth-child(1) .industry-icon {
    animation-delay: 0s !important;
}

.industry-card:nth-child(2) .industry-icon {
    animation-delay: -.30s !important;
}

.industry-card:nth-child(3) .industry-icon {
    animation-delay: -.60s !important;
}

.industry-card:nth-child(4) .industry-icon {
    animation-delay: -.90s !important;
}

.industry-card:nth-child(5) .industry-icon {
    animation-delay: -1.20s !important;
}

.industry-card:nth-child(6) .industry-icon {
    animation-delay: -1.50s !important;
}

.industry-card:nth-child(7) .industry-icon {
    animation-delay: -.45s !important;
}

.industry-card:nth-child(8) .industry-icon {
    animation-delay: -.75s !important;
}

.industry-card:nth-child(9) .industry-icon {
    animation-delay: -1.05s !important;
}

.industry-card:nth-child(10) .industry-icon {
    animation-delay: -1.35s !important;
}

.industry-card:nth-child(11) .industry-icon {
    animation-delay: -1.65s !important;
}

.industry-card:nth-child(12) .industry-icon {
    animation-delay: -1.95s !important;
}

/* ==========================================================
   HOVER MUST NOT STOP THE LIVE ANIMATION
   ========================================================== */

.industry-card:hover .industry-icon {
    animation-name: felixIndustryLiveMotion !important;
    animation-play-state: running !important;

    box-shadow: none !important;
    filter: none !important;
}

/* ==========================================================
   ICON ITSELF — KEEP PERFECTLY CLEAR
   ========================================================== */

.industry-card .industry-icon i {
    filter: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

/* ==========================================================
   RETAIL — GOLDEN ORANGE
   ========================================================== */

.industry-card:nth-child(9) .industry-icon {
    border-color: #FFAA2B !important;
    box-shadow: none !important;
}

.industry-card:nth-child(9) .industry-icon i {
    color: #FFAA2B !important;
    filter: none !important;
    text-shadow: none !important;
}

/* ==========================================================
   IMPORTANT:
   OVERRIDE REDUCED-MOTION BLOCK FROM EARLIER CSS
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .industry-card .industry-icon {
        animation-name: felixIndustryLiveMotion !important;
        animation-duration: 1.8s !important;
        animation-iteration-count: infinite !important;
        animation-play-state: running !important;
    }

}

/* ==========================================================
   FELIX INDUSTRIES — FINAL LIVE MOTION
   Uses independent translate property
   Avoids transform !important conflict
   ========================================================== */

.industry-card .industry-icon {
    animation: felixIndustryVisibleFloat 2.2s ease-in-out infinite !important;
    animation-play-state: running !important;
    will-change: translate;
}

/* ----------------------------------------------------------
   CLEAR VISIBLE FLOATING MOTION
   ---------------------------------------------------------- */

@keyframes felixIndustryVisibleFloat {

    0% {
        translate: 0 0;
    }

    25% {
        translate: 0 -6px;
    }

    50% {
        translate: 0 -14px;
    }

    75% {
        translate: 0 -6px;
    }

    100% {
        translate: 0 0;
    }
}

/* ----------------------------------------------------------
   DIFFERENT TIMING
   ---------------------------------------------------------- */

.industry-card:nth-child(1) .industry-icon {
    animation-delay: 0s !important;
}

.industry-card:nth-child(2) .industry-icon {
    animation-delay: -.25s !important;
}

.industry-card:nth-child(3) .industry-icon {
    animation-delay: -.50s !important;
}

.industry-card:nth-child(4) .industry-icon {
    animation-delay: -.75s !important;
}

.industry-card:nth-child(5) .industry-icon {
    animation-delay: -1s !important;
}

.industry-card:nth-child(6) .industry-icon {
    animation-delay: -1.25s !important;
}

.industry-card:nth-child(7) .industry-icon {
    animation-delay: -.35s !important;
}

.industry-card:nth-child(8) .industry-icon {
    animation-delay: -.60s !important;
}

.industry-card:nth-child(9) .industry-icon {
    animation-delay: -.85s !important;
}

.industry-card:nth-child(10) .industry-icon {
    animation-delay: -1.10s !important;
}

.industry-card:nth-child(11) .industry-icon {
    animation-delay: -1.35s !important;
}

.industry-card:nth-child(12) .industry-icon {
    animation-delay: -1.60s !important;
}

/* ----------------------------------------------------------
   HOVER — DO NOT STOP LIVE MOTION
   ---------------------------------------------------------- */

.industry-card:hover .industry-icon {
    animation-play-state: running !important;
}

/* ----------------------------------------------------------
   ICON MUST STAY SHARP — NO GLOW
   ---------------------------------------------------------- */

.industry-card .industry-icon,
.industry-card .industry-icon i {
    filter: none !important;
}

.industry-card .industry-icon i {
    text-shadow: none !important;
    box-shadow: none !important;
}

/* ----------------------------------------------------------
   RETAIL — GOLDEN ORANGE
   ---------------------------------------------------------- */

.industry-card:nth-child(9) .industry-icon {
    border-color: #FFAA2B !important;
    box-shadow: none !important;
}

.industry-card:nth-child(9) .industry-icon i {
    color: #FFAA2B !important;
    filter: none !important;
    text-shadow: none !important;
}

/* ----------------------------------------------------------
   REDUCED MOTION OVERRIDE
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .industry-card .industry-icon {
        animation: felixIndustryVisibleFloat 2.2s ease-in-out infinite !important;
        animation-play-state: running !important;
    }

}

/*
/* =========================================================
   PORTFOLIO — FINAL MOTION OVERRIDE V3
   ADD AT THE VERY END OF homepage.css
   ========================================================= */


/* =========================================================
   SECTION AMBIENT MOTION
   ========================================================= */
/*
.portfolio-section{
    position:relative !important;
    overflow:hidden !important;
}

.portfolio-section::before{
    content:"" !important;

    position:absolute !important;

    width:760px !important;
    height:760px !important;

    left:50% !important;
    top:-360px !important;

    transform:translateX(-50%) scale(.88) !important;

    border-radius:50% !important;

    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.16) 0%,
            rgba(0,212,255,.07) 35%,
            transparent 70%
        ) !important;

    filter:blur(45px) !important;

    pointer-events:none !important;

    animation:
        portfolioMainGlow 5s ease-in-out infinite alternate !important;
}

*/

/* =========================================================
   SECOND MOVING LIGHT
   ========================================================= */
/*
.portfolio-section::after{
    content:"" !important;

    position:absolute !important;

    width:420px !important;
    height:420px !important;

    right:-180px !important;
    bottom:-220px !important;

    border-radius:50% !important;

    background:
        radial-gradient(
            circle,
            rgba(107,92,255,.13),
            transparent 68%
        ) !important;

    filter:blur(50px) !important;

    pointer-events:none !important;

    animation:
        portfolioSecondGlow 7s ease-in-out infinite alternate !important;
}

*/

/* =========================================================
   FEATURED CARD
   ========================================================= */

.featured-project{
    position:relative !important;

    isolation:isolate !important;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease !important;
}


/* Moving light INSIDE featured card */

.featured-project::after{
    content:"" !important;

    position:absolute !important;

    top:-30% !important;
    left:-70% !important;

    width:45% !important;
    height:160% !important;

    transform:rotate(18deg) !important;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,212,255,.20) 50%,
            transparent 100%
        ) !important;

    pointer-events:none !important;

    z-index:1 !important;

    animation:
        portfolioCardSweep 4.5s linear infinite !important;
}


/* Content stays above sweep */

.featured-project > *{
    position:relative !important;
    z-index:3 !important;
}


/* =========================================================
   FEATURED CARD HOVER
   ========================================================= */

.featured-project:hover{

    transform:translateY(-10px) !important;

    border-color:
        rgba(0,212,255,.55) !important;

    box-shadow:
        0 35px 90px rgba(0,0,0,.45),
        0 0 35px rgba(0,212,255,.18) !important;
}


/* =========================================================
   PROJECT PREVIEW
   ========================================================= */

.project-preview{

    position:relative !important;

    overflow:hidden !important;

}


/* Moving shine over robot preview */

.project-preview::after{

    content:"" !important;

    position:absolute !important;

    top:-80% !important;
    left:-100% !important;

    width:55% !important;
    height:260% !important;

    transform:rotate(22deg) !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.28),
            transparent
        ) !important;

    pointer-events:none !important;

    animation:
        previewShine 3.8s ease-in-out infinite !important;
}


/* Robot remains above shine */

.project-emoji{

    position:relative !important;

    z-index:3 !important;

    display:inline-block !important;

    animation:
        robotFloat 3.2s ease-in-out infinite !important;

}


/* =========================================================
   RIGHT SIDE PROJECTS
   ========================================================= */

.mini-project{

    position:relative !important;

    overflow:hidden !important;

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease,
        box-shadow .4s ease !important;

}


/* Moving shine */

.mini-project::before{

    content:"" !important;

    position:absolute !important;

    top:0 !important;

    left:-100% !important;

    width:65% !important;

    height:100% !important;

    transform:skewX(-18deg) !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.10),
            transparent
        ) !important;

    pointer-events:none !important;

    animation:
        miniProjectShine 5s ease-in-out infinite !important;

}


/* Keep content visible */

.mini-project > *{

    position:relative !important;

    z-index:2 !important;

}


/* =========================================================
   MINI PROJECT HOVER
   ========================================================= */

.mini-project:hover{

    transform:translateX(10px) !important;

    border-color:
        rgba(0,212,255,.40) !important;

    background:
        rgba(20,33,58,.96) !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.28),
        0 0 25px rgba(0,212,255,.10) !important;

}


/* =========================================================
   ANIMATION — MAIN GLOW
   ========================================================= */

@keyframes portfolioMainGlow{

    0%{

        transform:
            translateX(-50%)
            scale(.88);

        opacity:.55;

    }

    100%{

        transform:
            translateX(-50%)
            scale(1.12);

        opacity:1;

    }

}


/* =========================================================
   ANIMATION — SECOND GLOW
   ========================================================= */

@keyframes portfolioSecondGlow{

    0%{

        transform:
            translate(0,0)
            scale(.85);

        opacity:.35;

    }

    100%{

        transform:
            translate(-100px,-60px)
            scale(1.12);

        opacity:.85;

    }

}


/* =========================================================
   ANIMATION — FEATURED CARD LIGHT
   ========================================================= */

@keyframes portfolioCardSweep{

    0%{

        left:-70%;

        opacity:0;

    }

    10%{

        opacity:1;

    }

    45%{

        left:140%;

        opacity:.9;

    }

    100%{

        left:140%;

        opacity:0;

    }

}


/* =========================================================
   ANIMATION — PREVIEW SHINE
   ========================================================= */

@keyframes previewShine{

    0%{

        left:-100%;

        opacity:0;

    }

    15%{

        opacity:1;

    }

    55%{

        left:150%;

        opacity:.8;

    }

    100%{

        left:150%;

        opacity:0;

    }

}


/* =========================================================
   ANIMATION — ROBOT FLOAT
   ========================================================= */

@keyframes robotFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-9px);

    }

    100%{

        transform:translateY(0);

    }

}


/* =========================================================
   ANIMATION — MINI PROJECT SHINE
   ========================================================= */

@keyframes miniProjectShine{

    0%{

        left:-100%;

        opacity:0;

    }

    15%{

        opacity:1;

    }

    45%{

        left:140%;

        opacity:.7;

    }

    100%{

        left:140%;

        opacity:0;

    }

}

/* =========================================================
   PORTFOLIO — V4 VISIBLE MOTION LAYER
   ADD AT THE VERY END OF homepage.css
   ========================================================= */


/* =========================================================
   FEATURED PROJECT — BREATHING GLOW
   ========================================================= */

.featured-project{
    position:relative !important;
    isolation:isolate !important;

    animation:
        featuredBreathingGlow 3.5s ease-in-out infinite !important;
}


/* =========================================================
   FEATURED PROJECT — MOVING BORDER LIGHT
   ========================================================= */

.featured-project::after{

    content:"" !important;

    position:absolute !important;

    inset:-2px !important;

    border-radius:32px !important;

    padding:2px !important;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #00d4ff 20%,
            #6b5cff 45%,
            transparent 65%,
            #00d4ff 85%,
            transparent 100%
        ) !important;

    background-size:300% 100% !important;

    animation:
        featuredBorderMove 3s linear infinite !important;

    pointer-events:none !important;

    z-index:0 !important;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0) !important;

    -webkit-mask-composite:xor !important;

    mask-composite:exclude !important;
}


/* Keep everything above animated border */

.featured-project > *{
    position:relative !important;
    z-index:3 !important;
}


/* =========================================================
   FEATURED PROJECT — BIG INTERNAL LIGHT SWEEP
   ========================================================= */

.featured-project .project-content::before{

    content:"" !important;

    position:absolute !important;

    top:-80px !important;
    left:-180px !important;

    width:120px !important;
    height:500px !important;

    transform:rotate(25deg) !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.28),
            rgba(107,92,255,.20),
            transparent
        ) !important;

    filter:blur(8px) !important;

    pointer-events:none !important;

    animation:
        featuredLightSweep 3.8s linear infinite !important;

    z-index:1 !important;
}


/* =========================================================
   PROJECT PREVIEW — STRONGER LIGHT
   ========================================================= */

.project-preview{

    position:relative !important;
    overflow:hidden !important;

    box-shadow:
        0 0 0 rgba(0,212,255,0) !important;

    animation:
        previewGlowPulse 2.8s ease-in-out infinite !important;
}


.project-preview::after{

    content:"" !important;

    position:absolute !important;

    top:-100% !important;

    left:-80% !important;

    width:65% !important;

    height:300% !important;

    transform:rotate(25deg) !important;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,.05) 25%,
            rgba(0,212,255,.55) 50%,
            rgba(255,255,255,.08) 70%,
            transparent 100%
        ) !important;

    filter:blur(5px) !important;

    pointer-events:none !important;

    animation:
        robotPreviewSweep 2.7s linear infinite !important;

    z-index:4 !important;
}


/* =========================================================
   ROBOT — KEEP FLOATING + SMALL PULSE
   ========================================================= */

.project-emoji{

    position:relative !important;

    z-index:5 !important;

    display:inline-block !important;

    animation:
        robotFloatV4 3.2s ease-in-out infinite !important;
}


/* =========================================================
   RIGHT PROJECT LIST
   ========================================================= */

.mini-project{

    position:relative !important;

    overflow:hidden !important;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease !important;
}


/* =========================================================
   RIGHT PROJECT — MOVING LIGHT BAR
   ========================================================= */

.mini-project::before{

    content:"" !important;

    position:absolute !important;

    top:0 !important;

    left:-70% !important;

    width:45% !important;

    height:100% !important;

    transform:skewX(-20deg) !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.40),
            rgba(107,92,255,.30),
            transparent
        ) !important;

    filter:blur(5px) !important;

    pointer-events:none !important;

    animation:
        miniLightMoveV4 3.5s ease-in-out infinite !important;

    z-index:1 !important;
}


/* Make every project content visible */

.mini-project > *{
    position:relative !important;
    z-index:3 !important;
}


/* =========================================================
   RIGHT PROJECT — ICON MOTION
   ========================================================= */

.mini-icon{

    animation:
        miniIconPulseV4 2.6s ease-in-out infinite !important;
}


/* Different timing for each item */

.mini-project:nth-child(2) .mini-icon{
    animation-delay:.35s !important;
}

.mini-project:nth-child(3) .mini-icon{
    animation-delay:.70s !important;
}

.mini-project:nth-child(4) .mini-icon{
    animation-delay:1.05s !important;
}


/* =========================================================
   RIGHT PROJECT — HOVER
   ========================================================= */

.mini-project:hover{

    transform:translateX(12px) !important;

    background:
        linear-gradient(
            90deg,
            rgba(0,212,255,.10),
            rgba(20,33,58,.96)
        ) !important;

    border-color:
        rgba(0,212,255,.55) !important;

    box-shadow:
        0 12px 35px rgba(0,0,0,.30),
        0 0 30px rgba(0,212,255,.14) !important;
}


/* =========================================================
   FEATURED CARD HOVER
   ========================================================= */

.featured-project:hover{

    transform:translateY(-10px) scale(1.008) !important;

    box-shadow:
        0 35px 90px rgba(0,0,0,.42),
        0 0 45px rgba(0,212,255,.20),
        0 0 90px rgba(107,92,255,.08) !important;
}


/* =========================================================
   ANIMATION 1 — FEATURED BREATHING GLOW
   ========================================================= */

@keyframes featuredBreathingGlow{

    0%{

        box-shadow:
            0 25px 70px rgba(0,0,0,.30),
            0 0 15px rgba(0,212,255,.05);

    }

    50%{

        box-shadow:
            0 30px 80px rgba(0,0,0,.34),
            0 0 38px rgba(0,212,255,.14);

    }

    100%{

        box-shadow:
            0 25px 70px rgba(0,0,0,.30),
            0 0 15px rgba(107,92,255,.06);

    }

}


/* =========================================================
   ANIMATION 2 — BORDER MOVEMENT
   ========================================================= */

@keyframes featuredBorderMove{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:200% 50%;
    }

}


/* =========================================================
   ANIMATION 3 — INTERNAL LIGHT
   ========================================================= */

@keyframes featuredLightSweep{

    0%{
        left:-220px;
        opacity:0;
    }

    10%{
        opacity:.8;
    }

    55%{
        left:115%;
        opacity:.7;
    }

    70%{
        opacity:0;
    }

    100%{
        left:115%;
        opacity:0;
    }

}


/* =========================================================
   ANIMATION 4 — ROBOT PREVIEW LIGHT
   ========================================================= */

@keyframes robotPreviewSweep{

    0%{
        left:-100%;
        opacity:0;
    }

    15%{
        opacity:1;
    }

    55%{
        left:150%;
        opacity:.9;
    }

    100%{
        left:150%;
        opacity:0;
    }

}


/* =========================================================
   ANIMATION 5 — PREVIEW GLOW
   ========================================================= */

@keyframes previewGlowPulse{

    0%{
        box-shadow:
            0 0 0 rgba(0,212,255,0);
    }

    50%{
        box-shadow:
            0 0 28px rgba(0,212,255,.18);
    }

    100%{
        box-shadow:
            0 0 0 rgba(0,212,255,0);
    }

}


/* =========================================================
   ANIMATION 6 — ROBOT FLOAT
   ========================================================= */

@keyframes robotFloatV4{

    0%{
        transform:translateY(0) scale(1);
    }

    50%{
        transform:translateY(-9px) scale(1.025);
    }

    100%{
        transform:translateY(0) scale(1);
    }

}


/* =========================================================
   ANIMATION 7 — RIGHT PROJECT LIGHT
   ========================================================= */

@keyframes miniLightMoveV4{

    0%{
        left:-70%;
        opacity:0;
    }

    15%{
        opacity:1;
    }

    55%{
        left:130%;
        opacity:.8;
    }

    75%{
        opacity:0;
    }

    100%{
        left:130%;
        opacity:0;
    }

}


/* =========================================================
   ANIMATION 8 — RIGHT ICON PULSE
   ========================================================= */

@keyframes miniIconPulseV4{

    0%{
        transform:translateY(0) scale(1);
    }

    50%{
        transform:translateY(-3px) scale(1.08);
    }

    100%{
        transform:translateY(0) scale(1);
    }

}

/* =========================================================
   PORTFOLIO — V5 CLEAN MOTION FIX
   Removes V4 broken diagonal border effect
   ========================================================= */


/* =========================================================
   FEATURED CARD — CLEAN BASE
   ========================================================= */

.featured-project{

    position:relative !important;

    isolation:isolate !important;

    overflow:hidden !important;

    border:
        1px solid rgba(0,212,255,.28) !important;

    animation:
        featuredCleanGlow 4s ease-in-out infinite !important;

}


/* =========================================================
   REMOVE BROKEN V4 DIAGONAL BORDER
   ========================================================= */

.featured-project::after{

    content:none !important;

    display:none !important;

}


/* =========================================================
   CLEAN MOVING LIGHT INSIDE CARD
   ========================================================= */

.featured-project::before{

    content:"" !important;

    position:absolute !important;

    top:0 !important;

    left:-45% !important;

    width:32% !important;

    height:100% !important;

    border-radius:inherit !important;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,212,255,.03) 20%,
            rgba(0,212,255,.18) 50%,
            rgba(107,92,255,.10) 70%,
            transparent 100%
        ) !important;

    filter:blur(10px) !important;

    transform:skewX(-18deg) !important;

    pointer-events:none !important;

    z-index:1 !important;

    animation:
        cleanFeaturedSweep 4.8s ease-in-out infinite !important;

}


/* =========================================================
   KEEP CARD CONTENT ABOVE LIGHT
   ========================================================= */

.featured-project > *{

    position:relative !important;

    z-index:3 !important;

}


/* =========================================================
   ROBOT PREVIEW — CLEAN
   ========================================================= */

.project-preview{

    position:relative !important;

    overflow:hidden !important;

}


/* Remove excessive preview glow */

.project-preview{

    animation:none !important;

    box-shadow:none !important;

}


/* =========================================================
   PREVIEW LIGHT SWEEP
   ========================================================= */

.project-preview::after{

    content:"" !important;

    position:absolute !important;

    top:-20% !important;

    left:-70% !important;

    width:35% !important;

    height:140% !important;

    transform:skewX(-18deg) !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.22),
            transparent
        ) !important;

    filter:blur(5px) !important;

    pointer-events:none !important;

    z-index:4 !important;

    animation:
        cleanPreviewSweep 4s ease-in-out infinite !important;

}


/* =========================================================
   ROBOT
   ========================================================= */

.project-emoji{

    position:relative !important;

    z-index:5 !important;

    display:inline-block !important;

    animation:
        robotFloatV5 3.2s ease-in-out infinite !important;

}


/* =========================================================
   RIGHT PROJECTS — CLEAN LIGHT
   ========================================================= */

.mini-project{

    position:relative !important;

    overflow:hidden !important;

}


/* Existing shine becomes softer */

.mini-project::before{

    content:"" !important;

    position:absolute !important;

    top:0 !important;

    left:-70% !important;

    width:35% !important;

    height:100% !important;

    transform:skewX(-18deg) !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.13),
            transparent
        ) !important;

    filter:blur(5px) !important;

    pointer-events:none !important;

    z-index:1 !important;

    animation:
        cleanMiniSweep 5s ease-in-out infinite !important;

}


.mini-project > *{

    position:relative !important;

    z-index:3 !important;

}


/* =========================================================
   ICON — VERY SUBTLE MOTION
   ========================================================= */

.mini-icon{

    animation:
        miniIconFloatV5 3s ease-in-out infinite !important;

}


/* =========================================================
   FEATURED CARD — PREMIUM GLOW
   ========================================================= */

@keyframes featuredCleanGlow{

    0%{

        border-color:
            rgba(0,212,255,.22);

        box-shadow:
            0 20px 55px rgba(0,0,0,.28),
            0 0 18px rgba(0,212,255,.04);

    }

    50%{

        border-color:
            rgba(0,212,255,.48);

        box-shadow:
            0 25px 65px rgba(0,0,0,.32),
            0 0 35px rgba(0,212,255,.13);

    }

    100%{

        border-color:
            rgba(107,92,255,.30);

        box-shadow:
            0 20px 55px rgba(0,0,0,.28),
            0 0 22px rgba(107,92,255,.07);

    }

}


/* =========================================================
   FEATURED CARD SWEEP
   ========================================================= */

@keyframes cleanFeaturedSweep{

    0%{

        left:-45%;

        opacity:0;

    }

    15%{

        opacity:1;

    }

    55%{

        left:125%;

        opacity:.75;

    }

    70%{

        opacity:0;

    }

    100%{

        left:125%;

        opacity:0;

    }

}


/* =========================================================
   PREVIEW SWEEP
   ========================================================= */

@keyframes cleanPreviewSweep{

    0%{

        left:-70%;

        opacity:0;

    }

    15%{

        opacity:.8;

    }

    55%{

        left:135%;

        opacity:.65;

    }

    75%{

        opacity:0;

    }

    100%{

        left:135%;

        opacity:0;

    }

}


/* =========================================================
   ROBOT FLOAT
   ========================================================= */

@keyframes robotFloatV5{

    0%{

        transform:
            translateY(0)
            scale(1);

    }

    50%{

        transform:
            translateY(-8px)
            scale(1.025);

    }

    100%{

        transform:
            translateY(0)
            scale(1);

    }

}


/* =========================================================
   MINI PROJECT SWEEP
   ========================================================= */

@keyframes cleanMiniSweep{

    0%{

        left:-70%;

        opacity:0;

    }

    15%{

        opacity:.7;

    }

    55%{

        left:135%;

        opacity:.45;

    }

    75%{

        opacity:0;

    }

    100%{

        left:135%;

        opacity:0;

    }

}


/* =========================================================
   MINI ICON FLOAT
   ========================================================= */

@keyframes miniIconFloatV5{

    0%{

        transform:
            translateY(0);

    }

    50%{

        transform:
            translateY(-3px);

    }

    100%{

        transform:
            translateY(0);

    }

}

/* =========================================================
   FEATURED PROJECTS — PREMIUM V4
   CLEAN PREMIUM MOTION SYSTEM
   ========================================================= */


/* =========================================================
   SECTION SHELL
   ========================================================= */

.portfolio-section{

    position:relative;

    overflow:hidden;

    padding:140px 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0,212,255,.075),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            rgba(5,14,30,.35),
            rgba(3,9,22,.72)
        );
}


/* =========================================================
   MAIN AMBIENT LIGHT
   ========================================================= */

.portfolio-section::before{

    content:"";

    position:absolute;

    width:760px;
    height:760px;

    left:50%;
    top:-360px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(0,212,255,.15) 0%,
            rgba(0,212,255,.065) 32%,
            transparent 70%
        );

    filter:blur(55px);

    pointer-events:none;

    animation:
        portfolioAmbientGlow 7s ease-in-out infinite alternate;
}


/* =========================================================
   SECONDARY AMBIENT LIGHT
   ========================================================= */

.portfolio-section::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-180px;
    bottom:-220px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(108,92,255,.12),
            transparent 68%
        );

    filter:blur(65px);

    pointer-events:none;

    animation:
        portfolioAmbientFloat 9s ease-in-out infinite alternate;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.portfolio-section .container{

    position:relative;

    z-index:2;
}


/* =========================================================
   PORTFOLIO GRID
   ========================================================= */

.portfolio-grid{

    position:relative;

    display:grid;

    grid-template-columns:
        minmax(0,1.35fr)
        minmax(320px,.85fr);

    gap:32px;

    align-items:stretch;

    margin-top:70px;
}


/* =========================================================
   FEATURED PROJECT
   ========================================================= */

.featured-project{

    position:relative;

    isolation:isolate;

    overflow:hidden;

    border:
        1px solid rgba(0,212,255,.26);

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;

    animation:
        featuredCardPulse 4s ease-in-out infinite;
}


/* =========================================================
   FEATURED CARD — MOVING INTERNAL LIGHT
   ========================================================= */

.featured-project::before{

    content:"";

    position:absolute;

    top:0;
    bottom:0;

    left:-45%;

    width:34%;

    transform:skewX(-18deg);

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,212,255,.04) 20%,
            rgba(0,212,255,.20) 50%,
            rgba(108,92,255,.12) 70%,
            transparent 100%
        );

    filter:blur(8px);

    pointer-events:none;

    z-index:1;

    animation:
        featuredLightSweep 4.2s ease-in-out infinite;
}


/* =========================================================
   FEATURED PROJECT CONTENT ABOVE LIGHT
   ========================================================= */

.featured-project > *{

    position:relative;

    z-index:3;
}


/* =========================================================
   FEATURED CARD HOVER
   ========================================================= */

.featured-project:hover{

    transform:translateY(-9px);

    border-color:
        rgba(0,212,255,.55);

    box-shadow:
        0 30px 75px rgba(0,0,0,.40),
        0 0 38px rgba(0,212,255,.16);
}


/* =========================================================
   PROJECT PREVIEW
   ========================================================= */

.project-preview{

    position:relative;

    overflow:hidden;

}


/* =========================================================
   PROJECT PREVIEW — MOVING LIGHT
   ========================================================= */

.project-preview::after{

    content:"";

    position:absolute;

    top:-20%;

    bottom:-20%;

    left:-70%;

    width:32%;

    transform:skewX(-18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.24),
            rgba(255,255,255,.08),
            transparent
        );

    filter:blur(5px);

    pointer-events:none;

    z-index:4;

    animation:
        previewLightSweep 3.8s ease-in-out infinite;
}


/* =========================================================
   ROBOT
   ========================================================= */

.project-emoji{

    position:relative;

    z-index:5;

    display:inline-block;

    animation:
        robotFloatPremium 3.2s ease-in-out infinite;
}


/* =========================================================
   RIGHT SIDE MINI PROJECTS
   ========================================================= */

.mini-project{

    position:relative;

    overflow:hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}


/* =========================================================
   MINI PROJECT — MOVING LIGHT
   ========================================================= */

.mini-project::before{

    content:"";

    position:absolute;

    top:0;
    bottom:0;

    left:-70%;

    width:32%;

    transform:skewX(-18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.18),
            rgba(108,92,255,.10),
            transparent
        );

    filter:blur(5px);

    pointer-events:none;

    z-index:1;

    animation:
        miniProjectSweep 4.5s ease-in-out infinite;
}


/* =========================================================
   MINI PROJECT CONTENT
   ========================================================= */

.mini-project > *{

    position:relative;

    z-index:3;
}


/* =========================================================
   STAGGER MINI PROJECTS
   ========================================================= */

.mini-project:nth-child(1)::before{

    animation-delay:0s;
}

.mini-project:nth-child(2)::before{

    animation-delay:1.1s;
}

.mini-project:nth-child(3)::before{

    animation-delay:2.2s;
}

.mini-project:nth-child(4)::before{

    animation-delay:3.3s;
}


/* =========================================================
   MINI PROJECT HOVER
   ========================================================= */

.mini-project:hover{

    transform:translateX(9px);

    border-color:
        rgba(0,212,255,.40);

    background:
        rgba(20,33,58,.94);

    box-shadow:
        0 14px 38px rgba(0,0,0,.30),
        0 0 24px rgba(0,212,255,.10);
}


/* =========================================================
   AMBIENT GLOW ANIMATION
   ========================================================= */

@keyframes portfolioAmbientGlow{

    0%{

        transform:
            translateX(-50%)
            scale(.88);

        opacity:.55;
    }

    50%{

        opacity:.80;
    }

    100%{

        transform:
            translateX(-50%)
            scale(1.12);

        opacity:1;
    }
}


/* =========================================================
   SECONDARY AMBIENT FLOAT
   ========================================================= */

@keyframes portfolioAmbientFloat{

    0%{

        transform:
            translate(0,0)
            scale(.85);

        opacity:.35;
    }

    100%{

        transform:
            translate(-90px,-55px)
            scale(1.12);

        opacity:.85;
    }
}


/* =========================================================
   FEATURED CARD BREATHING
   ========================================================= */

@keyframes featuredCardPulse{

    0%{

        box-shadow:
            0 22px 55px rgba(0,0,0,.28),
            0 0 12px rgba(0,212,255,.03);

        border-color:
            rgba(0,212,255,.22);
    }

    50%{

        box-shadow:
            0 27px 65px rgba(0,0,0,.32),
            0 0 32px rgba(0,212,255,.12);

        border-color:
            rgba(0,212,255,.42);
    }

    100%{

        box-shadow:
            0 22px 55px rgba(0,0,0,.28),
            0 0 14px rgba(108,92,255,.05);

        border-color:
            rgba(108,92,255,.27);
    }
}


/* =========================================================
   FEATURED LIGHT SWEEP
   ========================================================= */

@keyframes featuredLightSweep{

    0%{

        left:-45%;

        opacity:0;
    }

    12%{

        opacity:1;
    }

    55%{

        left:125%;

        opacity:.75;
    }

    72%{

        opacity:0;
    }

    100%{

        left:125%;

        opacity:0;
    }
}


/* =========================================================
   PREVIEW LIGHT SWEEP
   ========================================================= */

@keyframes previewLightSweep{

    0%{

        left:-70%;

        opacity:0;
    }

    15%{

        opacity:.85;
    }

    55%{

        left:135%;

        opacity:.65;
    }

    75%{

        opacity:0;
    }

    100%{

        left:135%;

        opacity:0;
    }
}


/* =========================================================
   ROBOT FLOAT
   ========================================================= */

@keyframes robotFloatPremium{

    0%{

        transform:
            translateY(0)
            scale(1);
    }

    50%{

        transform:
            translateY(-8px)
            scale(1.025);
    }

    100%{

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   MINI PROJECT SWEEP
   ========================================================= */

@keyframes miniProjectSweep{

    0%{

        left:-70%;

        opacity:0;
    }

    15%{

        opacity:.75;
    }

    55%{

        left:135%;

        opacity:.50;
    }

    75%{

        opacity:0;
    }

    100%{

        left:135%;

        opacity:0;
    }
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion:reduce){

    .portfolio-section::before,
    .portfolio-section::after,
    .featured-project,
    .featured-project::before,
    .project-preview::after,
    .project-emoji,
    .mini-project::before{

        animation:none !important;
    }

}

/* =========================================================
   PORTFOLIO — FINAL PREMIUM MOTION V5
   CONTROLLED • VISIBLE • NO DIAGONAL LINE
   ADD AT THE VERY END OF homepage.css
   ========================================================= */


/* =========================================================
   1. FEATURED CARD — CLEAN MOTION BASE
   ========================================================= */

.featured-project {
    position: relative !important;
    overflow: hidden !important;

    transform: translateZ(0);

    animation:
        featuredCardBreath 5.5s ease-in-out infinite !important;

    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease !important;
}


/* =========================================================
   2. REMOVE OLD / WRONG FEATURED CARD MOTION
   ========================================================= */

.featured-project::before {
    transform: none !important;

    animation: none !important;

    opacity: .9 !important;
}


/* =========================================================
   3. NEW INTERNAL LIGHT SWEEP
   NO SKEW
   NO DIAGONAL LINE
   SOFT HORIZONTAL LIGHT
   ========================================================= */

.featured-project::after {
    content: "" !important;

    position: absolute !important;

    top: 0 !important;
    bottom: 0 !important;

    left: -45% !important;

    width: 32% !important;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(0,212,255,.02) 20%,
            rgba(0,212,255,.10) 50%,
            rgba(0,212,255,.02) 80%,
            transparent 100%
        ) !important;

    filter: blur(18px) !important;

    transform: none !important;

    opacity: 0 !important;

    pointer-events: none !important;

    z-index: 1 !important;

    animation:
        featuredLightSweep 6s ease-in-out infinite !important;
}


/* =========================================================
   4. KEEP FEATURED CONTENT ABOVE LIGHT
   ========================================================= */

.featured-project > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   5. ROBOT — VERY LIGHT FLOAT
   ========================================================= */

.featured-project img,
.featured-project .project-image,
.featured-project .project-icon {
    animation:
        featuredIconFloat 4.5s ease-in-out infinite !important;
}


/* =========================================================
   6. RIGHT SIDE MINI PROJECTS
   ========================================================= */

.mini-project {
    position: relative !important;
    overflow: hidden !important;

    transform: translateZ(0);

    transition:
        transform .45s ease,
        border-color .45s ease,
        background .45s ease,
        box-shadow .45s ease !important;
}


/* =========================================================
   7. MINI PROJECT LIGHT PASS
   ========================================================= */

.mini-project::after {
    content: "" !important;

    position: absolute !important;

    top: 0 !important;
    bottom: 0 !important;

    left: -70% !important;

    width: 45% !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.07),
            transparent
        ) !important;

    filter: blur(14px) !important;

    transform: none !important;

    opacity: 0 !important;

    pointer-events: none !important;

    z-index: 0 !important;

    animation:
        miniProjectLight 7s ease-in-out infinite !important;
}


/* =========================================================
   8. MINI PROJECT CONTENT ABOVE LIGHT
   ========================================================= */

.mini-project > * {
    position: relative;
    z-index: 1;
}


/* =========================================================
   9. MINI PROJECT HOVER
   ========================================================= */

.mini-project:hover {
    transform: translateX(6px) !important;

    border-color:
        rgba(0,212,255,.28) !important;

    box-shadow:
        0 12px 35px rgba(0,0,0,.20),
        0 0 24px rgba(0,212,255,.07) !important;
}


/* =========================================================
   10. FEATURED CARD HOVER
   ========================================================= */

.featured-project:hover {
    transform: translateY(-8px) !important;

    border-color:
        rgba(0,212,255,.32) !important;

    box-shadow:
        0 30px 70px rgba(0,0,0,.35),
        0 0 35px rgba(0,212,255,.10) !important;
}


/* =========================================================
   11. FEATURED CARD BREATH
   ========================================================= */

@keyframes featuredCardBreath {

    0%,
    100% {
        box-shadow:
            0 20px 55px rgba(0,0,0,.22),
            0 0 0 rgba(0,212,255,0);
    }

    50% {
        box-shadow:
            0 24px 62px rgba(0,0,0,.27),
            0 0 24px rgba(0,212,255,.08);
    }
}


/* =========================================================
   12. INTERNAL LIGHT SWEEP
   ========================================================= */

@keyframes featuredLightSweep {

    0% {
        left: -45%;
        opacity: 0;
    }

    12% {
        opacity: .8;
    }

    42% {
        left: 115%;
        opacity: .8;
    }

    55% {
        left: 115%;
        opacity: 0;
    }

    100% {
        left: 115%;
        opacity: 0;
    }
}


/* =========================================================
   13. ICON / ROBOT FLOAT
   ========================================================= */

@keyframes featuredIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


/* =========================================================
   14. MINI PROJECT LIGHT MOTION
   ========================================================= */

@keyframes miniProjectLight {

    0% {
        left: -70%;
        opacity: 0;
    }

    10% {
        opacity: .65;
    }

    38% {
        left: 125%;
        opacity: .65;
    }

    48% {
        left: 125%;
        opacity: 0;
    }

    100% {
        left: 125%;
        opacity: 0;
    }
}


/* =========================================================
   15. ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .featured-project,
    .featured-project::after,
    .featured-project img,
    .featured-project .project-image,
    .featured-project .project-icon,
    .mini-project,
    .mini-project::after {
        animation: none !important;
        transition: none !important;
    }

}

/* =========================================================
   PORTFOLIO — MOTION CLEANUP V6
   REMOVE BLOCKY SWEEP
   STRENGTHEN FEATURED CARD MOTION
   ========================================================= */


/* ---------------------------------------------------------
   1. REMOVE MINI PROJECT RECTANGULAR LIGHT
   --------------------------------------------------------- */

.mini-project::after {
    display: none !important;
    animation: none !important;
    opacity: 0 !important;
}


/* ---------------------------------------------------------
   2. FEATURED CARD — CLEAN BREATHING
   --------------------------------------------------------- */

.featured-project {
    animation:
        portfolioFeaturedPulse 4.8s ease-in-out infinite !important;

    will-change:
        box-shadow,
        border-color;
}


/* ---------------------------------------------------------
   3. FEATURED CARD — VISIBLE SOFT LIGHT
   --------------------------------------------------------- */

.featured-project::after {
    content: "" !important;

    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    background:
        radial-gradient(
            ellipse 180px 110px at -10% 50%,
            rgba(0,212,255,.16),
            transparent 70%
        ) !important;

    filter: blur(18px) !important;

    opacity: 0 !important;

    pointer-events: none !important;

    transform: translateX(-20%) !important;

    z-index: 1 !important;

    animation:
        portfolioFeaturedLight 5.5s ease-in-out infinite !important;
}


/* ---------------------------------------------------------
   4. KEEP CONTENT ABOVE LIGHT
   --------------------------------------------------------- */

.featured-project > * {
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   5. FEATURED CARD BORDER / GLOW PULSE
   --------------------------------------------------------- */

@keyframes portfolioFeaturedPulse {

    0%,
    100% {
        border-color:
            rgba(255,255,255,.10);

        box-shadow:
            0 20px 55px rgba(0,0,0,.22),
            0 0 0 rgba(0,212,255,0);
    }

    50% {
        border-color:
            rgba(0,212,255,.30);

        box-shadow:
            0 24px 62px rgba(0,0,0,.27),
            0 0 32px rgba(0,212,255,.09);
    }
}


/* ---------------------------------------------------------
   6. SOFT LIGHT MOVES ACROSS FEATURED CARD
   --------------------------------------------------------- */

@keyframes portfolioFeaturedLight {

    0% {
        transform:
            translateX(-35%);

        opacity: 0;
    }

    18% {
        opacity: .9;
    }

    50% {
        transform:
            translateX(35%);

        opacity: .65;
    }

    82% {
        transform:
            translateX(85%);

        opacity: .2;
    }

    100% {
        transform:
            translateX(115%);

        opacity: 0;
    }
}


/* ---------------------------------------------------------
   7. REMOVE OLD MOTION FROM MINI PROJECTS
   --------------------------------------------------------- */

.mini-project {
    animation: none !important;
}


/* ---------------------------------------------------------
   8. KEEP ROBOT FLOAT SUBTLE
   --------------------------------------------------------- */

.featured-project img,
.featured-project .project-image,
.featured-project .project-icon {
    animation:
        featuredIconFloat 5s ease-in-out infinite !important;
}

/* =========================================================
   PORTFOLIO — REAL VISIBLE MOTION V7
   FINAL DIAGNOSTIC / PREMIUM MOTION
   ========================================================= */


/* =========================================================
   FEATURED CARD BASE
   ========================================================= */

.featured-project {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;

    animation:
        featuredCardPulseV7 3.8s ease-in-out infinite !important;

    will-change:
        box-shadow,
        border-color !important;
}


/* =========================================================
   REMOVE OLD FEATURED PSEUDO MOTION
   ========================================================= */

.featured-project::before {
    content: "" !important;

    position: absolute !important;

    inset: -25% !important;

    z-index: 0 !important;

    pointer-events: none !important;

    border-radius: inherit !important;

    background:
        radial-gradient(
            ellipse 280px 180px at 15% 50%,
            rgba(0,212,255,.18),
            rgba(0,212,255,.07) 35%,
            transparent 72%
        ) !important;

    filter: blur(28px) !important;

    opacity: .75 !important;

    transform:
        translate3d(-22%,0,0) !important;

    animation:
        featuredAmbientMoveV7 5s ease-in-out infinite alternate !important;
}


/* =========================================================
   REMOVE ALL OLD FEATURED AFTER EFFECT
   ========================================================= */

.featured-project::after {
    content: none !important;

    display: none !important;

    animation: none !important;
}


/* =========================================================
   FEATURED CONTENT ABOVE LIGHT
   ========================================================= */

.featured-project > * {
    position: relative !important;
    z-index: 2 !important;
}


/* =========================================================
   ROBOT / IMAGE — STOP OLD FLOAT
   ========================================================= */

.featured-project img,
.featured-project .project-image,
.featured-project .project-icon {
    animation: none !important;

    transform: none !important;
}


/* =========================================================
   FEATURED CARD — VISIBLE BORDER PULSE
   ========================================================= */

@keyframes featuredCardPulseV7 {

    0%,
    100% {
        border-color:
            rgba(0,212,255,.16) !important;

        box-shadow:
            0 20px 55px rgba(0,0,0,.22),
            0 0 10px rgba(0,212,255,.03);
    }

    50% {
        border-color:
            rgba(0,212,255,.42) !important;

        box-shadow:
            0 24px 65px rgba(0,0,0,.28),
            0 0 38px rgba(0,212,255,.14);
    }
}


/* =========================================================
   FEATURED CARD — MOVING AMBIENT LIGHT
   ========================================================= */

@keyframes featuredAmbientMoveV7 {

    0% {
        transform:
            translate3d(-22%,0,0)
            scale(1);
    }

    50% {
        transform:
            translate3d(10%,0,0)
            scale(1.08);
    }

    100% {
        transform:
            translate3d(42%,0,0)
            scale(1);
    }
}


/* =========================================================
   MINI PROJECTS — REMOVE BIG HOVER BLOCK
   ========================================================= */

.mini-project:hover {
    background:
        transparent !important;

    box-shadow:
        none !important;

    transform:
        translateX(4px) !important;

    border-color:
        rgba(0,212,255,.25) !important;
}


/* =========================================================
   MINI PROJECT PSEUDO MOTION — COMPLETELY OFF
   ========================================================= */

.mini-project::after {
    content: none !important;

    display: none !important;

    animation: none !important;
}


/* =========================================================
   MINI PROJECT — NO OLD ANIMATION
   ========================================================= */

.mini-project {
    animation: none !important;
}


/* =========================================================
   REDUCE MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .featured-project,
    .featured-project::before {
        animation: none !important;
    }

}

/* =========================================================
   PORTFOLIO — PREMIUM COLORFUL SVG ICONS V2
   ========================================================= */

/* Base SVG */

.project-icon-svg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0 !important;
}


/* SVG sizing */

.project-icon-svg svg {
    display: block !important;

    width: 42px !important;
    height: 42px !important;

    max-width: 42px !important;
    max-height: 42px !important;

    flex-shrink: 0 !important;

    color: #00d4ff !important;

    fill: none;

    transition:
        transform .35s ease,
        filter .35s ease !important;
}


/* =========================================================
   MINI PROJECT ICONS
   ========================================================= */

/* 1 — Enterprise ERP / Manufacturing */

.portfolio-list .mini-project:nth-child(1) .project-icon-svg {
    color: #ff9f32 !important;
}

.portfolio-list .mini-project:nth-child(1) .project-icon-svg svg {
    color: #ff9f32 !important;
}


/* 2 — Property Portal / Real Estate */

.portfolio-list .mini-project:nth-child(2) .project-icon-svg {
    color: #38d9ff !important;
}

.portfolio-list .mini-project:nth-child(2) .project-icon-svg svg {
    color: #38d9ff !important;
}


/* 3 — Bulk SMS / Communication */

.portfolio-list .mini-project:nth-child(3) .project-icon-svg {
    color: #ff4f9a !important;
}

.portfolio-list .mini-project:nth-child(3) .project-icon-svg svg {
    color: #ff4f9a !important;
}


/* 4 — Learning Platform / Education */

.portfolio-list .mini-project:nth-child(4) .project-icon-svg {
    color: #ffd43b !important;
}

.portfolio-list .mini-project:nth-child(4) .project-icon-svg svg {
    color: #ffd43b !important;
}


/* =========================================================
   HOVER — SUBTLE PREMIUM MOTION
   ========================================================= */

.featured-project:hover .project-icon-svg svg {
    transform: scale(1.08);
}

.portfolio-list .mini-project:hover .project-icon-svg svg {
    transform: scale(1.10);
}


/* =========================================================
   ACCESSIBILITY / RENDERING
   ========================================================= */

.project-icon-svg svg path,
.project-icon-svg svg rect,
.project-icon-svg svg circle {
    vector-effect: non-scaling-stroke;
}

/* =========================================================
   PORTFOLIO — ICON SIZE + VERTICAL ALIGNMENT FIX
   ========================================================= */


/* =========================================================
   1. FEATURED ROBOT ICON — BIGGER
   ========================================================= */


/* =========================================================
   FEATURED PROJECT — LARGE ROBOT ICON
   ========================================================= */

.featured-project .project-preview .project-icon-svg svg {
    width: 82px !important;
    height: 82px !important;

    max-width: 82px !important;
    max-height: 82px !important;

    display: block !important;
}


/* =========================================================
   2. RIGHT SIDE PROJECT ROW
   ICON + TEXT = VERTICAL CENTER
   ========================================================= */

.portfolio-list .mini-project {
    display: flex !important;

    align-items: center !important;

    gap: 18px !important;
}


/* =========================================================
   3. MINI ICON BOX
   ========================================================= */

.portfolio-list .mini-project .mini-icon {
    flex: 0 0 58px !important;

    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
}


/* =========================================================
   4. MINI SVG — CENTER INSIDE ICON BOX
   ========================================================= */

.portfolio-list .mini-project .mini-icon .project-icon-svg {
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.portfolio-list .mini-project .mini-icon .project-icon-svg svg {
    width: 38px !important;
    height: 38px !important;

    max-width: 38px !important;
    max-height: 38px !important;

    display: block !important;
}


/* =========================================================
   5. TEXT BLOCK — NO EXTRA VERTICAL OFFSET
   ========================================================= */

.portfolio-list .mini-project .mini-content {
    flex: 1 1 auto !important;

    display: flex !important;
    flex-direction: column !important;

    justify-content: center !important;

    margin: 0 !important;
}


/* =========================================================
   6. REMOVE DEFAULT SPACING THAT CAN PUSH CONTENT
   ========================================================= */

.portfolio-list .mini-project .mini-content h4,
.portfolio-list .mini-project .mini-content span,
.portfolio-list .mini-project .mini-content small {
    margin-top: 0 !important;
}


/* =========================================================
   7. KEEP ROW HEIGHT CONSISTENT
   ========================================================= */

.portfolio-list .mini-project {
    min-height: 78px !important;
}

/* =========================================================
   FEATURED PROJECT — AI CRM DASHBOARD PREVIEW
   ========================================================= */

.featured-project .project-preview {
    position: relative !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: flex-start !important;

    gap: 22px !important;
}


/* =========================================================
   ROBOT ICON WRAPPER
   ========================================================= */

.featured-project .featured-icon-wrap {
    width: 104px !important;
    height: 104px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(0,212,255,.35);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(0,212,255,.12),
            rgba(15,30,55,.72)
        );

    flex-shrink: 0 !important;
}


/* =========================================================
   CRM DASHBOARD
   ========================================================= */

.crm-dashboard-preview {

    width: 100% !important;

    min-height: 185px;

    padding: 14px;

    border: 1px solid rgba(0,212,255,.16);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(10,28,50,.92),
            rgba(7,17,34,.88)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035);

    overflow: hidden;
}


/* =========================================================
   DASHBOARD HEADER
   ========================================================= */

.crm-dashboard-header {

    display: flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 11px;

    border-bottom:
        1px solid rgba(255,255,255,.06);
}


.crm-window-dots {

    display: flex;

    gap: 4px;
}


.crm-window-dots span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);
}


.crm-dashboard-title {

    font-size: 10px;

    font-weight: 700;

    color: #dcecff;

    flex: 1;
}


.crm-ai-status {

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .7px;

    color: #00d4ff;

    padding: 4px 7px;

    border-radius: 20px;

    background:
        rgba(0,212,255,.08);

    border:
        1px solid rgba(0,212,255,.20);
}


/* =========================================================
   DASHBOARD BODY
   ========================================================= */

.crm-dashboard-body {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    padding-top: 10px;
}


/* =========================================================
   KPI CARDS
   ========================================================= */

.crm-kpi {

    padding: 9px;

    border-radius: 9px;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid rgba(255,255,255,.055);
}


.crm-kpi-label {

    display: block;

    font-size: 7px;

    color: #8192aa;

    margin-bottom: 4px;
}


.crm-kpi strong {

    display: block;

    font-size: 14px;

    color: #f4f8ff;

    line-height: 1.2;
}


.crm-kpi small {

    display: block;

    margin-top: 3px;

    font-size: 7px;

    color: #00d4ff;
}


/* =========================================================
   AI ACTIVITY
   ========================================================= */

.crm-activity {

    grid-column: span 2;

    padding: 9px;

    border-radius: 9px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.05);
}


.crm-activity-head {

    display: flex;

    justify-content: space-between;

    font-size: 8px;

    color: #9eafc5;

    margin-bottom: 8px;
}


.crm-activity-head span:last-child {

    color: #00d4ff;

    font-weight: 700;
}


.crm-bars {

    height: 48px;

    display: flex;

    align-items: flex-end;

    gap: 6px;
}


.crm-bars i {

    display: block;

    flex: 1;

    min-width: 5px;

    border-radius: 4px 4px 1px 1px;

    background:
        linear-gradient(
            180deg,
            #00d4ff,
            rgba(0,212,255,.18)
        );

    animation:
        crmBarPulse 2.8s ease-in-out infinite alternate;
}


.crm-bars i:nth-child(1) {
    height: 35%;
}

.crm-bars i:nth-child(2) {
    height: 55%;
    animation-delay: .15s;
}

.crm-bars i:nth-child(3) {
    height: 42%;
    animation-delay: .3s;
}

.crm-bars i:nth-child(4) {
    height: 72%;
    animation-delay: .45s;
}

.crm-bars i:nth-child(5) {
    height: 58%;
    animation-delay: .6s;
}

.crm-bars i:nth-child(6) {
    height: 88%;
    animation-delay: .75s;
}

.crm-bars i:nth-child(7) {
    height: 67%;
    animation-delay: .9s;
}

.crm-bars i:nth-child(8) {
    height: 96%;
    animation-delay: 1.05s;
}


@keyframes crmBarPulse {

    from {
        opacity: .55;
        transform: scaleY(.82);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }

}


/* =========================================================
   RECENT ACTIVITY
   ========================================================= */

.crm-recent {

    padding: 9px;

    border-radius: 9px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.05);

    font-size: 7px;

    color: #9eafc5;
}


.crm-recent-title {

    display: block;

    font-size: 8px;

    font-weight: 700;

    color: #dcecff;

    margin-bottom: 7px;
}


.crm-recent div {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-top: 5px;

    white-space: nowrap;
}


.crm-status-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #00d4ff;

    flex-shrink: 0;
}

/* =========================================================
   FEATURED PROJECT — AI CRM DASHBOARD PREVIEW V1
   FINAL VISUAL AREA
   ========================================================= */

/* ---------------------------------------------------------
   FEATURED PROJECT CARD
   --------------------------------------------------------- */

.featured-project {
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   PROJECT PREVIEW
   --------------------------------------------------------- */

.featured-project .project-preview {
    position: relative;

    width: 100%;
    min-height: 310px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 34px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0, 212, 255, .075),
            transparent 58%
        );

    border-radius: 24px 24px 0 0;
}


/* ---------------------------------------------------------
   ROBOT ICON
   Floating badge — KEEP EXISTING SVG
   --------------------------------------------------------- */


/* ---------------------------------------------------------
   CRM DASHBOARD
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {

    position: relative;

    width: min(100%, 650px);

    min-height: 235px;

    margin-left: 70px;

    padding: 0;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(12, 35, 57, .98),
            rgba(7, 19, 38, .98)
        );

    border: 1px solid rgba(0, 212, 255, .18);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, .30),
        inset 0 1px 0 rgba(255, 255, 255, .035);

}


/* ---------------------------------------------------------
   DASHBOARD HEADER
   --------------------------------------------------------- */

.crm-dashboard-header {

    min-height: 46px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 0 16px;

    background:
        rgba(4, 14, 29, .72);

    border-bottom:
        1px solid rgba(255, 255, 255, .06);

}


/* Window dots */

.crm-window-dots {

    display: flex;

    align-items: center;

    gap: 5px;
}

.crm-window-dots span {

    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);
}


/* Dashboard title */

.crm-dashboard-title {

    flex: 1;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .04em;

    color: rgba(255, 255, 255, .82);
}


/* AI status */

.crm-ai-status {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .08em;

    color: #00e5ff;

    padding: 5px 8px;

    border-radius: 999px;

    background:
        rgba(0, 212, 255, .08);

    border:
        1px solid rgba(0, 212, 255, .20);
}


/* ---------------------------------------------------------
   DASHBOARD BODY
   --------------------------------------------------------- */

.crm-dashboard-body {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;

    padding: 14px;
}


/* ---------------------------------------------------------
   KPI CARDS
   --------------------------------------------------------- */

.crm-kpi {

    min-height: 72px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 11px 13px;

    border-radius: 11px;

    background:
        rgba(19, 43, 67, .72);

    border:
        1px solid rgba(255, 255, 255, .055);
}


.crm-kpi-label {

    display: block;

    margin-bottom: 4px;

    font-size: 9px;

    color: rgba(190, 210, 230, .68);
}


.crm-kpi strong {

    display: block;

    font-size: 18px;

    line-height: 1.1;

    color: #ffffff;
}


.crm-kpi small {

    display: block;

    margin-top: 4px;

    font-size: 8px;

    color: #00e5ff;
}


/* ---------------------------------------------------------
   AI ACTIVITY
   --------------------------------------------------------- */

.crm-activity {

    grid-column: span 2;

    min-height: 92px;

    padding: 12px 14px;

    border-radius: 11px;

    background:
        rgba(19, 43, 67, .55);

    border:
        1px solid rgba(255, 255, 255, .055);
}


.crm-activity-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 12px;

    font-size: 10px;

    font-weight: 700;

    color: rgba(255, 255, 255, .75);
}


.crm-activity-head span:last-child {

    color: #00e5ff;
}


/* ---------------------------------------------------------
   ACTIVITY BARS
   --------------------------------------------------------- */

.crm-bars {

    height: 48px;

    display: flex;

    align-items: flex-end;

    gap: 7px;
}


.crm-bars i {

    flex: 1;

    min-width: 8px;

    height: 30%;

    display: block;

    border-radius: 4px 4px 2px 2px;

    background:
        linear-gradient(
            180deg,
            #00e5ff,
            #5274ff
        );

    opacity: .85;

    animation:
        crmBarPulse 2.8s ease-in-out infinite alternate;
}


.crm-bars i:nth-child(2) {
    height: 55%;
    animation-delay: .15s;
}

.crm-bars i:nth-child(3) {
    height: 40%;
    animation-delay: .3s;
}

.crm-bars i:nth-child(4) {
    height: 75%;
    animation-delay: .45s;
}

.crm-bars i:nth-child(5) {
    height: 50%;
    animation-delay: .6s;
}

.crm-bars i:nth-child(6) {
    height: 90%;
    animation-delay: .75s;
}

.crm-bars i:nth-child(7) {
    height: 65%;
    animation-delay: .9s;
}

.crm-bars i:nth-child(8) {
    height: 82%;
    animation-delay: 1.05s;
}


@keyframes crmBarPulse {

    0% {
        transform: scaleY(.72);
        opacity: .55;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }

}


/* ---------------------------------------------------------
   RECENT ACTIVITY
   --------------------------------------------------------- */

.crm-recent {

    min-height: 92px;

    padding: 12px 14px;

    border-radius: 11px;

    background:
        rgba(19, 43, 67, .55);

    border:
        1px solid rgba(255, 255, 255, .055);
}


.crm-recent-title {

    display: block;

    margin-bottom: 9px;

    font-size: 10px;

    font-weight: 700;

    color: rgba(255, 255, 255, .75);
}


.crm-recent > div {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-top: 7px;

    font-size: 8px;

    color: rgba(210, 225, 240, .72);
}


.crm-status-dot {

    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;

    background: #00e5ff;

    box-shadow:
        0 0 7px rgba(0, 229, 255, .65);
}


/* ---------------------------------------------------------
   PROJECT CONTENT
   --------------------------------------------------------- */

.featured-project .project-content {

    position: relative;

    z-index: 2;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .featured-project .project-preview {

        min-height: 280px;

        padding: 20px;

    }

    .featured-project .project-icon-svg {

        width: 82px;
        height: 82px;

        top: 18px;
        left: 18px;

        border-radius: 18px;

    }

    .featured-project .project-icon-svg svg {

        width: 54px;
        height: 54px;

    }

    .featured-project .crm-dashboard-preview {

        width: 100%;

        margin-left: 35px;

    }

    .crm-dashboard-body {

        grid-template-columns: 1fr;

    }

    .crm-activity {

        grid-column: span 1;

    }

}

/* =========================================================
   FEATURED PROJECT — CRM PREVIEW
   FINAL LAYOUT FIX V2
   ========================================================= */


/* ---------------------------------------------------------
   FEATURED PROJECT
   --------------------------------------------------------- */

.featured-project {
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   PREVIEW AREA
   --------------------------------------------------------- */

.featured-project .project-preview {

    position: relative;

    width: 100%;

    min-height: 370px;

    padding: 28px 34px 24px;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0,212,255,.07),
            transparent 62%
        );

    border-radius: 24px 24px 0 0;
}


/* ---------------------------------------------------------
   ROBOT ICON
   --------------------------------------------------------- */

.featured-project .project-preview
.project-icon-svg {

    position: absolute !important;

    top: 24px !important;
    left: 24px !important;

    width: 104px !important;
    height: 104px !important;

    min-width: 104px !important;
    min-height: 104px !important;

    max-width: 104px !important;
    max-height: 104px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 22px !important;

    background:
        linear-gradient(
            145deg,
            rgba(18,61,86,.96),
            rgba(10,27,48,.96)
        ) !important;

    border:
        1px solid rgba(0,212,255,.20) !important;

    box-shadow:
        0 12px 30px rgba(0,0,0,.25) !important;

    z-index: 10 !important;

}


/* ---------------------------------------------------------
   ROBOT SVG
   --------------------------------------------------------- */

.featured-project .project-preview
.project-icon-svg svg {

    width: 70px !important;
    height: 70px !important;

    max-width: none !important;
    max-height: none !important;

    display: block !important;

}


/* ---------------------------------------------------------
   CRM DASHBOARD
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {

    position: relative !important;

    z-index: 4 !important;

    width: calc(100% - 90px) !important;

    max-width: 680px !important;

    min-height: 285px !important;

    margin:
        8px 0 0 70px !important;

    padding: 0 !important;

    overflow: hidden !important;

    border-radius: 18px !important;

    background:
        linear-gradient(
            145deg,
            rgba(11,35,57,.98),
            rgba(6,18,35,.98)
        ) !important;

    border:
        1px solid rgba(0,212,255,.20) !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.035) !important;

}


/* ---------------------------------------------------------
   DASHBOARD HEADER
   --------------------------------------------------------- */

.crm-dashboard-header {

    min-height: 46px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 15px;

    background:
        rgba(3,13,27,.78);

    border-bottom:
        1px solid rgba(255,255,255,.055);

}


.crm-window-dots {

    display: flex;

    align-items: center;

    gap: 5px;

}


.crm-window-dots span {

    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background:
        rgba(255,255,255,.30);

}


.crm-dashboard-title {

    flex: 1;

    font-size: 11px;

    font-weight: 700;

    color:
        rgba(255,255,255,.80);

}


.crm-ai-status {

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .08em;

    color: #00e5ff;

    padding: 5px 8px;

    border-radius: 999px;

    background:
        rgba(0,212,255,.08);

    border:
        1px solid rgba(0,212,255,.20);

}


/* ---------------------------------------------------------
   DASHBOARD BODY
   --------------------------------------------------------- */

.crm-dashboard-body {

    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 10px;

    padding: 13px;

}


/* ---------------------------------------------------------
   KPI
   --------------------------------------------------------- */

.crm-kpi {

    min-height: 72px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 10px 12px;

    border-radius: 10px;

    background:
        rgba(20,48,74,.72);

    border:
        1px solid rgba(255,255,255,.055);

}


.crm-kpi-label {

    display: block;

    margin-bottom: 4px;

    font-size: 8px;

    color:
        rgba(190,210,230,.68);

}


.crm-kpi strong {

    display: block;

    font-size: 18px;

    line-height: 1.1;

    color: #fff;

}


.crm-kpi small {

    display: block;

    margin-top: 4px;

    font-size: 8px;

    color: #00e5ff;

}


/* ---------------------------------------------------------
   AI ACTIVITY
   --------------------------------------------------------- */

.crm-activity {

    grid-column: span 2;

    min-height: 92px;

    padding: 11px 13px;

    border-radius: 10px;

    background:
        rgba(20,48,74,.55);

    border:
        1px solid rgba(255,255,255,.055);

}


.crm-activity-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 10px;

    font-size: 9px;

    font-weight: 700;

    color:
        rgba(255,255,255,.72);

}


.crm-activity-head span:last-child {

    color: #00e5ff;

}


/* ---------------------------------------------------------
   ACTIVITY BARS
   --------------------------------------------------------- */

.crm-bars {

    height: 45px;

    display: flex;

    align-items: flex-end;

    gap: 7px;

}


.crm-bars i {

    flex: 1;

    display: block;

    min-width: 7px;

    border-radius: 4px 4px 2px 2px;

    background:
        linear-gradient(
            180deg,
            #00e5ff,
            #5274ff
        );

    opacity: .85;

    animation:
        crmBarPulse 2.8s ease-in-out infinite alternate;

}


.crm-bars i:nth-child(1) {
    height: 32%;
}

.crm-bars i:nth-child(2) {
    height: 55%;
    animation-delay: .15s;
}

.crm-bars i:nth-child(3) {
    height: 42%;
    animation-delay: .30s;
}

.crm-bars i:nth-child(4) {
    height: 76%;
    animation-delay: .45s;
}

.crm-bars i:nth-child(5) {
    height: 50%;
    animation-delay: .60s;
}

.crm-bars i:nth-child(6) {
    height: 90%;
    animation-delay: .75s;
}

.crm-bars i:nth-child(7) {
    height: 64%;
    animation-delay: .90s;
}

.crm-bars i:nth-child(8) {
    height: 82%;
    animation-delay: 1.05s;
}


@keyframes crmBarPulse {

    0% {
        transform: scaleY(.72);
        opacity: .55;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }

}


/* ---------------------------------------------------------
   RECENT ACTIVITY
   --------------------------------------------------------- */

.crm-recent {

    min-height: 92px;

    padding: 11px 13px;

    border-radius: 10px;

    background:
        rgba(20,48,74,.55);

    border:
        1px solid rgba(255,255,255,.055);

}


.crm-recent-title {

    display: block;

    margin-bottom: 8px;

    font-size: 9px;

    font-weight: 700;

    color:
        rgba(255,255,255,.72);

}


.crm-recent > div {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-top: 7px;

    font-size: 8px;

    color:
        rgba(210,225,240,.72);

}


.crm-status-dot {

    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;

    background: #00e5ff;

    box-shadow:
        0 0 7px rgba(0,229,255,.60);

}


/* ---------------------------------------------------------
   DESKTOP CONTENT
   --------------------------------------------------------- */

.featured-project .project-content {

    position: relative;

    z-index: 8;

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .featured-project .project-preview {

        min-height: 340px;

        padding: 22px 18px;

    }

    .featured-project .project-preview
    .project-icon-svg {

        width: 82px !important;
        height: 82px !important;

        min-width: 82px !important;
        min-height: 82px !important;

        top: 18px !important;
        left: 18px !important;

    }

    .featured-project .project-preview
    .project-icon-svg svg {

        width: 56px !important;
        height: 56px !important;

    }

    .featured-project .crm-dashboard-preview {

        width: calc(100% - 30px) !important;

        margin:
            75px 0 0 30px !important;

    }

    .crm-dashboard-body {

        grid-template-columns: 1fr;

    }

    .crm-activity {

        grid-column: span 1;

    }

}

/* =========================================================
   FEATURED PROJECT — CRM PREVIEW
   FINAL SIZE & POSITION OVERRIDE
   ========================================================= */


/* =========================================================
   PREVIEW AREA
   ========================================================= */

.featured-project .project-preview {
    position: relative !important;

    width: 100% !important;

    height: 405px !important;
    min-height: 405px !important;

    padding: 0 !important;

    display: block !important;

    overflow: hidden !important;

    border-radius: 24px 24px 0 0 !important;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(0,212,255,.09),
            transparent 62%
        ) !important;
}


/* =========================================================
   ROBOT
   ========================================================= */

.featured-project .project-preview
.project-icon-svg {

    position: absolute !important;

    top: 24px !important;
    left: 24px !important;

    width: 104px !important;
    height: 104px !important;

    min-width: 104px !important;
    min-height: 104px !important;

    max-width: 104px !important;
    max-height: 104px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    z-index: 30 !important;

    border-radius: 22px !important;

    background:
        linear-gradient(
            145deg,
            rgba(18,61,86,.98),
            rgba(8,25,45,.98)
        ) !important;

    border:
        1px solid rgba(0,212,255,.28) !important;

    box-shadow:
        0 14px 35px rgba(0,0,0,.32) !important;
}


.featured-project .project-preview
.project-icon-svg svg {

    width: 72px !important;
    height: 72px !important;

    max-width: none !important;
    max-height: none !important;

    display: block !important;
}


/* =========================================================
   CRM DASHBOARD — MUCH MORE PROMINENT
   ========================================================= */

.featured-project .crm-dashboard-preview {

    position: absolute !important;

    top: 54px !important;
    left: 115px !important;

    width: calc(100% - 145px) !important;

    max-width: none !important;

    height: 315px !important;
    min-height: 315px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;

    z-index: 10 !important;

    overflow: hidden !important;

    border-radius: 20px !important;

    background:
        linear-gradient(
            145deg,
            rgba(11,39,62,.99),
            rgba(5,18,35,.99)
        ) !important;

    border:
        1px solid rgba(0,212,255,.28) !important;

    box-shadow:
        0 25px 60px rgba(0,0,0,.38),
        0 0 35px rgba(0,212,255,.06),
        inset 0 1px 0 rgba(255,255,255,.045) !important;
}


/* =========================================================
   DASHBOARD HEADER
   ========================================================= */

.featured-project .crm-dashboard-header {

    height: 48px !important;
    min-height: 48px !important;

    padding: 0 16px !important;

    display: flex !important;
    align-items: center !important;

}


/* =========================================================
   DASHBOARD BODY
   ========================================================= */

.featured-project .crm-dashboard-body {

    padding: 14px !important;

    gap: 11px !important;
}


/* =========================================================
   KPI CARDS
   ========================================================= */

.featured-project .crm-kpi {

    min-height: 78px !important;

    padding: 11px 13px !important;
}


/* =========================================================
   ACTIVITY + RECENT
   ========================================================= */

.featured-project .crm-activity,
.featured-project .crm-recent {

    min-height: 100px !important;
}


/* =========================================================
   CONTENT BELOW PREVIEW
   ========================================================= */

.featured-project .project-content {

    position: relative !important;

    z-index: 50 !important;

    padding-top: 10px !important;
}

/* =========================================================
   FEATURED PROJECT — CRM PREVIEW POLISH V4
   Dashboard positioning + card balance
   ========================================================= */

/* ---------------------------------------------------------
   FEATURED PROJECT CARD
   --------------------------------------------------------- */

.featured-project {
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   CRM PREVIEW AREA
   --------------------------------------------------------- */

.featured-project .project-preview {
    position: relative;
    width: 100%;
    min-height: 360px;
    padding: 34px 34px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}


/* ---------------------------------------------------------
   CRM DASHBOARD
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {
    position: relative;
    width: calc(100% - 60px);
    max-width: 560px;
    margin: 8px auto 0;
    z-index: 2;

    transform: translateY(0);

    border: 1px solid rgba(0, 212, 255, .22);
    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(8, 25, 46, .96),
            rgba(5, 18, 35, .96)
        );

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .30),
        0 0 35px rgba(0, 212, 255, .07);

    overflow: hidden;
}


/* ---------------------------------------------------------
   CRM HEADER
   --------------------------------------------------------- */

.featured-project .crm-dashboard-header {
    min-height: 42px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(2, 12, 25, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}


.featured-project .crm-window-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}


.featured-project .crm-window-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .30);
}


.featured-project .crm-dashboard-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .72);
    white-space: nowrap;
}


.featured-project .crm-ai-status {
    margin-left: auto;

    padding: 5px 9px;

    border: 1px solid rgba(0, 212, 255, .28);
    border-radius: 999px;

    color: #00d4ff;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .5px;

    background: rgba(0, 212, 255, .07);
}


/* ---------------------------------------------------------
   CRM BODY
   --------------------------------------------------------- */

.featured-project .crm-dashboard-body {
    padding: 14px;
}


/* ---------------------------------------------------------
   KPI GRID
   --------------------------------------------------------- */

.featured-project .crm-kpi {
    min-height: 68px;
    padding: 11px 12px;

    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;

    background: rgba(20, 43, 68, .68);

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.featured-project .crm-kpi-label {
    display: block;

    margin-bottom: 3px;

    font-size: 8px;
    font-weight: 600;

    color: rgba(255, 255, 255, .48);
}


.featured-project .crm-kpi strong {
    display: block;

    font-size: 18px;
    line-height: 1.1;

    color: #ffffff;
}


.featured-project .crm-kpi small {
    display: block;

    margin-top: 3px;

    font-size: 8px;
    font-weight: 700;

    color: #00d4ff;
}


/* ---------------------------------------------------------
   ACTIVITY AREA
   --------------------------------------------------------- */

.featured-project .crm-activity,
.featured-project .crm-recent {
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;

    background: rgba(15, 36, 59, .62);
}


.featured-project .crm-activity-head {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 12px 6px;

    font-size: 8px;
    font-weight: 700;

    color: rgba(255, 255, 255, .62);
}


.featured-project .crm-activity-head span:last-child {
    color: #00d4ff;
}


/* ---------------------------------------------------------
   CHART BARS
   --------------------------------------------------------- */

.featured-project .crm-bars {
    height: 62px;

    padding: 8px 12px 10px;

    display: flex;
    align-items: flex-end;
    gap: 7px;
}


.featured-project .crm-bars i {
    flex: 1;

    min-width: 7px;

    height: 35%;

    border-radius: 4px 4px 2px 2px;

    background:
        linear-gradient(
            180deg,
            #00d4ff,
            #4769ff
        );

    box-shadow:
        0 0 8px rgba(0, 212, 255, .16);

    animation: crmBarPulse 3.5s ease-in-out infinite alternate;
}


.featured-project .crm-bars i:nth-child(2) {
    height: 55%;
    animation-delay: .2s;
}

.featured-project .crm-bars i:nth-child(3) {
    height: 43%;
    animation-delay: .4s;
}

.featured-project .crm-bars i:nth-child(4) {
    height: 72%;
    animation-delay: .6s;
}

.featured-project .crm-bars i:nth-child(5) {
    height: 52%;
    animation-delay: .8s;
}

.featured-project .crm-bars i:nth-child(6) {
    height: 82%;
    animation-delay: 1s;
}

.featured-project .crm-bars i:nth-child(7) {
    height: 64%;
    animation-delay: 1.2s;
}

.featured-project .crm-bars i:nth-child(8) {
    height: 76%;
    animation-delay: 1.4s;
}


@keyframes crmBarPulse {

    from {
        transform: scaleY(.88);
        opacity: .78;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }

}


/* ---------------------------------------------------------
   RECENT ACTIVITY
   --------------------------------------------------------- */

.featured-project .crm-recent {
    padding: 10px 12px;
}


.featured-project .crm-recent-title {
    display: block;

    margin-bottom: 8px;

    font-size: 8px;
    font-weight: 700;

    color: rgba(255, 255, 255, .62);
}


.featured-project .crm-recent > div {
    display: flex;
    align-items: center;

    margin-top: 6px;

    font-size: 7px;
    color: rgba(255, 255, 255, .58);
}


.featured-project .crm-status-dot {
    width: 5px;
    height: 5px;

    margin-right: 7px;

    border-radius: 50%;

    background: #00d4ff;

    box-shadow:
        0 0 7px rgba(0, 212, 255, .65);
}


/* ---------------------------------------------------------
   PROJECT CONTENT
   --------------------------------------------------------- */

.featured-project .project-content {
    position: relative;
    z-index: 5;

    padding-top: 4px;
}


/* ---------------------------------------------------------
   DESKTOP — KEEP CARD COMPACT
   --------------------------------------------------------- */

@media (min-width: 769px) {

    .featured-project .project-preview {
        min-height: 350px;
    }

    .featured-project .crm-dashboard-preview {
        width: calc(100% - 70px);
        max-width: 570px;
    }

    .featured-project .project-content {
        padding-top: 0;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .featured-project .project-preview {
        min-height: 300px;
        padding: 24px 18px 16px;
    }

    .featured-project .crm-dashboard-preview {
        width: 100%;
        margin-top: 8px;
    }

    .featured-project .project-icon-svg {
        left: 28px;
        top: 30px;

        width: 76px;
        height: 76px;

        border-radius: 16px;
    }

    .featured-project .project-icon-svg svg {
        width: 48px;
        height: 48px;
    }

}

/* =========================================================
   FEATURED PROJECT — FINAL SPACING BALANCE V5
   Tighten CRM visual area without shrinking dashboard
   ========================================================= */

.featured-project .project-preview {
    min-height: 330px !important;
    height: 330px !important;

    padding: 28px 34px 14px !important;

    display: block !important;
}


/* CRM dashboard positioning */

.featured-project .crm-dashboard-preview {
    margin-top: 8px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    width: calc(100% - 55px) !important;
    max-width: 570px !important;
}


/* Robot stays floating over dashboard */




/* Pull project information upward */

.featured-project .project-content {
    padding-top: 0 !important;
    padding-bottom: 24px !important;
}


/* Remove unnecessary gap created by previous layout */

.featured-project .project-preview + .project-content {
    margin-top: 0 !important;
}


/* Desktop */

@media (min-width: 769px) {

    .featured-project .project-preview {
        min-height: 330px !important;
        height: 330px !important;
    }

    .featured-project .project-content {
        padding-top: 0 !important;
    }

}


/* Mobile */

@media (max-width: 768px) {

    .featured-project .project-preview {
        min-height: 300px !important;
        height: 300px !important;
    }

    .featured-project .crm-dashboard-preview {
        width: calc(100% - 20px) !important;
    }

}

/* =========================================================
   FEATURED PROJECT — CRM DASHBOARD COMPLETE VIEW V6
   Fix dashboard bottom clipping
   ========================================================= */

.featured-project .project-preview {
    position: relative !important;

    height: 370px !important;
    min-height: 370px !important;

    padding: 28px 34px 20px !important;

    display: block !important;

    overflow: visible !important;
}


/* ---------------------------------------------------------
   FULL CRM DASHBOARD
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {
    position: relative !important;

    width: calc(100% - 55px) !important;
    max-width: 570px !important;

    margin: 8px auto 0 !important;

    z-index: 5 !important;

    overflow: hidden !important;
}


/* ---------------------------------------------------------
   PROJECT CONTENT
   --------------------------------------------------------- */

.featured-project .project-content {
    position: relative !important;

    padding-top: 0 !important;
    padding-bottom: 24px !important;

    margin-top: 0 !important;

    z-index: 10 !important;
}


/* ---------------------------------------------------------
   DESKTOP
   --------------------------------------------------------- */

@media (min-width: 769px) {

    .featured-project .project-preview {
        height: 370px !important;
        min-height: 370px !important;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .featured-project .project-preview {
        height: 330px !important;
        min-height: 330px !important;

        padding: 24px 18px 16px !important;
    }

    .featured-project .crm-dashboard-preview {
        width: calc(100% - 20px) !important;
    }

    .featured-project .project-icon-svg {
        left: 28px !important;
        top: 30px !important;

        width: 76px !important;
        height: 76px !important;
    }

    .featured-project .project-icon-svg svg {
        width: 48px !important;
        height: 48px !important;
    }

}

/* =========================================================
   FEATURED PROJECT — CRM COMPOSITION POLISH V7
   Align robot + dashboard into one visual composition
   ========================================================= */

.featured-project .project-preview {
    position: relative !important;
}


/* ---------------------------------------------------------
   MOVE DASHBOARD UP
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {
    position: relative !important;

    top: -32px !important;

    margin-top: 8px !important;
}


/* ---------------------------------------------------------
   ROBOT — SIT OVER DASHBOARD CORNER
   --------------------------------------------------------- */


/* ---------------------------------------------------------
   KEEP DASHBOARD ABOVE BACKGROUND
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {
    z-index: 10 !important;
}


/* ---------------------------------------------------------
   BRING CONTENT CLOSER TO VISUAL
   --------------------------------------------------------- */

.featured-project .project-content {
    position: relative !important;

    margin-top: -12px !important;

    padding-top: 0 !important;
}


/* ---------------------------------------------------------
   DESKTOP
   --------------------------------------------------------- */

@media (min-width: 769px) {

    .featured-project .crm-dashboard-preview {
        top: -32px !important;
    }

    .featured-project .project-content {
        margin-top: -12px !important;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .featured-project .crm-dashboard-preview {
        top: -18px !important;
    }

    .featured-project .project-content {
        margin-top: -6px !important;
    }

}

/* =========================================================
   FEATURED PROJECT — CRM SHOWCASE V8
   Larger dashboard + tighter visual composition
   ========================================================= */

.featured-project .project-preview {
    position: relative !important;

    min-height: 390px !important;

    display: block !important;

    overflow: hidden !important;
}


/* ---------------------------------------------------------
   CRM DASHBOARD — LARGER SHOWCASE
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {

    position: absolute !important;

    width: calc(100% - 105px) !important;

    max-width: none !important;

    left: 105px !important;

    top: 35px !important;

    margin: 0 !important;

    z-index: 10 !important;

    transform: none !important;
}


/* ---------------------------------------------------------
   ROBOT — FRONT / OVERLAPPING DASHBOARD
   --------------------------------------------------------- */


/* ---------------------------------------------------------
   PROJECT CONTENT — TIGHTER AFTER PREVIEW
   --------------------------------------------------------- */

.featured-project .project-content {

    position: relative !important;

    margin-top: 0 !important;

    padding-top: 4px !important;
}


/* ---------------------------------------------------------
   DESKTOP
   --------------------------------------------------------- */

@media (min-width: 769px) {

    .featured-project .project-preview {
        min-height: 390px !important;
    }

    .featured-project .crm-dashboard-preview {
        width: calc(100% - 105px) !important;
        left: 105px !important;
        top: 35px !important;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .featured-project .project-preview {
        min-height: 330px !important;
    }

    .featured-project .crm-dashboard-preview {
        width: calc(100% - 35px) !important;
        left: 20px !important;
        top: 70px !important;
    }

    .featured-project .project-icon-svg {
        left: 18px !important;
        top: 22px !important;
        width: 78px !important;
        height: 78px !important;
    }

}

/* =========================================================
   FEATURED PROJECT — CRM DASHBOARD PREMIUM POLISH V9
   Visual refinement only
   ========================================================= */


/* ---------------------------------------------------------
   CRM PREVIEW AREA
   --------------------------------------------------------- */

.featured-project .project-preview {
    position: relative !important;

    min-height: 390px !important;

    overflow: hidden !important;
}


/* ---------------------------------------------------------
   SOFT CYAN PRODUCT GLOW
   --------------------------------------------------------- */

.featured-project .project-preview::after {

    content: "" !important;

    position: absolute !important;

    width: 520px !important;
    height: 300px !important;

    left: 46% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    background:
        radial-gradient(
            ellipse,
            rgba(0,212,255,.085),
            transparent 68%
        ) !important;

    filter: blur(35px) !important;

    pointer-events: none !important;

    z-index: 1 !important;
}


/* ---------------------------------------------------------
   DASHBOARD
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {

    position: absolute !important;

    left: 105px !important;
    top: 35px !important;

    width: calc(100% - 125px) !important;

    z-index: 10 !important;

    border-color: rgba(0,212,255,.28) !important;

    box-shadow:
        0 24px 60px rgba(0,0,0,.30),
        0 0 35px rgba(0,212,255,.07) !important;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease !important;
}


/* ---------------------------------------------------------
   DASHBOARD HOVER
   --------------------------------------------------------- */

.featured-project:hover .crm-dashboard-preview {

    transform: translateY(-4px) !important;

    border-color: rgba(0,212,255,.42) !important;

    box-shadow:
        0 30px 75px rgba(0,0,0,.38),
        0 0 45px rgba(0,212,255,.11) !important;
}


/* ---------------------------------------------------------
   PROJECT CONTENT
   --------------------------------------------------------- */

.featured-project .project-content {

    position: relative !important;

    z-index: 20 !important;

    padding-top: 4px !important;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .featured-project .project-preview {

        min-height: 330px !important;
    }

    .featured-project .crm-dashboard-preview {

        left: 20px !important;
        top: 72px !important;

        width: calc(100% - 40px) !important;
    }

    .featured-project .project-icon-svg {

        left: 18px !important;
        top: 22px !important;

        width: 78px !important;
        height: 78px !important;
    }

}

/* =========================================================
   FEATURED PROJECT — AI CRM LIVE DASHBOARD MOTION V1
   Subtle product-interface animation
   ========================================================= */


/* ---------------------------------------------------------
   AI ACTIVE STATUS — SOFT PULSE
   --------------------------------------------------------- */

.crm-ai-status {

    animation:
        crmStatusPulse 2.8s ease-in-out infinite !important;
}


/* ---------------------------------------------------------
   KPI CARDS — VERY SUBTLE HIGHLIGHT
   --------------------------------------------------------- */

.crm-kpi {

    position: relative !important;

    overflow: hidden !important;
}

.crm-kpi::after {

    content: "" !important;

    position: absolute !important;

    top: 0 !important;
    left: -120% !important;

    width: 80% !important;
    height: 100% !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,212,255,.07),
            transparent
        ) !important;

    transform: skewX(-18deg) !important;

    animation:
        crmKpiShine 6s ease-in-out infinite !important;
}


/* ---------------------------------------------------------
   AI ACTIVITY BARS
   --------------------------------------------------------- */

.crm-bars i {

    transform-origin: bottom center !important;

    animation:
        crmBarPulse 2.4s ease-in-out infinite !important;
}


/* Stagger */

.crm-bars i:nth-child(1) {
    animation-delay: 0s !important;
}

.crm-bars i:nth-child(2) {
    animation-delay: .18s !important;
}

.crm-bars i:nth-child(3) {
    animation-delay: .36s !important;
}

.crm-bars i:nth-child(4) {
    animation-delay: .54s !important;
}

.crm-bars i:nth-child(5) {
    animation-delay: .72s !important;
}

.crm-bars i:nth-child(6) {
    animation-delay: .90s !important;
}

.crm-bars i:nth-child(7) {
    animation-delay: 1.08s !important;
}

.crm-bars i:nth-child(8) {
    animation-delay: 1.26s !important;
}


/* ---------------------------------------------------------
   LIVE LABEL
   --------------------------------------------------------- */

.crm-activity-head span:last-child {

    animation:
        crmLivePulse 2s ease-in-out infinite !important;
}


/* ---------------------------------------------------------
   RECENT ACTIVITY DOTS
   --------------------------------------------------------- */

.crm-status-dot {

    animation:
        crmDotPulse 2s ease-in-out infinite !important;
}


/* Stagger recent activity */

.crm-recent div:nth-child(2) .crm-status-dot {
    animation-delay: .7s !important;
}


/* ---------------------------------------------------------
   KEYFRAMES
   --------------------------------------------------------- */

@keyframes crmStatusPulse {

    0%,
    100% {
        opacity: .72;
        box-shadow: 0 0 0 rgba(0,212,255,0);
    }

    50% {
        opacity: 1;
        box-shadow:
            0 0 12px rgba(0,212,255,.18);
    }
}


@keyframes crmKpiShine {

    0% {
        left: -120%;
    }

    18% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}


@keyframes crmBarPulse {

    0%,
    100% {
        transform: scaleY(.88);
        opacity: .78;
    }

    50% {
        transform: scaleY(1.08);
        opacity: 1;
    }
}


@keyframes crmLivePulse {

    0%,
    100% {
        opacity: .65;
    }

    50% {
        opacity: 1;
    }
}


@keyframes crmDotPulse {

    0%,
    100% {
        transform: scale(.82);
        opacity: .55;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .crm-ai-status,
    .crm-kpi::after,
    .crm-bars i,
    .crm-activity-head span:last-child,
    .crm-status-dot {

        animation: none !important;
    }
}

/* =========================================================
   FEATURED PROJECT — ROBOT / DASHBOARD SEPARATION V1
   ========================================================= */

.featured-project .project-preview {
    position: relative !important;
}


/* ---------------------------------------------------------
   ROBOT — DEDICATED POSITION
   --------------------------------------------------------- */




/* ---------------------------------------------------------
   DASHBOARD — MOVE CLEARLY TO THE RIGHT
   --------------------------------------------------------- */

.featured-project .crm-dashboard-preview {

    left: 128px !important;

    width: calc(100% - 150px) !important;

    z-index: 10 !important;
}


/* ---------------------------------------------------------
   KEEP ROBOT FROM INTERFERING WITH DASHBOARD
   --------------------------------------------------------- */

.featured-project .project-icon-svg + .crm-dashboard-preview {
    margin-left: 0 !important;
}

/* =========================================================
   FEATURED PROJECT — PREMIUM PROJECT CONTENT V1
   ========================================================= */


/* ---------------------------------------------------------
   CATEGORY
   --------------------------------------------------------- */

.featured-project .project-category {

    display: inline-flex !important;

    align-items: center !important;

    padding: 7px 13px !important;

    margin-bottom: 12px !important;

    border: 1px solid rgba(0,212,255,.20) !important;

    border-radius: 999px !important;

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.10),
            rgba(108,92,255,.08)
        ) !important;

    color: #7feaff !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    letter-spacing: .08em !important;

    text-transform: uppercase !important;

    box-shadow:
        0 0 20px rgba(0,212,255,.05) !important;
}


/* ---------------------------------------------------------
   PROJECT TITLE
   --------------------------------------------------------- */

.featured-project .project-content h3 {

    margin: 0 0 10px !important;

    font-size: 28px !important;

    line-height: 1.15 !important;

    font-weight: 800 !important;

    letter-spacing: -.025em !important;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #8be9ff 55%,
            #8f8cff 100%
        ) !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;
}


/* ---------------------------------------------------------
   TECHNOLOGY TAG
   --------------------------------------------------------- */

.featured-project .project-tech {

    display: inline-flex !important;

    align-items: center !important;

    width: fit-content !important;

    padding: 7px 12px !important;

    margin: 0 0 16px !important;

    border: 1px solid rgba(255,255,255,.08) !important;

    border-radius: 8px !important;

    background:
        rgba(255,255,255,.035) !important;

    color: #aebed4 !important;

    font-size: 12px !important;

    font-weight: 600 !important;

    letter-spacing: .04em !important;
}


/* ---------------------------------------------------------
   RESULT — PREMIUM METRIC
   --------------------------------------------------------- */

.featured-project .project-result {

    position: relative !important;

    display: flex !important;

    align-items: center !important;

    width: fit-content !important;

    min-width: 210px !important;

    padding: 11px 16px 11px 42px !important;

    margin-bottom: 18px !important;

    border: 1px solid rgba(0,212,255,.16) !important;

    border-radius: 10px !important;

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.09),
            rgba(108,92,255,.06)
        ) !important;

    color: #f1fbff !important;

    font-size: 14px !important;

    font-weight: 700 !important;

    letter-spacing: .01em !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.035),
        0 10px 30px rgba(0,0,0,.14) !important;
}


/* Metric indicator */

.featured-project .project-result::before {

    content: "↗" !important;

    position: absolute !important;

    left: 14px !important;

    top: 50% !important;

    transform: translateY(-50%) !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 20px !important;

    height: 20px !important;

    border-radius: 6px !important;

    background: rgba(0,212,255,.12) !important;

    color: #00d4ff !important;

    font-size: 13px !important;

    font-weight: 900 !important;
}


/* ---------------------------------------------------------
   CASE STUDY BUTTON
   --------------------------------------------------------- */

.featured-project .btn-outline {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px !important;

    min-height: 42px !important;

    padding: 10px 18px !important;

    border: 1px solid rgba(0,212,255,.30) !important;

    border-radius: 9px !important;

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.10),
            rgba(108,92,255,.08)
        ) !important;

    color: #e9fbff !important;

    font-size: 13px !important;

    font-weight: 700 !important;

    text-decoration: none !important;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease !important;
}


/* Button hover */

.featured-project .btn-outline:hover {

    transform: translateY(-2px) !important;

    border-color: rgba(0,212,255,.60) !important;

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.18),
            rgba(108,92,255,.16)
        ) !important;

    box-shadow:
        0 10px 28px rgba(0,212,255,.12) !important;
}

/* =========================================================
   FEATURED PROJECT — HORIZONTAL CONTENT LAYOUT V1
   ========================================================= */

.featured-project .project-content {

    display: grid !important;

    grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr) !important;

    grid-template-rows: auto auto auto !important;

    column-gap: 45px !important;

    align-items: center !important;

    padding: 28px 36px 32px !important;
}


/* ---------------------------------------------------------
   LEFT — CATEGORY
   --------------------------------------------------------- */

.featured-project .project-category {

    grid-column: 1 !important;
    grid-row: 1 !important;

    width: fit-content !important;

    margin: 0 0 7px !important;
}


/* ---------------------------------------------------------
   LEFT — PROJECT TITLE
   --------------------------------------------------------- */

.featured-project .project-content h3 {

    grid-column: 1 !important;
    grid-row: 2 !important;

    margin: 0 !important;

    font-size: 28px !important;

    line-height: 1.15 !important;

    white-space: nowrap !important;
}


/* ---------------------------------------------------------
   RIGHT — TECHNOLOGY
   --------------------------------------------------------- */

.featured-project .project-tech {

    grid-column: 2 !important;
    grid-row: 1 !important;

    justify-self: start !important;

    margin: 0 0 8px !important;

    white-space: nowrap !important;
}


/* ---------------------------------------------------------
   RIGHT — RESULT
   --------------------------------------------------------- */

.featured-project .project-result {

    grid-column: 2 !important;
    grid-row: 2 !important;

    justify-self: start !important;

    min-width: 210px !important;

    margin: 0 !important;

    white-space: nowrap !important;
}


/* ---------------------------------------------------------
   RIGHT — CASE STUDY
   --------------------------------------------------------- */

.featured-project .btn-outline {

    grid-column: 2 !important;
    grid-row: 3 !important;

    justify-self: start !important;

    margin-top: 12px !important;
}


/* ---------------------------------------------------------
   PREMIUM DIVIDER
   --------------------------------------------------------- */

.featured-project .project-content::before {

    content: "" !important;

    position: absolute !important;

    left: 50% !important;

    top: 30px !important;

    width: 1px !important;

    height: 95px !important;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0,212,255,.22),
            transparent
        ) !important;

    pointer-events: none !important;
}


/* ---------------------------------------------------------
   CONTENT AREA POSITION
   --------------------------------------------------------- */

.featured-project .project-content {

    position: relative !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .featured-project .project-content {

        display: block !important;

        padding: 24px !important;
    }

    .featured-project .project-category {

        margin-bottom: 8px !important;
    }

    .featured-project .project-content h3 {

        white-space: normal !important;

        margin-bottom: 14px !important;
    }

    .featured-project .project-tech {

        margin-bottom: 12px !important;

        white-space: normal !important;
    }

    .featured-project .project-result {

        margin-bottom: 14px !important;
    }

    .featured-project .project-content::before {

        display: none !important;
    }
}

/* =========================================================
   FEATURED PROJECT — FINAL ALIGNMENT V2
   ========================================================= */


/* ---------------------------------------------------------
   CASE STUDY BUTTON — CENTER OF ENTIRE CARD
   --------------------------------------------------------- */

.featured-project .project-content .btn-outline {

    grid-column: 1 / -1 !important;
    grid-row: 3 !important;

    justify-self: center !important;

    margin-top: 18px !important;

    text-align: center !important;
}


/* ---------------------------------------------------------
   ROBOT — CREATE CLEAR GAP FROM CRM DASHBOARD
   --------------------------------------------------------- */




/* ---------------------------------------------------------
   KEEP ROBOT FROM TOUCHING DASHBOARD
   --------------------------------------------------------- */

.featured-project .project-preview {

    overflow: visible !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .featured-project .project-content .btn-outline {

        grid-column: 1 !important;

        justify-self: center !important;

        margin-top: 18px !important;
    }

    .featured-project .project-preview .project-icon-svg {

        left: 0 !important;
    }

}

/* =========================================================
   FEATURED PROJECT — AI CRM PREMIUM TITLE + ROBOT MOTION
   ========================================================= */


/* ---------------------------------------------------------
   AI CRM PLATFORM — FELIX GRADIENT
   --------------------------------------------------------- */

.featured-project .project-content h3 {

    background:
        linear-gradient(
            90deg,
            #00d4ff 0%,
            #29b6ff 35%,
            #6c5cff 75%,
            #8b7cff 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;

    filter:
        drop-shadow(0 0 10px rgba(0,212,255,.12));

}


/* ---------------------------------------------------------
   ROBOT FLOAT KEYFRAMES
   --------------------------------------------------------- */

@keyframes felixRobotFloat {

    0% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(-9px)
            rotate(-1deg);

    }

    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

}


/* ---------------------------------------------------------
   ROBOT GLOW
   --------------------------------------------------------- */




/* ---------------------------------------------------------
   REDUCE MOTION ACCESSIBILITY
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .featured-project .project-preview .project-icon-svg {

        animation: none !important;

    }

}

/* =========================================================
   PORTFOLIO LIST — PREMIUM ALIGNMENT V2
   ========================================================= */


/* ---------------------------------------------------------
   EACH MINI PROJECT
   --------------------------------------------------------- */

.portfolio-list .mini-project {

    display: grid !important;

    grid-template-columns: 44px minmax(0, 1fr) !important;

    column-gap: 28px !important;

    align-items: center !important;

}


/* ---------------------------------------------------------
   ICON — VERTICAL CENTER
   --------------------------------------------------------- */

.portfolio-list .mini-project .mini-icon {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    align-self: center !important;

    margin: 0 !important;

}


/* ---------------------------------------------------------
   TEXT BLOCK
   --------------------------------------------------------- */

.portfolio-list .mini-project .mini-content {

    display: flex !important;

    flex-direction: column !important;

    justify-content: center !important;

    min-width: 0 !important;

}


/* ---------------------------------------------------------
   PROJECT HEADINGS — FELIX CYAN
   --------------------------------------------------------- */

.portfolio-list .mini-project .mini-content h4 {

    color: #00d4ff !important;

    margin: 0 0 5px !important;

}


/* ---------------------------------------------------------
   INDUSTRY
   --------------------------------------------------------- */

.portfolio-list .mini-project .mini-content span {

    margin: 0 !important;

}


/* ---------------------------------------------------------
   RESULT
   --------------------------------------------------------- */

.portfolio-list .mini-project .mini-content small {

    margin-top: 3px !important;

}


/* ---------------------------------------------------------
   CONSISTENT VERTICAL SPACING
   --------------------------------------------------------- */

.portfolio-list .mini-project + .mini-project {

    margin-top: 22px !important;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .portfolio-list .mini-project {

        grid-template-columns: 40px minmax(0, 1fr) !important;

        column-gap: 20px !important;

    }

}

/* =========================================================
   FEATURED PROJECT — FINAL PREMIUM ALIGNMENT
   ========================================================= */


/* ---------------------------------------------------------
   RIGHT PROJECT LIST
   VERTICALLY CENTER INSIDE FEATURED CARD
   --------------------------------------------------------- */

.featured-project + .portfolio-list,
.portfolio-grid > .portfolio-list {

    height: 100% !important;

    align-self: stretch !important;

    display: flex !important;

    flex-direction: column !important;

    justify-content: center !important;

}


/* ---------------------------------------------------------
   MINI PROJECTS — CLEAN VERTICAL RHYTHM
   --------------------------------------------------------- */

.portfolio-grid > .portfolio-list .mini-project {

    flex-shrink: 0 !important;

    display: grid !important;

    grid-template-columns: 44px minmax(0, 1fr) !important;

    column-gap: 30px !important;

    align-items: center !important;

}


/* ---------------------------------------------------------
   MINI ICON
   --------------------------------------------------------- */

.portfolio-grid > .portfolio-list .mini-icon {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    align-self: center !important;

}


/* ---------------------------------------------------------
   MINI CONTENT
   --------------------------------------------------------- */

.portfolio-grid > .portfolio-list .mini-content {

    display: flex !important;

    flex-direction: column !important;

    justify-content: center !important;

}


/* ---------------------------------------------------------
   PROJECT TITLES — FELIX GRADIENT
   --------------------------------------------------------- */

.featured-project .project-content h3 {

    background-image:
        linear-gradient(
            90deg,
            #00d4ff 0%,
            #20b8ff 30%,
            #4f8cff 62%,
            #7566ff 82%,
            #8b5cf6 100%
        ) !important;

    background-size: 100% 100% !important;

    background-repeat: no-repeat !important;

    -webkit-background-clip: text !important;

    background-clip: text !important;

    -webkit-text-fill-color: transparent !important;

    color: transparent !important;

    filter:
        drop-shadow(0 0 8px rgba(0,212,255,.12)) !important;

}





/* ---------------------------------------------------------
   ROBOT OUTER FLOAT
   --------------------------------------------------------- */

@keyframes felixRobotFloat {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0);

    }

    50% {

        transform:
            translate3d(0, -10px, 0);

    }

}


/* ---------------------------------------------------------
   ROBOT INNER FLOAT
   --------------------------------------------------------- */

@keyframes felixRobotInnerFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(-4px)
            rotate(-1deg);

    }

}


/* ---------------------------------------------------------
   ROBOT GLOW
   --------------------------------------------------------- */


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .portfolio-grid > .portfolio-list {

        height: auto !important;

        justify-content: flex-start !important;

    }

    .portfolio-grid > .portfolio-list .mini-project {

        grid-template-columns:
            40px minmax(0, 1fr) !important;

        column-gap: 22px !important;

    }

    .featured-project .project-icon-svg {

        left: 0 !important;

    }

}

@keyframes felixRobotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

/* =========================================================
   FELIX PORTFOLIO — PREMIUM FLOATING MOTION
   Robot + Project Icons
   ========================================================= */


/* =========================================================
   ROBOT
   ========================================================= */



/* =========================================================
   RIGHT SIDE PROJECT ICONS
   ========================================================= */




/* =========================================================
   DIFFERENT TIMING
   Prevent all four icons from moving together
   ========================================================= */

.featured-project .project-list .project-item:nth-child(1)
.project-icon-svg {
    animation-delay: 0s !important;
}


.featured-project .project-list .project-item:nth-child(2)
.project-icon-svg {
    animation-delay: -0.85s !important;
}


.featured-project .project-list .project-item:nth-child(3)
.project-icon-svg {
    animation-delay: -1.7s !important;
}


.featured-project .project-list .project-item:nth-child(4)
.project-icon-svg {
    animation-delay: -2.55s !important;
}

/* =========================================================
   FELIX PORTFOLIO — ROBOT VISIBLE FLOAT
   Exact selector from current HTML
   ========================================================= */

.featured-project .project-preview .project-icon-svg {

    position: relative !important;

    z-index: 100 !important;

    /*
     * Move robot slightly LEFT so it does not touch
     * the CRM dashboard.
     */
    left: -18px !important;

    /*
     * Keep the original vertical position.
     */
    top: 0 !important;

    animation:
        felixRobotFloatClean
        3s
        ease-in-out
        infinite !important;

    will-change: transform !important;

    filter:
        drop-shadow(0 10px 18px rgba(0, 210, 255, 0.30))
        drop-shadow(0 0 18px rgba(0, 210, 255, 0.18)) !important;
}

/* ---------------------------------------------------------
   CLEAN FLOAT
   --------------------------------------------------------- */

@keyframes felixRobotFloatClean {

    0%,
    100% {

        transform: translateY(0) !important;

    }

    50% {

        transform: translateY(-9px) !important;

    }

}


/* =========================================================
   2. RIGHT SIDE — ALL FOUR ICONS
   ========================================================= */

.featured-project .portfolio-list .mini-project .mini-icon {

    position: relative !important;

    display: flex !important;

    animation:
        felixMiniIconFloat
        3.6s
        ease-in-out
        infinite !important;

    will-change: transform;

    filter:
        drop-shadow(0 8px 12px rgba(0, 210, 255, 0.25))
        drop-shadow(0 0 10px rgba(0, 210, 255, 0.14));

}


/* =========================================================
   3. RIGHT ICON MOVEMENT
   ========================================================= */

@keyframes felixMiniIconFloat {

    0%,
    100% {

        transform: translate3d(0, 0, 0) !important;

    }

    50% {

        transform: translate3d(0, -11px, 0) !important;

    }

}


/* =========================================================
   4. DIFFERENT FLOATING PHASE
   ========================================================= */

/* Enterprise ERP */

.featured-project
.portfolio-list
.mini-project:nth-child(1)
.mini-icon {

    animation-delay: 0s !important;

}


/* Property Portal */

.featured-project
.portfolio-list
.mini-project:nth-child(2)
.mini-icon {

    animation-delay: -0.9s !important;

}


/* Bulk SMS Platform */

.featured-project
.portfolio-list
.mini-project:nth-child(3)
.mini-icon {

    animation-delay: -1.8s !important;

}


/* Learning Platform */

.featured-project
.portfolio-list
.mini-project:nth-child(4)
.mini-icon {

    animation-delay: -2.7s !important;

}


/* =========================================================
   5. MAKE FLOATING AREA VISIBLE
   ========================================================= */

.featured-project .project-preview,
.featured-project .portfolio-list,
.featured-project .mini-project,
.featured-project .mini-icon {

    overflow: visible !important;

}

/* =========================================================
   FELIX FEATURED PROJECT
   ROBOT — PREMIUM AI FLOAT
   ========================================================= */

.project-preview > .project-emoji.project-icon-svg {
    position: absolute !important;
    z-index: 20 !important;

    /*
     * Keep existing positioning intact.
     * Only animate the independent translate property.
     */
    translate: 0 0;

    animation:
        felixRobotPremiumFloat
        3.5s
        cubic-bezier(0.45, 0, 0.55, 1)
        infinite !important;

    will-change: translate, filter !important;

    filter:
        drop-shadow(0 0 7px rgba(0, 220, 255, 0.72))
        drop-shadow(0 0 18px rgba(0, 190, 255, 0.42))
        drop-shadow(0 0 34px rgba(0, 160, 255, 0.22)) !important;
}


/* =========================================================
   PREMIUM HOLOGRAPHIC FLOAT
   ========================================================= */

@keyframes felixRobotPremiumFloat {

    0% {
        translate: 0 0;
        filter:
            drop-shadow(0 0 7px rgba(0, 220, 255, 0.65))
            drop-shadow(0 0 18px rgba(0, 190, 255, 0.38))
            drop-shadow(0 0 32px rgba(0, 160, 255, 0.20));
    }

    25% {
        translate: 2px -9px;
        filter:
            drop-shadow(0 0 9px rgba(0, 225, 255, 0.78))
            drop-shadow(0 0 22px rgba(0, 195, 255, 0.48))
            drop-shadow(0 0 38px rgba(0, 165, 255, 0.24));
    }

    50% {
        translate: 0 -18px;
        filter:
            drop-shadow(0 0 11px rgba(0, 230, 255, 0.88))
            drop-shadow(0 0 26px rgba(0, 200, 255, 0.55))
            drop-shadow(0 0 44px rgba(0, 170, 255, 0.28));
    }

    75% {
        translate: -2px -10px;
        filter:
            drop-shadow(0 0 9px rgba(0, 225, 255, 0.78))
            drop-shadow(0 0 22px rgba(0, 195, 255, 0.48))
            drop-shadow(0 0 38px rgba(0, 165, 255, 0.24));
    }

    100% {
        translate: 0 0;
        filter:
            drop-shadow(0 0 7px rgba(0, 220, 255, 0.65))
            drop-shadow(0 0 18px rgba(0, 190, 255, 0.38))
            drop-shadow(0 0 32px rgba(0, 160, 255, 0.20));
    }

}


/* =========================================================
   ROBOT SVG — KEEP SHARP
   ========================================================= */

.project-preview > .project-emoji.project-icon-svg svg {
    display: block;
}


/* =========================================================
   HOVER
   ========================================================= */

.project-preview > .project-emoji.project-icon-svg:hover {
    filter:
        drop-shadow(0 0 12px rgba(0, 230, 255, 0.90))
        drop-shadow(0 0 28px rgba(0, 200, 255, 0.60))
        drop-shadow(0 0 48px rgba(0, 170, 255, 0.32)) !important;
}

/* =========================================================
   FELIX PORTFOLIO — MINI PROJECT ICON FLOATING
   Stronger visible floating motion
   ========================================================= */

.portfolio-list .mini-project .mini-icon {
    animation: felixMiniIconFloat 3.2s ease-in-out infinite;
    will-change: transform;
}

/* Individual timing — natural staggered movement */

.portfolio-list .mini-project:nth-child(1) .mini-icon {
    animation-delay: 0s;
}

.portfolio-list .mini-project:nth-child(2) .mini-icon {
    animation-delay: -0.8s;
}

.portfolio-list .mini-project:nth-child(3) .mini-icon {
    animation-delay: -1.6s;
}

.portfolio-list .mini-project:nth-child(4) .mini-icon {
    animation-delay: -2.4s;
}


/* Stronger vertical floating */

@keyframes felixMiniIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================================
   KEEP ICON HOVER RESPONSIVE
   ========================================================= */

.portfolio-list .mini-project:hover .mini-icon {
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.06);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .portfolio-list .mini-project .mini-icon {
        animation: none;
    }

}

/* =========================================================
   FELIX PORTFOLIO
   RIGHT SIDE PROJECT ICONS — STRONG FLOAT
   ========================================================= */

/* Make the actual SVG the animated element */

.portfolio-list .mini-project .mini-icon.project-icon-svg svg {
    animation: felixRightIconFloat 2.8s ease-in-out infinite !important;
    transform-box: fill-box;
    transform-origin: center;
    will-change: transform;
}


/* ---------------------------------------------------------
   DIFFERENT FLOAT PHASE FOR EACH ICON
   --------------------------------------------------------- */

.portfolio-list .mini-project:nth-child(1)
.mini-icon.project-icon-svg svg {
    animation-delay: 0s !important;
}

.portfolio-list .mini-project:nth-child(2)
.mini-icon.project-icon-svg svg {
    animation-delay: -0.7s !important;
}

.portfolio-list .mini-project:nth-child(3)
.mini-icon.project-icon-svg svg {
    animation-delay: -1.4s !important;
}

.portfolio-list .mini-project:nth-child(4)
.mini-icon.project-icon-svg svg {
    animation-delay: -2.1s !important;
}


/* ---------------------------------------------------------
   VISIBLE UP / DOWN FLOAT
   --------------------------------------------------------- */

@keyframes felixRightIconFloat {

    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-18px);
    }

    75% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}


/* ---------------------------------------------------------
   SUBTLE GLOW DURING FLOAT
   --------------------------------------------------------- */

.portfolio-list .mini-project
.mini-icon.project-icon-svg svg {
    filter: drop-shadow(0 0 0 rgba(0, 220, 255, 0));
}

@keyframes felixRightIconGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 2px rgba(0, 220, 255, 0.15));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(0, 220, 255, 0.40));
    }

}


/* Combine movement + glow */

.portfolio-list .mini-project
.mini-icon.project-icon-svg svg {
    animation-name:
        felixRightIconFloat,
        felixRightIconGlow !important;

    animation-duration:
        2.8s,
        2.8s !important;

    animation-timing-function:
        ease-in-out,
        ease-in-out !important;

    animation-iteration-count:
        infinite,
        infinite !important;

    animation-fill-mode:
        both,
        both !important;
}


/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .portfolio-list .mini-project
    .mini-icon.project-icon-svg svg {
        animation: none !important;
    }

}

/* =========================================================
   FELIX TRUSTED TECHNOLOGIES
   PREMIUM LOGO MARQUEE ITEMS
   ========================================================= */

.logo-marquee .logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 42px;
    padding: 9px 18px;

    white-space: nowrap;

    border: 1px solid rgba(0, 212, 255, 0.14);
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(10, 31, 48, 0.92),
            rgba(12, 18, 34, 0.96)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 8px 24px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* Technology logo */

.logo-marquee .logo-item img {
    width: 22px;
    height: 22px;

    object-fit: contain;

    flex: 0 0 22px;

    display: block;
}


/* Technology name */

.logo-marquee .logo-item span {
    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    color: #dce9f5;
}


/* Premium hover */

.logo-marquee .logo-item:hover {

    transform: translateY(-3px);

    border-color:
        rgba(0, 212, 255, 0.42);

    box-shadow:
        0 0 22px rgba(0, 212, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

}


/* Keep marquee items vertically aligned */

.logo-marquee .logo-track {
    align-items: center;
}


/* Mobile */

@media (max-width: 767px) {

    .logo-marquee .logo-item {

        min-height: 40px;

        padding:
            8px 14px;

        gap: 8px;

        border-radius: 10px;
    }


    .logo-marquee .logo-item img {

        width: 20px;
        height: 20px;

        flex-basis: 20px;
    }


    .logo-marquee .logo-item span {

        font-size: 13px;
    }

}

/* =========================================================
   TECHNOLOGY MARQUEE — LOGO VISIBILITY
   ========================================================= */

.logo-marquee .logo-item img {
    display: block !important;

    width: 34px !important;
    height: 34px !important;

    max-width: 34px !important;
    max-height: 34px !important;

    object-fit: contain !important;

    margin: 0 auto 7px !important;

    opacity: 1 !important;

    visibility: visible !important;

    position: relative;
    z-index: 2;
}


/* AWS + OpenAI */

.logo-marquee .logo-item img[alt="AWS"],
.logo-marquee .logo-item img[alt="OpenAI"] {
    display: block !important;

    width: 34px !important;
    height: 34px !important;

    opacity: 1 !important;

    visibility: visible !important;

    object-fit: contain !important;

    filter: brightness(0) invert(1) !important;
}

/* =========================================================
   TRUSTED TECHNOLOGIES
   LOGO + TEXT VERTICAL CARD
   ========================================================= */

.logo-marquee .logo-track > span {
    min-width: 118px;
    height: 92px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 12px 16px;
    box-sizing: border-box;

    white-space: nowrap;

    border: 1px solid rgba(0, 210, 255, 0.14);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(0, 210, 255, 0.055),
            rgba(90, 70, 255, 0.035)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.logo-marquee .logo-track > span img {
    width: 32px;
    height: 32px;

    object-fit: contain;

    display: block;

    flex: 0 0 auto;
}


/* ---------------------------------------------------------
   TECHNOLOGY NAME
   --------------------------------------------------------- */

.logo-marquee .logo-track > span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;

    color: #e8f7ff;
}


/* ---------------------------------------------------------
   HOVER
   --------------------------------------------------------- */

.logo-marquee .logo-track > span:hover {
    transform: translateY(-5px);

    border-color: rgba(0, 210, 255, 0.45);

    box-shadow:
        0 10px 30px rgba(0, 200, 255, 0.10),
        0 0 18px rgba(0, 200, 255, 0.08);
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .logo-marquee .logo-track > span {
        min-width: 105px;
        height: 84px;

        gap: 8px;

        padding: 10px 12px;
    }

    .logo-marquee .logo-track > span img {
        width: 28px;
        height: 28px;
    }

    .logo-marquee .logo-track > span {
        font-size: 12px;
    }

}

/* =========================================================
   TECHNOLOGY MARQUEE — UNIFORM LOGO SIZE
   ========================================================= */

.logo-marquee .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}


/* ALL TECHNOLOGY LOGOS */

.logo-marquee .logo-item img {
    display: block !important;

    width: 48px !important;
    height: 48px !important;

    min-width: 48px !important;
    min-height: 48px !important;

    max-width: 48px !important;
    max-height: 48px !important;

    object-fit: contain !important;

    opacity: 1 !important;
    visibility: visible !important;

    margin: 0 auto !important;
}


/* =========================================================
   MYSQL + OPENAI
   Keep them visually equal to the other logos
   ========================================================= */

.logo-marquee .logo-item img[alt="MySQL"],
.logo-marquee .logo-item img[alt="OpenAI"] {
    width: 48px !important;
    height: 48px !important;

    min-width: 48px !important;
    min-height: 48px !important;

    max-width: 48px !important;
    max-height: 48px !important;

    object-fit: contain !important;
}


/* AWS */

.logo-marquee .logo-item img[alt="AWS"] {
    width: 48px !important;
    height: 48px !important;

    min-width: 48px !important;
    min-height: 48px !important;

    max-width: 48px !important;
    max-height: 48px !important;

    object-fit: contain !important;
}

/* =========================================================
   MYSQL + OPENAI — VISUAL SCALE UP
   ========================================================= */

.logo-marquee .logo-item img[alt="MySQL"] {
    width: 60px !important;
    height: 60px !important;

    min-width: 60px !important;
    min-height: 60px !important;

    max-width: 60px !important;
    max-height: 60px !important;

    object-fit: contain !important;

    transform: scale(1.15);
    transform-origin: center center;
}


.logo-marquee .logo-item img[alt="OpenAI"] {
    width: 60px !important;
    height: 60px !important;

    min-width: 60px !important;
    min-height: 60px !important;

    max-width: 60px !important;
    max-height: 60px !important;

    object-fit: contain !important;

    transform: scale(1.15);
    transform-origin: center center;
}

.logo-marquee .logo-item {
    overflow: visible !important;
}

/* =========================================================
   TECHNOLOGY LOGO CARDS — FINAL SIZE / NO CUTTING
   Logo above text
   ========================================================= */
/*
.logo-marquee {
    overflow: hidden;
    padding-top: 14px;
    padding-bottom: 14px;
}
*/
.logo-track {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Individual technology card */

.logo-item {
    position: relative;

    flex: 0 0 124px;
    width: 124px;
    height: 126px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;

    /* Important: logo and badge get separate space */
    justify-content: flex-start;

    padding: 15px 10px 10px;

    border-radius: 14px;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(0, 200, 255, 0.10),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            rgba(10, 29, 49, 0.98),
            rgba(5, 13, 28, 0.98)
        );

    border: 1px solid rgba(28, 173, 225, 0.28);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        inset 0 0 20px rgba(0,190,255,0.025),
        0 5px 18px rgba(0,0,0,0.22);

    overflow: hidden;

    isolation: isolate;

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* =========================================================
   FELIX TECHNOLOGY CARDS
   PREMIUM ENERGY SWEEP
   ========================================================= */
/* =========================================================
   FELIX TECHNOLOGY CARDS
   FUTURISTIC SCAN PULSE
   ========================================================= */

/* =========================================================
   FELIX TECHNOLOGY CARDS
   NEON RADAR / CURSOR SPOTLIGHT
   ========================================================= */

.logo-item {
    --mouse-x: 50%;
    --mouse-y: 50%;

    position: relative;
    overflow: hidden;
}

/* Moving light */
.logo-item::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    left: var(--mouse-x);
    top: var(--mouse-y);

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 225, 255, 0.32) 0%,
            rgba(0, 190, 255, 0.18) 28%,
            rgba(80, 100, 255, 0.08) 48%,
            transparent 72%
        );

    filter: blur(2px);

    opacity: 0;

    pointer-events: none;

    z-index: 8;

    transition:
        opacity 0.25s ease;

    will-change:
        left,
        top;
}


/* Activate spotlight */
.logo-item:hover::after {
    opacity: 1;
}


/* Keep logo + text above the light */
.logo-item > * {
    position: relative;
    z-index: 10;
}

/* =========================================================
   PREMIUM MOVING BORDER LIGHT
   Light stays around card instead of crossing content
   ========================================================= */


/* Creates inner card so rotating gradient only appears as border */

.logo-item::after {
    content: "";

    position: absolute;

    inset: 2px;

    border-radius: 12px;

    background:
        radial-gradient(
            circle at 50% 5%,
            rgba(0, 204, 255, 0.10),
            transparent 45%
        ),
        linear-gradient(
            160deg,
            #0b2034 0%,
            #071426 52%,
            #07101e 100%
        );

    z-index: -1;

    pointer-events: none;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo-item img {
    position: relative;

    display: block;

    width: 58px;
    height: 58px;

    max-width: 58px;
    max-height: 58px;

    object-fit: contain;

    flex: 0 0 58px;

    margin: 0 auto 10px;

    z-index: 2;

    transform: translateZ(0);

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        filter 0.4s ease;
}


/* =========================================================
   TECHNOLOGY NAME
   ========================================================= */

.logo-item > span {
    position: relative;

    z-index: 3;

    width: calc(100% - 2px);
    min-height: 28px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: auto;

    padding: 5px 5px;

    border-radius: 8px;

    background:
        linear-gradient(
            180deg,
            rgba(25, 51, 77, 0.96),
            rgba(15, 31, 51, 0.96)
        );

    border: 1px solid rgba(72, 178, 225, 0.20);

    color: #f4f9ff;

    font-size: 10px;
    line-height: 1.1;
    font-weight: 700;

    text-align: center;

    white-space: nowrap;

    overflow: hidden;
    text-overflow: ellipsis;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 2px 8px rgba(0,0,0,0.18);

    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.logo-item:hover img {
    transform:
        translateY(-3px)
        scale(1.12);

    filter:
        drop-shadow(0 0 5px rgba(0, 220, 255, 0.45))
        drop-shadow(0 0 14px rgba(0, 160, 255, 0.20));
}


.logo-item:hover > span {
    border-color: rgba(0, 225, 255, 0.55);

    background:
        linear-gradient(
            180deg,
            rgba(19, 61, 88, 0.98),
            rgba(12, 35, 58, 0.98)
        );

    box-shadow:
        0 0 12px rgba(0, 210, 255, 0.18),
        inset 0 0 10px rgba(0, 210, 255, 0.05);
}


/* =========================================================
   ROTATING NEON BORDER
   ========================================================= */

@keyframes felixCardOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .logo-item {
        flex-basis: 110px;
        width: 110px;
        height: 116px;

        padding: 13px 8px 9px;
    }

    .logo-item img {
        width: 52px;
        height: 52px;

        max-width: 52px;
        max-height: 52px;

        flex-basis: 52px;

        margin-bottom: 8px;
    }

    .logo-item > span {
        min-height: 26px;
        font-size: 9px;
    }

}


/* =========================================================
   MARQUEE VERTICAL SAFETY
   ========================================================= */

.logo-track {
    padding-top: 8px;
    padding-bottom: 8px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .logo-track {
        gap: 12px;
    }

    .logo-item {
        flex-basis: 88px;
        width: 88px;
        height: 78px;
    }

    .logo-item img {
        width: 30px;
        height: 30px;
        max-width: 30px;
        max-height: 30px;
        flex-basis: 30px;
    }

    .logo-item > span {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* =========================================================
   FELIX TECHNOLOGY MARQUEE — CONTINUOUS / ZERO GAP LOOP
   ========================================================= */

.logo-marquee {
    width: 100%;
    overflow: hidden !important;
    position: relative;
}


/* =========================================================
   TRACK
   ========================================================= */

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 10px;
    will-change: transform;
}


/* =========================================================
   INDIVIDUAL CARD
   ========================================================= */

.logo-item {
    position: relative;

    flex: 0 0 112px;
    width: 112px;
    height: 116px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    padding: 10px 7px 9px;

    border: 1px solid rgba(0, 200, 255, 0.28);
    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 31, 52, 0.95),
            rgba(7, 15, 31, 0.98)
        );

    overflow: hidden;

    box-shadow:
        inset 0 0 18px rgba(0, 180, 255, 0.035),
        0 0 8px rgba(0, 180, 255, 0.08);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* =========================================================
   FELIX TECHNOLOGY CARDS
   PREMIUM WOW HOVER EFFECT
   Animated Energy Sweep + Logo Glow
   ========================================================= */


/* ---------------------------------------------------------
   CARD — BASE
   --------------------------------------------------------- */

.logo-loop-group .logo-item {
    position: relative !important;
    overflow: hidden !important;

    isolation: isolate;

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease !important;
}


/* ---------------------------------------------------------
   ANIMATED LIGHT BEAM
   --------------------------------------------------------- */




/* ---------------------------------------------------------
   HOVER — CARD
   --------------------------------------------------------- */


/* ---------------------------------------------------------
   START LIGHT SWEEP
   --------------------------------------------------------- */




/* ---------------------------------------------------------
   ENERGY SWEEP
   --------------------------------------------------------- */

@keyframes felix-logo-energy-sweep {

    0% {

        transform:
            rotate(18deg)
            translateX(-120%);

        opacity: 0;

    }

    15% {

        opacity: 1;

    }

    50% {

        opacity: 1;

    }

    85% {

        opacity: 1;

    }

    100% {

        transform:
            rotate(18deg)
            translateX(340%);

        opacity: 0;

    }
}


/* ---------------------------------------------------------
   LOGO — PREMIUM ILLUMINATION
   --------------------------------------------------------- */

.logo-loop-group .logo-item:hover img {

    transform: scale(1.10) !important;

    filter:
        brightness(1.22)
        drop-shadow(
            0 0 5px
            rgba(0, 220, 255, 0.55)
        )
        drop-shadow(
            0 0 14px
            rgba(0, 200, 255, 0.38)
        ) !important;

    transition:
        transform 0.4s ease,
        filter 0.4s ease !important;
}


/* ---------------------------------------------------------
   LABEL — SUBTLE ENERGY
   --------------------------------------------------------- */

.logo-loop-group .logo-item:hover span {

    transition:
        color 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease !important;
}


/* ---------------------------------------------------------
   HOVER LABEL GLOW
   --------------------------------------------------------- */

.logo-loop-group .logo-item:hover span:last-child {

    border-color:
        rgba(0, 220, 255, 0.55) !important;

    box-shadow:
        inset 0 0 10px
            rgba(0, 210, 255, 0.08),

        0 0 8px
            rgba(0, 210, 255, 0.18) !important;
}

/* =========================================================
   MOVING BORDER GLOW
   ========================================================= */


/* Soft animated outer glow */

.logo-item::after {
    content: "";

    position: absolute;
    inset: -1px;

    border-radius: inherit;

    box-shadow:
        0 0 8px rgba(0, 190, 255, 0.12),
        0 0 18px rgba(0, 190, 255, 0.08);

    opacity: 0.8;

    animation: logoCardGlow 2.8s ease-in-out infinite;

    pointer-events: none;
}


/* =========================================================
   LOGO IMAGE
   ========================================================= */

.logo-item img {
    position: relative;
    z-index: 2;

    display: block;

    width: 52px;
    height: 52px;

    max-width: 52px;
    max-height: 52px;

    object-fit: contain;

    flex-shrink: 0;

    margin: 0 auto;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}


/* =========================================================
   LOGO NAME
   ========================================================= */

.logo-item > span {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 27px;

    padding: 5px 6px;

    box-sizing: border-box;

    border-radius: 8px;

    background: rgba(15, 31, 51, 0.92);

    border: 1px solid rgba(70, 160, 220, 0.16);

    color: #ffffff;

    font-size: 11px;
    line-height: 1.1;
    font-weight: 600;

    text-align: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    box-shadow:
        inset 0 0 8px rgba(0, 180, 255, 0.04);
}


/* =========================================================
   HOVER
   ========================================================= */

.logo-item:hover img {
    transform: scale(1.08);

    filter:
        drop-shadow(0 0 7px rgba(0, 210, 255, 0.45));
}

.logo-item:hover > span {
    border-color: rgba(0, 220, 255, 0.35);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes logoCardShine {

    0% {
        left: -50%;
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    45% {
        opacity: 0.8;
    }

    65% {
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}


@keyframes logoCardGlow {

    0%,
    100% {
        box-shadow:
            0 0 7px rgba(0, 190, 255, 0.08),
            0 0 16px rgba(0, 190, 255, 0.04);
    }

    50% {
        box-shadow:
            0 0 12px rgba(0, 210, 255, 0.20),
            0 0 25px rgba(0, 190, 255, 0.12);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .logo-item {
        flex-basis: 104px;
        width: 104px;
        height: 108px;

        padding: 8px 6px;
    }

    .logo-item img {
        width: 48px;
        height: 48px;

        max-width: 48px;
        max-height: 48px;
    }

    .logo-item > span {
        font-size: 10px;
    }
}


/* =========================================================
   LOGO SIZE
   ========================================================= */

.logo-item img {
    display: block !important;

    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;
    min-height: 38px !important;

    max-width: 38px !important;
    max-height: 38px !important;

    object-fit: contain !important;

    flex: 0 0 38px !important;
}


/* =========================================================
   TEXT
   ========================================================= */

.logo-item > span {
    display: flex !important;

    align-items: center;
    justify-content: center;

    min-height: 26px;

    padding: 4px 9px;

    box-sizing: border-box;

    border-radius: 14px;

    background: rgba(20, 35, 55, 0.9);

    border: 1px solid rgba(80, 160, 220, 0.12);

    color: #f4f7fb;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.1;

    white-space: nowrap;
}


/* =========================================================
   CONTINUOUS MARQUEE
   ========================================================= */

@keyframes felixTechnologyMarquee {

    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - 8px), 0, 0);
    }

}


/* =========================================================
   HOVER — PAUSE
   ========================================================= */

.logo-marquee:hover .logo-track {
    animation-play-state: paused !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .logo-track {
        gap: 12px !important;
        animation-duration: 28s !important;
    }

    .logo-item {
        flex-basis: 88px !important;

        width: 88px !important;
        min-width: 88px !important;
        max-width: 88px !important;

        height: 94px !important;
        min-height: 94px !important;
    }

    .logo-item img {
        width: 34px !important;
        height: 34px !important;

        min-width: 34px !important;
        min-height: 34px !important;

        max-width: 34px !important;
        max-height: 34px !important;
    }

}

/* =========================================================
   FELIX TECHNOLOGY CARDS — FINAL OVERRIDE
   Add at the VERY END of stylesheet
   ========================================================= */

.logo-marquee {
    overflow: hidden !important;
}

.logo-track {
    align-items: center !important;
    gap: 10px !important;
}


/* =========================================================
   CARD SIZE
   ========================================================= */

.logo-track .logo-item {
    position: relative !important;

    flex: 0 0 124px !important;
    width: 124px !important;
    min-width: 124px !important;

    height: 126px !important;
    min-height: 126px !important;
    max-height: 126px !important;

    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    padding: 13px 9px 9px !important;

    border: 1px solid rgba(0, 210, 255, 0.30) !important;
    border-radius: 14px !important;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(0, 210, 255, 0.10),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #0b2137,
            #071322
        ) !important;

    overflow: hidden !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 5px 18px rgba(0,0,0,0.25) !important;

    isolation: isolate !important;

    transform: translateZ(0);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease !important;
}


/* =========================================================
   REMOVE OLD DIAGONAL SWEEP COMPLETELY
   ========================================================= */

.logo-track .logo-item::before {
    content: "" !important;

    position: absolute !important;

    inset: 0 !important;

    width: auto !important;
    height: auto !important;

    left: auto !important;
    top: auto !important;

    background: none !important;

    transform: none !important;

    animation: felixPremiumBorder 4.5s linear infinite !important;

    border-radius: 14px !important;

    padding: 1px !important;

    box-sizing: border-box !important;

    z-index: -2 !important;

    pointer-events: none !important;
}


/* =========================================================
   INNER CARD
   ========================================================= */

.logo-track .logo-item::after {
    content: "" !important;

    position: absolute !important;

    inset: 2px !important;

    width: auto !important;
    height: auto !important;

    left: auto !important;
    top: auto !important;

    border-radius: 12px !important;

    background:
        radial-gradient(
            circle at 50% 5%,
            rgba(0, 210, 255, 0.09),
            transparent 48%
        ),
        #081526 !important;

    box-shadow:
        inset 0 0 18px rgba(0, 190, 255, 0.035) !important;

    z-index: -1 !important;

    pointer-events: none !important;

    animation: none !important;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo-track .logo-item img {
    position: relative !important;

    z-index: 5 !important;

    display: block !important;

    width: 58px !important;
    height: 58px !important;

    min-width: 58px !important;
    min-height: 58px !important;

    max-width: 58px !important;
    max-height: 58px !important;

    object-fit: contain !important;

    flex: 0 0 58px !important;

    margin: 0 auto !important;

    transform: translateY(0) !important;

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        filter 0.45s ease !important;
}


/* =========================================================
   TEXT BADGE
   ========================================================= */

.logo-track .logo-item > span {
    position: relative !important;

    z-index: 6 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;

    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;

    margin-top: auto !important;

    padding: 4px 5px !important;

    box-sizing: border-box !important;

    border-radius: 8px !important;

    background:
        linear-gradient(
            180deg,
            #19334d,
            #10243a
        ) !important;

    border: 1px solid rgba(75, 175, 225, 0.20) !important;

    color: #ffffff !important;

    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    text-align: center !important;

    white-space: nowrap !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
}


/* =========================================================
   PREMIUM BORDER GLOW
   No diagonal stripe
   ========================================================= */

@keyframes felixPremiumBorder {

    0% {
        box-shadow:
            0 0 5px rgba(0, 210, 255, 0.10),
            inset 0 0 0 1px rgba(0, 210, 255, 0.10);
    }

    25% {
        box-shadow:
            0 -2px 14px rgba(0, 220, 255, 0.30),
            inset 0 1px 0 rgba(0, 220, 255, 0.30);
    }

    50% {
        box-shadow:
            2px 0 18px rgba(90, 110, 255, 0.28),
            inset -1px 0 0 rgba(90, 110, 255, 0.25);
    }

    75% {
        box-shadow:
            0 2px 14px rgba(0, 220, 255, 0.25),
            inset 0 -1px 0 rgba(0, 220, 255, 0.25);
    }

    100% {
        box-shadow:
            0 0 5px rgba(0, 210, 255, 0.10),
            inset 0 0 0 1px rgba(0, 210, 255, 0.10);
    }
}


/* =========================================================
   HOVER — WOW EFFECT
   ========================================================= */

.logo-track .logo-item:hover {
    transform:
        translateY(-8px)
        scale(1.04) !important;

    border-color:
        rgba(0, 225, 255, 0.75) !important;

    box-shadow:
        0 0 10px rgba(0, 220, 255, 0.35),
        0 0 28px rgba(0, 200, 255, 0.22),
        0 12px 30px rgba(0,0,0,0.35) !important;
}

.logo-track .logo-item:hover img {
    transform:
        translateY(-3px)
        scale(1.12) !important;

    filter:
        drop-shadow(0 0 5px rgba(0,220,255,0.55))
        drop-shadow(0 0 12px rgba(70,120,255,0.30)) !important;
}

.logo-track .logo-item:hover > span {
    border-color:
        rgba(0, 220, 255, 0.50) !important;

    box-shadow:
        0 0 12px rgba(0,210,255,0.18) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .logo-track .logo-item {
        flex-basis: 112px !important;
        width: 112px !important;
        min-width: 112px !important;

        height: 116px !important;
        min-height: 116px !important;
        max-height: 116px !important;
    }

    .logo-track .logo-item img {
        width: 52px !important;
        height: 52px !important;

        min-width: 52px !important;
        min-height: 52px !important;
    }

}

/* =========================================================
   FELIX TECHNOLOGY MARQUEE — FINAL POLISH
   Fix hover clipping + normalize logo visual sizes
   ========================================================= */


/* ---------------------------------------------------------
   1. MARQUEE — KEEP TRACK CLIPPED HORIZONTALLY
   BUT GIVE CARDS VERTICAL BREATHING ROOM
   --------------------------------------------------------- */

.logo-marquee {
    position: relative !important;

    overflow: hidden !important;

    padding-top: 14px !important;
    padding-bottom: 14px !important;

    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   2. TRACK
   --------------------------------------------------------- */

.logo-track {
    align-items: center !important;

    gap: 10px !important;

    padding-top: 2px !important;
    padding-bottom: 2px !important;

    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   3. CARD
   --------------------------------------------------------- */

.logo-track .logo-item {
    flex: 0 0 124px !important;

    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;

    height: 126px !important;
    min-height: 126px !important;
    max-height: 126px !important;

    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: flex-start !important;

    padding: 11px 9px 9px !important;

    border-radius: 14px !important;

    overflow: hidden !important;

    transform-origin: center center !important;

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        border-color 0.35s ease,
        box-shadow 0.35s ease !important;
}


/* ---------------------------------------------------------
   4. REMOVE VERTICAL TRANSLATION
   This is what was causing the TOP CLIPPING.
   --------------------------------------------------------- */

.logo-track .logo-item:hover {
    transform: scale(1.035) !important;

    border-color:
        rgba(0, 220, 255, 0.75) !important;

    box-shadow:
        0 0 8px rgba(0, 220, 255, 0.35),
        0 0 22px rgba(0, 190, 255, 0.20),
        inset 0 0 16px rgba(0, 210, 255, 0.06) !important;
}


/* ---------------------------------------------------------
   5. NORMAL LOGO SIZE
   --------------------------------------------------------- */

.logo-track .logo-item img {
    width: 58px !important;
    height: 58px !important;

    min-width: 58px !important;
    min-height: 58px !important;

    max-width: 58px !important;
    max-height: 58px !important;

    object-fit: contain !important;

    margin: 0 auto !important;

    transform: none !important;

    transition:
        transform 0.35s ease,
        filter 0.35s ease !important;
}


/* ---------------------------------------------------------
   6. MY SQL — VISUALLY SMALL SVG
   Make ONLY the actual MySQL artwork larger.
   Works for both original + duplicate.
   --------------------------------------------------------- */

.logo-track .logo-item img[src*="mysql"] {
    width: 68px !important;
    height: 68px !important;

    min-width: 68px !important;
    min-height: 68px !important;

    max-width: 68px !important;
    max-height: 68px !important;
}


/* ---------------------------------------------------------
   7. AWS — VISUALLY SMALL SVG
   --------------------------------------------------------- */

.logo-track .logo-item img[src*="aws"] {
    width: 68px !important;
    height: 68px !important;

    min-width: 68px !important;
    min-height: 68px !important;

    max-width: 68px !important;
    max-height: 68px !important;
}


/* ---------------------------------------------------------
   8. OPENAI — VISUALLY SMALL SVG
   --------------------------------------------------------- */

.logo-track .logo-item img[src*="openai"] {
    width: 68px !important;
    height: 68px !important;

    min-width: 68px !important;
    min-height: 68px !important;

    max-width: 68px !important;
    max-height: 68px !important;
}


/* ---------------------------------------------------------
   9. HOVER LOGO
   --------------------------------------------------------- */

.logo-track .logo-item:hover img {
    transform: scale(1.08) !important;

    filter:
        drop-shadow(0 0 5px rgba(0, 220, 255, 0.55))
        drop-shadow(0 0 10px rgba(70, 120, 255, 0.25)) !important;
}


/* ---------------------------------------------------------
   10. TEXT BADGE — STAY INSIDE CARD
   --------------------------------------------------------- */

.logo-track .logo-item > span {
    width: 100% !important;

    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;

    margin-top: auto !important;

    padding: 4px 5px !important;

    box-sizing: border-box !important;

    border-radius: 8px !important;

    white-space: nowrap !important;

    overflow: hidden !important;

    text-overflow: ellipsis !important;

    line-height: 1 !important;
}


/* ---------------------------------------------------------
   11. SUBTLE LIVE BORDER GLOW
   No diagonal sweep
   --------------------------------------------------------- */

.logo-track .logo-item::before {
    animation: felixCardGlow 4s ease-in-out infinite !important;
}


@keyframes felixCardGlow {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.85;
    }

}


/* ---------------------------------------------------------
   12. MOBILE
   --------------------------------------------------------- */

@media (max-width: 768px) {

    .logo-marquee {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .logo-track .logo-item {
        width: 112px !important;
        min-width: 112px !important;
        max-width: 112px !important;

        height: 116px !important;
        min-height: 116px !important;
        max-height: 116px !important;
    }

    .logo-track .logo-item img {
        width: 52px !important;
        height: 52px !important;
    }

    .logo-track .logo-item img[src*="mysql"],
    .logo-track .logo-item img[src*="aws"],
    .logo-track .logo-item img[src*="openai"] {
        width: 61px !important;
        height: 61px !important;
    }

}

/* =========================================================
   TECHNOLOGY LOGOS — VISUAL SIZE CORRECTION
   MySQL + OpenAI
   ========================================================= */


/* MySQL — make the actual artwork visibly larger */
.logo-track .logo-item img[src*="mysql"] {
    width: 58px !important;
    height: 58px !important;

    min-width: 58px !important;
    min-height: 58px !important;

    max-width: 58px !important;
    max-height: 58px !important;

    object-fit: contain !important;

    transform: scale(1.55) !important;
    transform-origin: center center !important;
}


/* OpenAI — make the actual artwork visibly larger */
.logo-track .logo-item img[src*="openai"] {
    width: 58px !important;
    height: 58px !important;

    min-width: 58px !important;
    min-height: 58px !important;

    max-width: 58px !important;
    max-height: 58px !important;

    object-fit: contain !important;

    transform: scale(1.55) !important;
    transform-origin: center center !important;
}


/* Keep enlarged logos stable on hover */
.logo-track .logo-item:hover img[src*="mysql"],
.logo-track .logo-item:hover img[src*="openai"] {
    transform: scale(1.65) !important;
}

/* =========================================================
   FELIX TECHNOLOGY MARQUEE
   SEAMLESS / ZERO-BLANK LOOP
   ========================================================= */

.logo-marquee {
    width: 100% !important;

    overflow: hidden !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    box-sizing: border-box !important;
}


.logo-track{
    display:flex !important;

    align-items:center !important;

    gap:26px !important;

    overflow:visible !important;

    width:max-content !important;

    max-width:none !important;

    flex-wrap:nowrap !important;

    margin:0 !important;

    padding:0 !important;

    animation:none !important;

    will-change:transform !important;
}


/* ---------------------------------------------------------
   SEAMLESS LOOP
   --------------------------------------------------------- */



/* ---------------------------------------------------------
   IMPORTANT:
   Prevent cards from shrinking
   --------------------------------------------------------- */

.logo-track .logo-item {
    flex: 0 0 124px !important;

    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;

    box-sizing: border-box !important;
}


/* ---------------------------------------------------------
   NO PAUSE / NO JUMP
   --------------------------------------------------------- */

.logo-track:hover {
    animation-play-state: running !important;
}


/* ---------------------------------------------------------
   SMOOTH RENDERING
   --------------------------------------------------------- */

.logo-track,
.logo-track .logo-item {
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
}

/* =========================================================
   FELIX TECHNOLOGY MARQUEE
   TRUE SEAMLESS LOOP
   ========================================================= */

.logo-marquee {
    width: 100% !important;
    overflow: hidden !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    box-sizing: border-box !important;
}


.logo-track {
    display: flex !important;

    flex-wrap: nowrap !important;

    align-items: center !important;

    justify-content: flex-start !important;

    width: max-content !important;

    max-width: none !important;

    margin: 0 !important;

    padding: 0 !important;

    gap: 0 !important;

    white-space: nowrap !important;

    transform: translate3d(0, 0, 0);

    will-change: transform;

    animation: none !important;

    transition: none !important;
}

/* =========================================================
   EACH COMPLETE MARQUEE GROUP
   ========================================================= */

.logo-loop-group {
    display: flex !important;
    flex: 0 0 auto !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

/* ==========================================================
   FELIX TECHNOLOGY LOGO MARQUEE
   SEAMLESS + CONSISTENT CARD GAP
========================================================== */

.logo-marquee {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    box-sizing: border-box !important;
}


/* Main moving track */

.logo-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;

    align-items: center !important;
    justify-content: flex-start !important;

    width: max-content !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    /*
    THIS is the actual card spacing.
    */

    gap: 10px !important;

    white-space: nowrap !important;

    will-change: transform !important;

    transform: translate3d(0, 0, 0);

    box-sizing: border-box !important;
}


/* Every technology card */

.logo-track .logo-item {
    flex: 0 0 auto !important;

    width: 105px !important;
    min-width: 105px !important;
    max-width: 105px !important;

    margin: 0 !important;

    box-sizing: border-box !important;

    position: relative !important;
}


/*
Prevent any individual card from shrinking.
*/

.logo-track .logo-item > * {
    box-sizing: border-box !important;
}


/*
Keep duplicate set identical to original set.
*/

.logo-track .logo-item[aria-hidden="true"] {
    flex: 0 0 auto !important;
}


/* =========================================================
   LOGO CARD
   ========================================================= */

.logo-loop-group .logo-item {
    flex: 0 0 auto !important;

    min-width: 120px !important;

    width: 120px !important;

    height: 90px !important;

    box-sizing: border-box !important;
}


.logo-track .logo-item {
    flex: 0 0 124px !important;

    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;

    box-sizing: border-box !important;
}


/*
 * JS exact first-set width calculate karega
 * aur --felix-loop-width mein set karega.
 */



/* No accidental pause */
.logo-track:hover {
    animation-play-state: running !important;
}

/* =========================================================
   FELIX TECHNOLOGY MARQUEE
   EXACT SAME GAP BETWEEN ALL CARDS
   ========================================================= */

.logo-track {
    gap: 0 !important;
}

.logo-loop-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;

    gap: 12px !important;

    margin: 0 !important;
    padding: 0 !important;

    width: max-content !important;
    max-width: none !important;

    flex: 0 0 auto !important;
    box-sizing: border-box !important;
}

.logo-loop-group .logo-item {
    flex: 0 0 124px !important;

    width: 124px !important;
    min-width: 124px !important;
    max-width: 124px !important;

    margin: 0 !important;
    box-sizing: border-box !important;
}

/* =========================================================
   FELIX MARQUEE
   GROUP BOUNDARY GAP
   ========================================================= */

.logo-loop-group {
    margin-right: 12px !important;
}

/* =========================================================
   FELIX TECHNOLOGY CARDS
   WOW EFFECT — HOLOGRAPHIC ENERGY SWEEP
   ========================================================= */

.logo-loop-group .logo-item {
    position: relative !important;

    overflow: hidden !important;

    isolation: isolate !important;

    /* Keep existing card geometry */
    box-sizing: border-box !important;

    /* Enhanced holographic surface */
    background:
        linear-gradient(
            115deg,
            rgba(8, 31, 52, 0.96) 0%,
            rgba(7, 18, 36, 0.98) 38%,
            rgba(20, 38, 66, 0.96) 50%,
            rgba(7, 18, 36, 0.98) 62%,
            rgba(8, 31, 52, 0.96) 100%
        ) !important;

    background-size:
        220% 220% !important;

    background-position:
        0% 50% !important;

    border-color:
        rgba(0, 200, 255, 0.30) !important;

    box-shadow:
        inset 0 0 18px rgba(0, 180, 255, 0.035),
        0 0 8px rgba(0, 180, 255, 0.08) !important;

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        background-position 0.45s ease !important;

    animation:
        felixCardEnergy 5.5s ease-in-out infinite !important;
}


/* =========================================================
   MOVING LIGHT / HOLOGRAPHIC ENERGY
   ========================================================= */



/* =========================================================
   HOVER — STABLE HOLOGRAPHIC CARD
   No vertical jump — marquee position remains visually stable
   ========================================================= */



/* =========================================================
   HOVER — ENERGY SWEEP BECOMES STRONGER
   ========================================================= */

.logo-loop-group .logo-item:hover::after {
    opacity: 1 !important;

    animation-duration:
        2.2s !important;
}


/* =========================================================
   CARD BREATHING
   ========================================================= */

@keyframes felixCardEnergy {

    0%,
    100% {
        border-color:
            rgba(0, 200, 255, 0.28);

        box-shadow:
            inset 0 0 18px rgba(0, 180, 255, 0.035),
            0 0 8px rgba(0, 180, 255, 0.08);

        background-position:
            0% 50%;
    }

    50% {
        border-color:
            rgba(90, 130, 255, 0.52);

        box-shadow:
            inset 0 0 22px rgba(0, 200, 255, 0.065),
            0 0 14px rgba(0, 190, 255, 0.14),
            0 0 28px rgba(80, 90, 255, 0.06);

        background-position:
            100% 50%;
    }
}


/* =========================================================
   DIAGONAL ENERGY SWEEP
   ========================================================= */

@keyframes felixEnergySweep {

    0% {
        transform:
            rotate(22deg)
            translateX(-180%);
    }

    55% {
        transform:
            rotate(22deg)
            translateX(-180%);
    }

    100% {
        transform:
            rotate(22deg)
            translateX(520%);
    }
}


/* =========================================================
   DIFFERENT TIMING FOR EACH CARD
   ========================================================= */

.logo-loop-group .logo-item:nth-child(2) {
    animation-delay: 0.35s !important;
}

.logo-loop-group .logo-item:nth-child(3) {
    animation-delay: 0.70s !important;
}

.logo-loop-group .logo-item:nth-child(4) {
    animation-delay: 1.05s !important;
}

.logo-loop-group .logo-item:nth-child(5) {
    animation-delay: 1.40s !important;
}

.logo-loop-group .logo-item:nth-child(6) {
    animation-delay: 1.75s !important;
}

.logo-loop-group .logo-item:nth-child(7) {
    animation-delay: 2.10s !important;
}

.logo-loop-group .logo-item:nth-child(8) {
    animation-delay: 2.45s !important;
}

.logo-loop-group .logo-item:nth-child(9) {
    animation-delay: 2.80s !important;
}

.logo-loop-group .logo-item:nth-child(10) {
    animation-delay: 3.15s !important;
}

.logo-loop-group .logo-item:nth-child(11) {
    animation-delay: 3.50s !important;
}

.logo-loop-group .logo-item:nth-child(12) {
    animation-delay: 3.85s !important;
}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .logo-loop-group .logo-item,
    .logo-loop-group .logo-item::after {
        animation: none !important;
    }

    .logo-loop-group .logo-item:hover {
        transform: none !important;
    }
}

/* =========================================================
   FELIX TECHNOLOGY CARDS
   MOUSE-TRACKING ENERGY SPOTLIGHT
   ========================================================= */

.logo-item {
    isolation: isolate;
}


/* ---------------------------------------------------------
   LIVE LIGHT SPOT
   --------------------------------------------------------- */

.logo-item::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        radial-gradient(
            circle 85px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 225, 255, 0.32),
            rgba(0, 180, 255, 0.12) 38%,
            transparent 72%
        );

    opacity: 0;

    pointer-events: none;

    z-index: 2;

    transition:
        opacity 0.25s ease;
}


/* ---------------------------------------------------------
   ACTIVATE LIGHT ONLY WHEN MOUSE ENTERS CARD
   --------------------------------------------------------- */

.logo-item:hover::after {
    opacity: 1;
}


/* ---------------------------------------------------------
   ICON + CONTENT STAYS ABOVE LIGHT
   --------------------------------------------------------- */

.logo-item > * {
    position: relative;

    z-index: 3;
}


/* ---------------------------------------------------------
   PREMIUM HOVER DEPTH
   --------------------------------------------------------- */

.logo-item:hover {

    transform:
        translateY(-7px)
        scale(1.035);

    border-color:
        rgba(0, 225, 255, 0.95) !important;

    box-shadow:

        0 0 0 1px
        rgba(0, 225, 255, 0.25),

        0 0 14px
        rgba(0, 220, 255, 0.55),

        0 0 32px
        rgba(0, 200, 255, 0.32),

        0 0 65px
        rgba(70, 90, 255, 0.18),

        inset 0 0 24px
        rgba(0, 210, 255, 0.08);

    z-index: 50 !important;
}

/* =========================================================
   FELIX TECHNOLOGY CARDS
   3D TILT ENGINE
   ========================================================= */

.logo-loop-group .logo-item {
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform;

    transition:
        transform 0.12s ease-out,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* =========================================================
   FELIX TECHNOLOGY CARDS
   HOLOGRAPHIC MOUSE REFLECTION
   ========================================================= */

.logo-loop-group .logo-item {
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   MOVING HOLOGRAPHIC LIGHT
   --------------------------------------------------------- */




/* ---------------------------------------------------------
   SHOW REFLECTION ON HOVER
   --------------------------------------------------------- */

.logo-loop-group .logo-item:hover::after {
    opacity: 1;
}


/* ---------------------------------------------------------
   KEEP CARD CONTENT ABOVE REFLECTION
   --------------------------------------------------------- */

/* =========================================================
   FELIX TECHNOLOGY CARDS
   LIVE HOLOGRAPHIC LIGHT SWEEP
   ========================================================= */

.logo-loop-group .logo-item {
    position: relative;
    overflow: hidden;
}


/* ---------------------------------------------------------
   ACTUAL LIGHT ELEMENT
   --------------------------------------------------------- */




/* ---------------------------------------------------------
   SHOW LIGHT ONLY WHEN MOUSE IS OVER CARD
   --------------------------------------------------------- */

.logo-loop-group .logo-item:hover .logo-card-shine {
    opacity: 1;
}

/* =========================================================
   KEEP CARD CONTENT ABOVE HOLOGRAPHIC SHINE
   ========================================================= */

.logo-loop-group .logo-item > *:not(.logo-card-shine) {
    position: relative;
    z-index: 2;
}


