/*==================================================
  NetSfere Federation Landing Page
  style.css - Part 1
==================================================*/
/*==============================
CSS VARIABLES
==============================*/
:root{
	--primary:#D71920;

--primary-dark:#B91419;

--hero-bg:#0B0F19;

--hero-bg2:#141A27;

--hero-card:#1B2333;

--text:#D1D5DB;

--heading:#FFFFFF;

--border:#2C3648;

--light:#FFFFFF;


--secondary:#111827;
--dark:#0f172a;

--bg:#f7f9fc;
--shadow:0 15px 45px rgba(0,0,0,.08);
--radius:18px;
--transition:.35s ease;
}
/*==============================
RESET
==============================*/
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}

img{
max-width:100%;
display:block;
}
a{
text-decoration:none;
transition:var(--transition);
}
ul{
list-style:none;
}
section{
padding:44px 0;
position:relative;
}
/*==============================
CONTAINER
==============================*/
.container{
width:100%;
max-width:1280px;
margin:auto;
padding:0 21px;
}
/*==============================
TYPOGRAPHY
==============================*/
h1,h2,h3,h4{
color:var(--secondary);
font-weight:700;
line-height:1.2;
}
h1{
font-size:50px;
font-weight:800;
margin-bottom:25px;
}
h2{
font-size:32px;
margin-bottom:20px;
}
h3{
font-size:25px;
}
p{
margin-bottom:18px;
}
.section-title{
margin-bottom:30px;
}
.section-title.center{
text-align:center;
}
.section-title span{
display:inline-block;
padding:8px 18px;
border-radius:30px;
background:#ffe7e8;
color:var(--primary);
font-weight:600;
margin-bottom:18px;
font-size:14px;
text-transform:uppercase;
letter-spacing:.8px;
}
.section-title h2{
max-width:888px;
}
.section-title.center h2{
margin:auto;
}
/*==============================
BUTTONS
==============================*/
.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 34px;
border-radius:50px;
font-weight:600;
transition:.35s;
cursor:pointer;
font-size:15px;
}
.btn-primary{
background:var(--primary);
color:#fff;
box-shadow:0 10px 30px rgba(215,25,32,.25);
}
.btn-primary:hover{
background:var(--primary-dark);
transform:translateY(-3px);
}
.btn-outline{
border:2px solid var(--primary);
color:var(--primary);
background:#fff;
}
.btn-outline:hover{
background:var(--primary);
color:#fff;
}
.btn-dark{
background:#111827;
color:#fff;
}
.btn-dark:hover{
background:#000;
}
/*==============================
HEADER
==============================*/
.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

padding:1px 0;

background:rgba(11,15,25,.75);

backdrop-filter:blur(14px);

transition:.35s;

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

}

.header.sticky{

background:rgba(11,15,25,.96);

box-shadow:0 15px 40px rgba(0,0,0,.45);

}
.nav a{

color:#fff;

font-weight:500;

}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
}
.logo img{
height:88px;
}
.nav ul{
display:flex;
gap:38px;
}

.nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#D71920;
transition:.35s;
}
.nav a:hover::after{
width:100%;
color:#D71920;
}
.nav-buttons{
display:flex;
gap:15px;
}
.mobile-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:var(--heading);
}
/*==============================
HERO
==============================*/
.hero{

position:relative;

overflow:hidden;

padding:150px 0 60px;

background:

radial-gradient(circle at top right,
rgba(215,25,32,.16),
transparent 35%),

radial-gradient(circle at bottom left,
rgba(27,102,255,.08),
transparent 40%),

linear-gradient(
180deg,
#0B0F19 0%,
#121826 55%,
#161F2E 100%
);

}
.hero-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
align-items:center;
gap:70px;
}
.hero-content{
position:relative;
z-index:2;
}
.hero .eyebrow{
background:rgba(215,25,32,.12);
color:#FF6A6F;
border:1px solid rgba(215,25,32,.35);
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.hero h1{
color:#fff;
font-size:46px;
font-weight:800;
line-height:1.1;
padding-top: 5px;
}

.hero h1 span{
color:#ff4d4d;
}

.hero p{
color:#C8D0DD;
font-size:19px;
}
/*==============================
HERO IMAGE
==============================*/
.hero-image{
position:relative;
z-index:2;
animation:floatImage 6s ease-in-out infinite;
}
.hero-image img{
width:100%;
border-radius:20px;
box-shadow:0 40px 80px rgba(0,0,0,.15);
}
/*==============================
BACKGROUND BLOBS
==============================*/
.hero::before{

content:"";

position:absolute;

width:700px;

height:700px;

right:-220px;

top:-250px;

border-radius:50%;

background:radial-gradient(circle,
rgba(215,25,32,.25),
transparent 70%);

filter:blur(40px);

}

.hero::after{

content:"";

position:absolute;

width:500px;

height:500px;

left:-180px;

bottom:-180px;

border-radius:50%;

background:radial-gradient(circle,
rgba(255,255,255,.05),
transparent 75%);

}
.hero::before{

top:-180px;
right:-180px;
filter:blur(10px);
}
.hero::after{

left:-180px;
bottom:-120px;
}
/* Floating Elements */
.hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
pointer-events:none;
overflow:hidden;
}
.hero-bg::before{
content:"";
position:absolute;
width:140px;
height:140px;
border-radius:50%;
background:rgba(215,25,32,.12);
top:18%;
right:20%;
animation:blobMove 9s infinite alternate;
}
.hero-bg::after{
content:"";
position:absolute;
width:90px;
height:90px;
border-radius:50%;
background:rgba(17,24,39,.05);
bottom:18%;
left:15%;
animation:blobMove 8s infinite alternate;
}
/*==============================
ANIMATIONS
==============================*/
@keyframes floatImage{
0%{
transform:translateY(0);
}
50%{
transform:translateY(-12px);
}
100%{
transform:translateY(0);
}
}
@keyframes blobMove{
0%{
transform:translate(0,0);
}
100%{
transform:translate(40px,-30px);
}
}
/*==============================
UTILITY CLASSES
==============================*/
.text-center{
text-align:center;
}
.mt-30{
margin-top:30px;
}
.mb-30{
margin-bottom:30px;
}
.shadow{
box-shadow:var(--shadow);
}
.radius{
border-radius:var(--radius);
}
.bg-light{
background:var(--bg);
}
/*==================================================
  style.css - Part 2
  Problem Section + Features
==================================================*/
/*=====================================
PROBLEM SECTION
=====================================*/
.problem{
   /* background:#f7faff;*/
    position:relative;
}
.problem::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:180px;
   /*  background:linear-gradient(180deg,#f7f9fc 0%,#f7faff 100%);*/
    z-index:0;
}
.problem .container{
    position:relative;
    z-index:2;
}
.problem-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}
/* Left Content */
.problem-text h3{
    font-size:30px;
    margin-bottom:20px;
}
.problem-text p{
    font-size:17px;
    color:#6b7280;
}
.problem-text ul{
    margin-top:30px;
}
.problem-text li{
    position:relative;
    padding-left:42px;
    margin-bottom:24px;
    font-size:17px;
    color:#374151;
    font-weight:500;
}
.problem-text li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:26px;
    height:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#d71920;
    color:#fff;
    font-size:14px;
    font-weight:700;
}
/*=====================================
STATISTICS PANEL
=====================================*/
.stats-box{
    background:#ffffff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
    border:1px solid #f1f1f1;
}
.big-number{
    font-size:72px;
    font-weight:800;
    color:#d71920;
    line-height:1;
    margin-bottom:15px;
}
.big-number::after{
    content:" External Collaboration";
    display:block;
    font-size:18px;
    color:#6b7280;
    margin-top:12px;
    font-weight:500;
}
.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-top:35px;
}
.stat-card{
    background:#f8fafc;
    padding:30px;
    border-radius:18px;
    transition:.35s;
    border:1px solid #edf2f7;
}
.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.stat-card h4{
    font-size:34px;
    color:#111827;
    margin-bottom:8px;
}
.stat-card p{
    margin:0;
    color:#6b7280;
    font-size:15px;
}
/*=====================================
FEATURE SECTION
=====================================*/
.features{
    background:#f2f2f2;
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
/*=====================================
FEATURE CARD
=====================================*/
.feature-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:40px;
    transition:.35s;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 15px 45px rgba(0,0,0,.05);
}
/* Top Border Animation */
.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d71920;
    transform:scaleX(0);
    transition:.35s;
    transform-origin:left;
}
.feature-card:hover::before{
    transform:scaleX(1);
}
.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 65px rgba(0,0,0,.10);
}
/*=====================================
FEATURE ICON
=====================================*/
.feature-card i{
    width:78px;
    height:78px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff2f2;
    color:#d71920;
    font-size:34px;
    margin-bottom:28px;
    transition:.35s;
}
.feature-card:hover i{
    
    color:#fff;
    transform:rotate(-10deg) scale(1.08);
}
/*=====================================
FEATURE TEXT
=====================================*/
.feature-card h3{
    font-size:24px;
    margin-bottom:15px;
}
.feature-card p{
    font-size:16px;
    color:#6b7280;
    margin:0;
}
/*=====================================
GLASS EFFECT CARD
=====================================*/
.feature-card.glass{
    backdrop-filter:blur(16px);
    background:rgba(255,255,255,.7);
}
/*=====================================
FEATURE HOVER GLOW
=====================================*/
.feature-card:hover{
    border-color:#ffd7d8;
}
.feature-card:hover::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(215,25,32,.06);
    border-radius:50%;
    top:-50px;
    right:-50px;
}
/*=====================================
SECTION DECORATION
=====================================*/
.features::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(215,25,32,.03);
    left:-180px;
    top:180px;
}

