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

body{
background:#f5f8fc;
color:#222;
line-height:1.6;
}

header{
background:#061b3a;
color:white;
padding:20px;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
color:white;
text-decoration:none;
}


.brand{
	display:flex;
	align-items:center;
	gap:12px;
	text-decoration:none;
	color:white;
}

.logo-img{
	width:56px;
	height:56px;
	object-fit:contain;
	display:block;
}

.site-title{
	font-size:20px;
	font-weight:700;
	color:white;
}
.hero{
min-height:80vh;
background:
linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
url("image/hero.gif") center/cover;
display:flex;
align-items:center;
padding:50px;
color:white;
}

.hero-text{
max-width:650px;
}

.about-hero{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:40px;
    align-items:center;
    padding:70px 20px;
    background:linear-gradient(180deg, #091b2f 0%, #122b50 100%);
    color:#eef3f8;
}

.about-copy .eyebrow{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    color:#f7c57a;
    letter-spacing:.16em;
    font-size:12px;
    margin-bottom:24px;
    text-transform:uppercase;
}

.about-copy h1{
    font-size:3rem;
    line-height:1.05;
    margin-bottom:24px;
    max-width:740px;
}

.about-copy p{
    max-width:720px;
    color:rgba(255,255,255,.82);
    margin-bottom:18px;
    font-size:1rem;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:16px;
    margin-top:28px;
}

.about-stats div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:18px 20px;
}

.about-stats strong{
    display:block;
    color:#fff;
    font-size:1.05rem;
    margin-bottom:6px;
}

.about-stats span{
    color:rgba(255,255,255,.75);
    font-size:.95rem;
}

.about-visual img{
    width:100%;
    border-radius:24px;
    object-fit:cover;
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:18px;
    padding:40px 20px 60px;
    background:#0f1d36;
}

.highlight-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    padding:28px 22px;
    text-align:center;
}

.highlight-card h2{
    font-size:3rem;
    margin-bottom:12px;
    color:#fff;
}

.highlight-card p{
    color:rgba(255,255,255,.75);
    margin:0;
    font-size:1rem;
}

@media (max-width:980px){
    .about-hero{
        grid-template-columns:1fr;
    }
}

@media (max-width:650px){
    .about-hero{
        padding:40px 16px;
    }
    .about-copy h1{
        font-size:2.3rem;
    }
    .about-highlights{
        padding:28px 16px 40px;
    }
}
.hero h2{
font-size:45px;
line-height:1.2;
}

.hero p{
font-size:20px;
margin:20px 0;
}

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

.btn{
background:#00a8ff;
padding:15px 30px;
color:white;
text-decoration:none;
border-radius:999px;
display:inline-block;
transition:transform 0.2s ease, background 0.2s ease;
}

.btn:hover{
transform:translateY(-2px);
background:#0194db;
}

.btn-secondary{
background:#25D366;
}

.services,
.network-showcase,
.gallery,
.testimonials,
.why{
padding:50px;
}

.services h2,
.network-showcase h2,
.testimonials h2,
.why h2{
text-align:center;
margin-bottom:25px;
color:#061b3a;
font-size:32px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
gap:25px;
}

.card,
.testimonial-card,
.gallery-card{
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 10px 25px rgba(6, 27, 58, 0.08);
}

.network-showcase{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
gap:24px;
align-items:center;
}

.network-copy p{
max-width:480px;
font-size:18px;
color:#4c5b70;
}

