*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#050d1b;
color:white;
overflow-x:hidden;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:18px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(5,13,27,0.9);
backdrop-filter:blur(12px);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:55px;
height:55px;
border-radius:50%;
box-shadow:0 0 15px rgba(255,152,0,0.3);
}

.logo h2{
font-size:26px;
font-weight:700;
letter-spacing:1px;
color:#ffffff;
}

nav a{
color:white;
text-decoration:none;
margin-left:28px;
font-size:15px;
font-weight:500;
position:relative;
transition:0.3s;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:#ff9800;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

nav a:hover{
color:#ff9800;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:150px 8% 100px;
background:
linear-gradient(rgba(5,13,27,0.85),rgba(5,13,27,0.92)),
url('https://images.unsplash.com/photo-1556740749-887f6717d7e4?q=80&w=1400') center/cover;
position:relative;
}

.hero-content{
max-width:950px;
z-index:2;
}

.hero h1{
font-size:72px;
font-weight:700;
line-height:1.2;
margin-bottom:25px;
}

.hero h1 span{
color:#ff9800;
}

.hero p{
font-size:20px;
line-height:1.9;
opacity:0.9;
max-width:850px;
margin:auto;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:40px;
}

.btn{
display:inline-block;
padding:16px 38px;
border:none;
border-radius:50px;
background:linear-gradient(45deg,#ff9800,#ffb84d);
color:white;
text-decoration:none;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:0.3s;
box-shadow:0 10px 25px rgba(255,152,0,0.25);
}

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

.secondary-btn{
background:transparent;
border:2px solid #ff9800;
}

/* STATS */

.hero-stats{
margin-top:60px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:25px;
}

.stat-box{
background:rgba(255,255,255,0.04);
padding:35px;
border-radius:22px;
backdrop-filter:blur(8px);
border:1px solid rgba(255,255,255,0.08);
transition:0.3s;
}

.stat-box:hover{
transform:translateY(-8px);
border-color:#ff9800;
}

.stat-box h2{
font-size:42px;
color:#ff9800;
margin-bottom:10px;
}

.stat-box p{
font-size:16px;
opacity:0.9;
}

/* SECTION */

section{
padding:100px 8%;
}

.section-heading{
text-align:center;
margin-bottom:70px;
}

.section-heading h2{
font-size:50px;
margin-bottom:15px;
}

.section-heading p{
font-size:18px;
opacity:0.8;
max-width:750px;
margin:auto;
line-height:1.8;
}

/* FEATURES */

.features-grid,
.services-grid,
.review-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.feature-card,
.service-card,
.review-card{
background:#0b172b;
padding:35px;
border-radius:22px;
transition:0.4s;
border:1px solid rgba(255,255,255,0.05);
position:relative;
overflow:hidden;
}

.feature-card::before,
.service-card::before,
.review-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(45deg,#ff9800,#ffb84d);
}

.feature-card:hover,
.service-card:hover,
.review-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.feature-card i{
font-size:45px;
margin-bottom:20px;
color:#ff9800;
}

.feature-card h3,
.service-card h3{
margin-bottom:18px;
font-size:24px;
}

.feature-card p,
.service-card p,
.review-card p{
line-height:1.9;
opacity:0.88;
}

/* REVIEWS */

.review-card h4{
margin-top:25px;
font-size:20px;
color:#ff9800;
}

.review-card span{
opacity:0.7;
font-size:14px;
}

/* CTA */

.cta-section{
text-align:center;
background:linear-gradient(45deg,#ff9800,#ffb84d);
border-radius:30px;
margin:80px 8%;
}

.cta-section h2{
font-size:48px;
margin-bottom:20px;
}

.cta-section p{
font-size:20px;
margin-bottom:30px;
}

.cta-section .btn{
background:#061223;
}

/* FORMS */

.form-section{
display:flex;
justify-content:center;
align-items:center;
}

form{
width:100%;
max-width:700px;
background:#0b172b;
padding:40px;
border-radius:25px;
border:1px solid rgba(255,255,255,0.06);
}

input,
textarea{
width:100%;
padding:16px;
margin-bottom:20px;
border:none;
border-radius:14px;
background:#132440;
color:white;
font-size:16px;
}

input:focus,
textarea:focus{
outline:none;
border:1px solid #ff9800;
}

textarea{
height:180px;
resize:none;
}

/* LOGIN */

.login-container{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
background:linear-gradient(to bottom,#050d1b,#020817);
}

.login-box{
width:100%;
max-width:430px;
background:#0b172b;
padding:45px;
border-radius:25px;
text-align:center;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.login-box h1{
font-size:36px;
margin-bottom:12px;
}

.login-box p{
opacity:0.75;
margin-bottom:25px;
}

.login-box input{
margin-bottom:18px;
}

#error{
color:#ff4d4d;
margin-top:15px;
}

/* ADMIN */

.admin-panel{
padding-top:140px;
}

.lead-card{
background:#0b172b;
padding:30px;
border-radius:20px;
margin-bottom:25px;
border:1px solid rgba(255,255,255,0.06);
}

.lead-card h3{
margin-bottom:15px;
color:#ff9800;
}

.lead-card p{
margin-bottom:10px;
line-height:1.8;
}

.delete-btn{
margin-top:20px;
padding:12px 22px;
background:#ff3b3b;
border:none;
border-radius:10px;
color:white;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.delete-btn:hover{
background:#ff1a1a;
}

.logout-btn{
width:200px;
margin-bottom:30px;
}

/* FOOTER */

footer{
background:#020817;
padding:60px 8% 30px;
margin-top:80px;
border-top:1px solid rgba(255,255,255,0.05);
}

.footer-content{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
margin-bottom:40px;
}

.footer-content h2{
font-size:32px;
margin-bottom:10px;
}

.footer-links a{
display:block;
color:white;
text-decoration:none;
margin-bottom:10px;
opacity:0.8;
transition:0.3s;
}

.footer-links a:hover{
color:#ff9800;
}

.footer-contact p{
margin-bottom:12px;
opacity:0.85;
}

.copyright{
text-align:center;
opacity:0.6;
font-size:14px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.05);
}

/* WHATSAPP */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25d366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
color:white;
text-decoration:none;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* MOBILE */

@media(max-width:992px){

.hero h1{
font-size:55px;
}

.section-heading h2{
font-size:40px;
}

}

@media(max-width:768px){

header{
padding:18px 5%;
}

nav{
display:none;
}

.hero{
padding-top:130px;
}

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

.hero p{
font-size:17px;
}

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

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

.cta-section p{
font-size:17px;
}

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

.btn{
width:100%;
max-width:320px;
}

.footer-content{
flex-direction:column;
}

}

.admin-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
gap:20px;
flex-wrap:wrap;
}

.admin-top h1{
font-size:38px;
}

#searchLead{
max-width:320px;
}

.table-container{
overflow-x:auto;
background:#0b172b;
padding:20px;
border-radius:20px;
border:1px solid rgba(255,255,255,0.05);
}

table{
width:100%;
border-collapse:collapse;
min-width:1200px;
}

table th{
background:#ff9800;
padding:16px;
text-align:left;
font-size:15px;
}

table td{
padding:16px;
border-bottom:1px solid rgba(255,255,255,0.05);
font-size:14px;
vertical-align:top;
}

table tr:hover{
background:rgba(255,255,255,0.03);
}

table select{
padding:10px;
border:none;
border-radius:8px;
background:#132440;
color:white;
}

.share-btn{
padding:10px 18px;
background:#25d366;
border:none;
border-radius:8px;
color:white;
cursor:pointer;
font-weight:600;
}

.share-btn:hover{
background:#1ebe5d;
}

.export-btn{
margin-right:15px;
background:#00b894;
}

.export-btn:hover{
background:#00d39f;
}

@media(max-width:768px){

.admin-top h1{
font-size:28px;
}

}

.call-float{
position:fixed;
bottom:100px;
right:25px;
width:65px;
height:65px;
background:#ff9800;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:white;
text-decoration:none;
z-index:999;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

/* HERO PREMIUM EFFECTS */

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

.hero-overlay{
position:absolute;
inset:0;
background:
linear-gradient(
to bottom,
rgba(2,8,23,0.4),
rgba(2,8,23,0.9)
);
z-index:1;
}

.hero-blur{
position:absolute;
border-radius:50%;
filter:blur(120px);
opacity:0.25;
animation:float 8s ease-in-out infinite;
}

.blur1{
width:350px;
height:350px;
background:#ff9800;
top:-100px;
left:-100px;
}

.blur2{
width:300px;
height:300px;
background:#00c3ff;
bottom:-80px;
right:-80px;
animation-delay:2s;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(25px);
}

100%{
transform:translateY(0px);
}

}

/* MARKETPLACE STRIP */

.marketplace-strip{
background:#081427;
padding:18px 0;
overflow:hidden;
border-top:1px solid rgba(255,255,255,0.05);
border-bottom:1px solid rgba(255,255,255,0.05);
}

.marketplace-track{
display:flex;
gap:80px;
white-space:nowrap;
animation:marquee 18s linear infinite;
font-size:22px;
font-weight:600;
color:#ff9800;
}

.marketplace-track span{
opacity:0.9;
}

@keyframes marquee{

0%{
transform:translateX(0);
}

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

}

/* COMPANY SECTION */

.company-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.company-card{
background:rgba(255,255,255,0.04);
padding:35px;
border-radius:24px;
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,0.06);
transition:0.4s;
text-align:center;
}

.company-card:hover{
transform:translateY(-10px);
border-color:#ff9800;
}

.company-card i{
font-size:48px;
margin-bottom:22px;
color:#ff9800;
}

.company-card h3{
font-size:26px;
margin-bottom:18px;
}

.company-card p{
line-height:1.8;
opacity:0.85;
}

/* ECOSYSTEM SECTION */

.ecosystem-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.eco-card{
background:
linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);
padding:35px;
border-radius:25px;
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(15px);
transition:0.4s;
position:relative;
overflow:hidden;
}