/*=====================================
REVEAL ANIMATION
=====================================*/
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}
.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/*=====================================
CARD SHADOW UTILITIES
=====================================*/
.shadow-hover{
    transition:.35s;
}
.shadow-hover:hover{
    box-shadow:0 30px 80px rgba(0,0,0,.12);
}
/*=====================================
SECTION SPACING
=====================================*/
.problem,
.features{
    overflow:hidden;
}
/*==================================================
  style.css - Part 3
  Compliance + Industries
==================================================*/
/*=========================================
COMPLIANCE SECTION
=========================================*/
.compliance{
   /* background:#ffffff; */
    position:relative;
    overflow:hidden;
    padding:110px 0;
}
/*.compliance::before{
    content:"";
    position:absolute;
    width:425px;
    height:425px;
    border-radius:50%;
    background:rgba(215,25,32,.04);
    left:-232px;
    top:-120px;
}*/

/*=========================================
SLIDER
=========================================*/
.slider-wrapper{
    position:relative;
    overflow:hidden;
    margin-top:60px;
}
/* Gradient Fade */
.slider-wrapper::before,
.slider-wrapper::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
    pointer-events:none;
}
.slider-wrapper::before{
    left:0;
    background:linear-gradient(to right,#fff 0%,transparent 100%);
}
.slider-wrapper::after{
    right:0;
    background:linear-gradient(to left,#fff 0%,transparent 100%);
}
/* Track */
.slider-track{
    display:flex;
    align-items:center;
    gap:25px;
    width:max-content;
    animation:complianceScroll 28s linear infinite;
}
/* Pause */
.slider-wrapper:hover .slider-track{
    animation-play-state:paused;
}
/*=========================================
CARD
=========================================*/
.compliance-card{
    min-width:240px;
    height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    padding:20px 35px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.5);
    border-radius:22px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;
    font-size:20px;
    font-weight:700;
    color:#111827;
}
.compliance-card:hover{
    transform:translateY(-10px);
    border-color:#d71920;
    box-shadow:0 25px 60px rgba(215,25,32,.18);
}
.compliance-card img{
    width:66px;
    height:66px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff3f3;
    color:#d71920;
    font-size:26px;
    transition:.35s;
}
.compliance-card:hover i{
    background:#d71920;
    color:#fff;
    transform:rotate(-10deg);
}
/*=========================================
SLIDER ANIMATION
=========================================*/
@keyframes complianceScroll{
    0%{
        transform:translateX(-50%);
    }
    100%{
        transform:translateX(0);
    }
}
/*=========================================
INDUSTRIES
=========================================*/
.industries{
    background:#f8fafc;
    padding:110px 0;
    position:relative;
}
.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
/*=========================================
INDUSTRY CARD
=========================================*/
.industry-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:22px;
    text-align:center;
    border:1px solid #ececec;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}
/* Animated Border */
.industry-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#d71920;
    transform:scaleX(0);
    transition:.35s;
}
.industry-card:hover::before{
    transform:scaleX(1);
}
.industry-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(0,0,0,.10);
}
/*=========================================
INDUSTRY ICON
=========================================*/
.industry-card i{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff2f2;
    color:#d71920;
    font-size:36px;
    transition:.35s;
}
.industry-card:hover i{
    background:#d71920;
    color:#fff;
    transform:scale(1.08);
}
/*=========================================
TEXT
=========================================*/
.industry-card h3{
    font-size:24px;
    margin-bottom:16px;
}
.industry-card li{
    color:#6b7280 !important;
    margin-bottom:5px;
	text-align:left !important;
}
/*=========================================
BUTTON
=========================================*/
.industry-card .btn{
    width:100%;
    border-radius:40px;
}
/*=========================================
GLOW
=========================================*/

.industry-card:hover::after{
    opacity:1;
}
/*=========================================
HOVER BACKGROUND
=========================================*/
.industry-card:hover{
    background:#ffffff;
}
/*=========================================
DECORATION
=========================================*/
.industries::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(215,25,32,.04);
    right:-150px;
    top:120px;
}

