/* ================================
GLOBAL SETTINGS
================================ */

body{
margin:0;
font-family:'Poppins', sans-serif;
background:#020617;
color:#e5e7eb;
line-height:1.6;
scroll-behavior:smooth;
}

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

header{
background:linear-gradient(90deg,#020617,#1e3a8a);
color:white;
position:sticky;
top:0;
z-index:1000;
}

/* ================================
NAVBAR
================================ */

.navbar{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
}

/* ================================
LOGO
================================ */

.logo{
font-size:22px;
font-weight:600;
color:white;
white-space:nowrap;
}

/* ================================
NAVIGATION LINKS
================================ */

.nav-links{
list-style:none;
display:flex;
gap:28px;
margin:0;
padding:0;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
color:#60a5fa;
}

/* ================================
SOCIAL LINKS
================================ */

.social-links{
display:flex;
gap:16px;
}

.social-links a{
color:white;
font-size:18px;
transition:0.3s;
}

.social-links a:hover{
color:#60a5fa;
}

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

.hero{
background:radial-gradient(circle at top,#1e3a8a,#020617);
padding:120px 20px;
text-align:center;
}

.hero-container{
max-width:900px;
margin:auto;
display:flex;
flex-direction:column;
align-items:center;
}

/* TEXT */

.hero-text h1{
font-size:44px;
line-height:1.3;
margin-bottom:20px;
}

.hero-text p{
font-size:18px;
color:#cbd5f5;
max-width:650px;
margin:auto;
margin-bottom:40px;
}

/* SLOGAN */

.slogan{
color:#3b82f6;
margin-top:20px;
margin-bottom:40px;
font-weight:500;
}

/* STATS */

.hero-stats{
display:flex;
justify-content:center;
gap:60px;
margin-bottom:40px;
flex-wrap:wrap;
}

.stat h2{
color:#3b82f6;
font-size:36px;
margin:0;
}

.stat p{
margin-top:5px;
color:#cbd5f5;
}

/* BUTTONS */

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

.btn-primary{
background:#2563eb;
color:white;
padding:14px 30px;
text-decoration:none;
border-radius:6px;
font-weight:500;
transition:0.3s;
}

.btn-primary:hover{
background:#1d4ed8;
transform:translateY(-2px);
}

.btn-secondary{
border:2px solid #2563eb;
color:#2563eb;
padding:12px 28px;
text-decoration:none;
border-radius:6px;
font-weight:500;
transition:0.3s;
}

.btn-secondary:hover{
background:#2563eb;
color:white;
}

/* ================================
SECTION COMMON
================================ */

.section-container{
max-width:1100px;
margin:auto;
padding:100px 20px;
text-align:center;
}

.section-title{
font-size:38px;
margin-bottom:20px;
color:white;
}

.section-subtitle{
max-width:700px;
margin:auto;
margin-bottom:60px;
color:#9ca3af;
font-size:17px;
}

/* ================================
COMPANY INTRO
================================ */

.company-intro{
padding:100px 20px;
text-align:center;
background:#020617;
border-top:1px solid #1f2937;
}

.hero-title{
font-size:40px;
margin-bottom:30px;
}

.hero-description{
font-size:18px;
line-height:1.7;
max-width:900px;
margin:auto;
margin-bottom:25px;
color:#9ca3af;
}

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

.services{
background:#020617;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
justify-items:center;
}

.service-card{
background:#0f172a;
padding:30px;
border-radius:10px;
border:1px solid #1f2937;
transition:0.3s;
width:100%;
max-width:340px;
}

.service-card:hover{
transform:translateY(-6px);
border-color:#2563eb;
box-shadow:0 10px 30px rgba(37,99,235,0.25);
}

.service-card h3{
color:#3b82f6;
margin-bottom:15px;
}

.service-card p{
color:#9ca3af;
}

/* ================================
WHY US GRID
================================ */

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
justify-items:center;
}

.why-card{
background:#0f172a;
padding:30px;
border-radius:10px;
border:1px solid #1f2937;
transition:0.3s;
width:100%;
max-width:340px;
}

.why-card:hover{
transform:translateY(-6px);
border-color:#2563eb;
}

.why-card h3{
color:#3b82f6;
margin-bottom:12px;
}

.why-card p{
color:#9ca3af;
}

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

.architecture{
background:#020617;
padding:100px 20px;
border-top:1px solid #1f2937;
}

.architecture-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
justify-items:center;
margin-top:50px;
}

.arch-layer{
background:#0f172a;
padding:30px;
border-radius:10px;
border:1px solid #1f2937;
transition:0.3s;
width:100%;
max-width:340px;
}

.arch-layer:hover{
transform:translateY(-6px);
border-color:#2563eb;
}

.arch-layer h3{
color:#3b82f6;
margin-bottom:10px;
}

.arch-layer p{
color:#9ca3af;
}

/* ================================
CONTACT SECTION
================================ */

.contact{
background:#020617;
padding:100px 20px;
border-top:1px solid #1f2937;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:40px;
align-items:center;
}

.contact-info h3{
margin-bottom:15px;
color:#3b82f6;
}

.contact-info p{
margin:10px 0;
color:#9ca3af;
}

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

.contact-form input,
.contact-form textarea{
padding:12px;
background:#0f172a;
border:1px solid #1f2937;
border-radius:6px;
color:white;
font-family:'Poppins', sans-serif;
}

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

.footer{
background:#020617;
color:white;
padding:60px 20px 20px;
border-top:1px solid #1f2937;
}

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
margin-bottom:40px;
}

.footer-about p{
color:#9ca3af;
}

.footer-links ul{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
text-decoration:none;
color:#9ca3af;
}

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

.social-icons{
display:flex;
gap:15px;
margin-top:10px;
}

.social-icons a{
color:white;
font-size:20px;
}

.social-icons a:hover{
color:#60a5fa;
}

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

.footer-bottom{
text-align:center;
border-top:1px solid #1f2937;
padding-top:20px;
font-size:14px;
color:#6b7280;
}

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

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
border-radius:50%;
box-shadow:0 6px 20px rgba(0,0,0,0.3);
z-index:999;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
background:#1ebe5d;
}




/* ================================
TABLET VIEW
================================ */

@media (max-width: 1024px){

.navbar{
flex-wrap:wrap;
gap:20px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.hero-text h1{
font-size:36px;
}

.hero-stats{
gap:40px;
}

.contact-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-container{
grid-template-columns:1fr 1fr;
gap:30px;
}

}


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

@media (max-width: 768px){

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

.logo{
font-size:20px;
text-align:center;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:16px;
}

.social-links{
justify-content:center;
}

.hero{
padding:90px 20px;
}

.hero-text h1{
font-size:30px;
}

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

.hero-stats{
flex-direction:column;
gap:25px;
}

.stat h2{
font-size:28px;
}

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

.section-subtitle{
font-size:15px;
}

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

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

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

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

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

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

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
}

.whatsapp-float{
width:55px;
height:55px;
font-size:26px;
}

}


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

@media (max-width:480px){

.hero-text h1{
font-size:26px;
}

.hero-text p{
font-size:15px;
}

.btn-primary,
.btn-secondary{
width:100%;
text-align:center;
}

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

.section-container{
padding:70px 20px;
}

}



.hero{
background:radial-gradient(circle at top,#1e3a8a,#020617);
padding:60px 20px 120px 20px;
text-align:center;
margin-top:-60px;
}