.network-visual{
position:relative;
min-height:300px;
background:linear-gradient(135deg, #071a3b, #123b74);
border-radius:20px;
overflow:hidden;
padding:20px;
}

.network-visual::before{
content:"";
position:absolute;
inset:0;
background-image:radial-gradient(rgba(255,255,255,0.25) 1px, transparent 1px);
background-size:16px 16px;
opacity:0.35;
animation:drift 8s linear infinite;
}

.signal-line{
position:absolute;
border:2px solid rgba(255,255,255,0.35);
border-radius:50%;
animation:pulseLine 3s ease-in-out infinite;
}

.line-1{
left:18%;
top:30%;
width:60%;
height:48%;
border-top:0;
border-left:0;
}

.line-2{
right:18%;
top:30%;
width:60%;
height:48%;
border-top:0;
border-right:0;
}

.network-node{
position:absolute;
padding:10px 14px;
background:white;
color:#061b3a;
border-radius:999px;
font-size:14px;
font-weight:bold;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
animation:floatNode 3s ease-in-out infinite;
}

.node-1{top:18%; left:12%; animation-delay:0s;}
.node-2{top:50%; left:50%; transform:translate(-50%, -50%); animation-delay:1s;}
.node-3{bottom:18%; right:12%; animation-delay:2s;}

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

.gallery-card{padding:0; overflow:hidden;}

.gallery-card img{
width:100%;
height:240px;
object-fit:cover;
display:block;
}

.gallery-copy{padding:20px;}

.gallery-copy h3{margin-bottom:8px; color:#061b3a;}

.testimonial-cards{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
gap:20px;
}

.testimonial-card p{
font-style:italic;
color:#4c5b70;
margin-bottom:12px;
}

.testimonial-card h3{
color:#00a8ff;
font-size:16px;
}

.why{
text-align:center;
background:#eaf4ff;
}

.why p{
font-size:18px;
color:#1f2d46;
line-height:2;
}

.site-footer{
    background:#111;
    color:#f3f3f3;
    padding:32px 20px;
}

.footer-top,
.footer-bottom{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    max-width:1200px;
    margin:0 auto;
}

.footer-links,
.footer-legal{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.footer-links a,
.footer-legal a{
    color:#f3f3f3;
    text-decoration:none;
    font-weight:600;
    transition:color .2s ease;
}

.footer-links a:hover,
.footer-legal a:hover{
    color:#4f4cf2;
}

.footer-social{
    color:#4f4cf2;
    font-weight:700;
    text-decoration:none;
    letter-spacing:.08em;
}

.footer-divider{
    height:1px;
    background:rgba(255,255,255,0.12);
    margin:24px auto;
    max-width:1200px;
}

.site-footer p{
    margin:0;
    color:#cbd2e1;
    font-size:14px;
}

@media (max-width:650px) {
    .footer-top,
    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }
}

.page{
padding:50px;
max-width:900px;
margin:auto;
}

form{
display:flex;
flex-direction:column;
gap:15px;
}

input,textarea{
padding:15px;
}

button{
background:#061b3a;
color:white;
padding:15px;
border:none;
}

footer{
background:#061b3a;
color:white;
text-align:center;
padding:20px;
}

.whatsapp-btn{
position:fixed;
bottom:24px;
right:24px;
background:#25D366;
color:white;
padding:14px 18px;
border-radius:999px;
text-decoration:none;
font-weight:bold;
box-shadow:0 8px 20px rgba(37, 211, 102, 0.35);
z-index:1000;
animation:pulse 2s infinite;
}

@keyframes drift{
0%{transform:translateY(0);} 50%{transform:translateY(8px);} 100%{transform:translateY(0);}
}

@keyframes pulseLine{
0%, 100%{opacity:0.4; transform:scale(0.98);} 50%{opacity:1; transform:scale(1.02);}
}

@keyframes floatNode{
0%, 100%{transform:translateY(0);} 50%{transform:translateY(-8px);} 
}

@keyframes pulse{
0%, 100%{transform:scale(1);} 50%{transform:scale(1.04);} 
}

@media (max-width: 700px){
.hero{padding:30px 20px;}
.hero h2{font-size:32px;}
.services, .network-showcase, .gallery, .testimonials, .why{padding:30px 20px;}
nav{flex-direction:column; gap:12px;}
nav ul{gap:15px; flex-wrap:wrap; justify-content:center;}
.whatsapp-btn{bottom:16px; right:16px; padding:12px 16px;}
}