.slider-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:complianceScroll 30s linear infinite;
}
@keyframes complianceScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
/*==================================================
  style.css - Part 4
  CTA + FAQ + Footer + Animations
==================================================*/
/*=====================================
CTA SECTION
=====================================*/
.cta{
    position:relative;
    overflow:hidden;
    padding:60px 0;
    background:linear-gradient(135deg,#ff4d4d 0%,#a91016 100%);
    text-align:center;
}
.cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    left:-180px;
    top:-220px;
}
.cta::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    right:-150px;
    bottom:-180px;
}
.cta .container{
    position:relative;
    z-index:2;
}
.cta h2{
    color:#fff;
    font-size:48px;
    max-width:850px;
    margin:auto;
    margin-bottom:25px;
}
.cta p{
    color:rgba(255,255,255,.9);
    max-width:700px;
    margin:0 auto 40px;
    font-size:18px;
}
.cta .btn-dark{
    background:#fff;
    color:#d71920;
    font-weight:700;
}
.cta .btn-dark:hover{
    background:#111827;
    color:#fff;
}
/*=====================================
FAQ
=====================================*/
.faq{
    background:#f8fafc;
    padding:60px 0;
}
.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    border:1px solid #ececec;
}
.faq-question{
    padding:26px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:19px;
    font-weight:600;
    color:#111827;
    transition:.3s;
}
.faq-question:hover{
    color:#d71920;
}
.faq-question span{
    font-size:28px;
    transition:.3s;
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease,padding .35s ease;
    padding:0 30px;
    color:#6b7280;
    line-height:1.8;
}
.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 30px 25px;
}
.faq-item.active .faq-question span{
    transform:rotate(45deg);
    color:#d71920;
}
/*=====================================
FOOTER
=====================================*/
.footer{
    background:#111827;
    color:#cbd5e1;
    padding:80px 0 25px;
	
}
footer.bg-dark {width:103%;}
.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:45px;
    margin-bottom:50px;
}
.footer img{
    max-height:42px;
    margin-bottom:20px;
}
.footer h4{
    color:#fff;
    margin-bottom:20px;
    font-size:18px;
}
.footer ul li{
    margin-bottom:12px;
}
.footer ul li a{
    color:#cbd5e1;
    transition:.3s;
}
.footer ul li a:hover{
    color:#fff;
    padding-left:5px;
}
/*=====================================
NEWSLETTER
=====================================*/
.newsletter{
    margin-top:20px;
}
.newsletter form{
    display:flex;
    margin-top:15px;
}
.newsletter input{
    flex:1;
    border:none;
    outline:none;
    padding:14px 18px;
    border-radius:40px 0 0 40px;
}
.newsletter button{
    border:none;
    background:#d71920;
    color:#fff;
    padding:0 26px;
    border-radius:0 40px 40px 0;
    cursor:pointer;
    transition:.3s;
}
.newsletter button:hover{
    background:#b8141a;
}
/*=====================================
SOCIAL ICONS
=====================================*/
.social-icons{
    display:flex;
    gap:12px;
    margin-top:20px;
}
.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1f2937;
    color:#fff;
    transition:.35s;
}
.social-icons a:hover{
    background:#d71920;
    transform:translateY(-4px);
}
/*=====================================
COPYRIGHT
=====================================*/
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    font-size:14px;
}
.footer-bottom a{
    color:#fff;
}
/*=====================================
SCROLL TO TOP
=====================================*/
.scroll-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d71920;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(215,25,32,.35);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}
.scroll-top.show{
    opacity:1;
    visibility:visible;
}
.scroll-top:hover{
    transform:translateY(-5px);
    background:#111827;
}
/*=====================================
GENERAL ANIMATIONS
=====================================*/
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
    100%{
        transform:scale(1);
    }
}
.fade-up{
    animation:fadeUp .8s ease both;
}
.fade-in{
    animation:fadeIn .8s ease both;
}
.pulse{
    animation:pulse 2.5s infinite;
}
/*=====================================
UTILITIES
=====================================*/
.text-white{
    color:#fff;
}
.bg-primary{
    background:#d71920;
}
.rounded{
    border-radius:18px;
}
.shadow-lg{
    box-shadow:0 25px 70px rgba(0,0,0,.12);
}
.w-100{
    width:100%;
}
.d-flex{
    display:flex;
}
.align-center{
    align-items:center;
}
.justify-center{
    justify-content:center;
}
.gap-20{
    gap:20px;
}