.eco-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:
linear-gradient(
45deg,
#ff9800,
#00c3ff
);
}

.eco-card:hover{
transform:translateY(-10px);
box-shadow:
0 20px 45px rgba(0,0,0,0.4);
}

.eco-card h3{
font-size:28px;
margin-bottom:25px;
color:#ff9800;
}

.eco-card ul{
list-style:none;
padding:0;
}

.eco-card ul li{
padding:12px 0;
border-bottom:
1px solid rgba(255,255,255,0.05);
font-size:16px;
opacity:0.9;
}

/* PREMIUM REVIEW CARDS */

.review-card{
background:
linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);
backdrop-filter:blur(12px);
}

/* CTA PREMIUM */

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

.cta-section::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:rgba(255,255,255,0.08);
border-radius:50%;
top:-250px;
right:-150px;
filter:blur(100px);
}

/* GLOW BUTTON */

.btn{
position:relative;
overflow:hidden;
}

.btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,0.2),
transparent
);
transition:0.6s;
}

.btn:hover::before{
left:100%;
}

/* MOBILE IMPROVEMENTS */

@media(max-width:768px){

.marketplace-track{
font-size:18px;
gap:50px;
}

.company-card,
.eco-card{
padding:28px;
}

.hero h1{
font-size:38px;
line-height:1.3;
}

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

.eco-card h3{
font-size:24px;
}

}

/* CENTER NAVBAR */

header{
justify-content:space-between;
}

.navbar{
display:flex;
justify-content:center;
align-items:center;
gap:45px;
margin:auto;
}

.navbar a{
color:white;
text-decoration:none;
font-size:18px;
font-weight:600;
position:relative;
transition:0.3s;
}

.navbar a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#ff9800;
transition:0.3s;
}

.navbar a:hover::after{
width:100%;
}

.navbar a:hover{
color:#ff9800;
}

@media(max-width:768px){

.navbar{
gap:20px;
}

.navbar a{
font-size:15px;
}

}
