/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Reset */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

/* Body */

body{
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:white;
line-height:1.7;
}

/* Header */

header{
text-align:center;
padding:70px 20px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,0.1);
}

header h1{
font-size:40px;
letter-spacing:1px;
margin-bottom:10px;
}

header p{
font-size:18px;
opacity:0.8;
}

/* Navigation */

nav{
display:flex;
justify-content:center;
gap:40px;
padding:20px;
background:rgba(0,0,0,0.25);
backdrop-filter:blur(8px);
}

nav a{
text-decoration:none;
color:white;
font-weight:500;
position:relative;
transition:0.3s;
}

nav a::after{
content:'';
width:0%;
height:2px;
background:#00e5ff;
position:absolute;
left:0;
bottom:-5px;
transition:0.3s;
}

nav a:hover{
color:#00e5ff;
}

nav a:hover::after{
width:100%;
}

/* Section */

section{
max-width:1100px;
margin:60px auto;
padding:40px;
background:rgba(255,255,255,0.05);
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.3);
backdrop-filter:blur(12px);
transition:0.4s;
}

section:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.4);
}

section h2{
font-size:28px;
margin-bottom:20px;
color:#00e5ff;
}

section p{
font-size:16px;
opacity:0.9;
}

/* Table */

table{
width:100%;
border-collapse:collapse;
margin-top:20px;
overflow:hidden;
border-radius:10px;
}

th{
background:#00e5ff;
color:#111;
padding:15px;
font-size:16px;
}

td{
padding:15px;
background:rgba(255,255,255,0.05);
text-align:center;
}

tr:hover td{
background:rgba(0,229,255,0.15);
transition:0.3s;
}

/* Service Area */

section:last-of-type{
text-align:center;
}

section:last-of-type p{
font-size:17px;
font-weight:500;
}

/* Footer */

footer{
text-align:center;
padding:25px;
margin-top:50px;
background:rgba(0,0,0,0.35);
font-size:14px;
opacity:0.8;
}

/* Responsive */

@media(max-width:768px){

header h1{
font-size:28px;
}

nav{
flex-direction:column;
align-items:center;
gap:15px;
}

section{
margin:30px 15px;
padding:25px;
}

table{
font-size:14px;
}

}