@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
letter-spacing: 0.2px;
}
html {
background: #18202b;
-webkit-text-size-adjust: 100%;
}
img {
user-select: none;
user-drag: none;
-webkit-user-drag: none;
}
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}
.page-container {
display: flex;
flex-direction: column;
flex: 1;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 10%;
background-color: #18202b; 
color: #fff;
position: sticky;
top: 0;
z-index: 10;
}
header img {
width: 175px;
height: auto;
}
header h1 {
font-size: 1.8rem;
}
header nav a {
color: #fff;
text-decoration: none;
font-weight: 600;
cursor: pointer;
}
nav a {
margin: 0;
display: flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
border-radius: 6px;
transition: background 0.2s;
}
nav img {
width: 20px;
height: auto;
}
header nav a:hover {
background: #232f40;
}
.hero {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 80px 10%;
height: 300px;
color: #fff;
background: 
linear-gradient(to bottom, #18202b, rgba(24, 32, 43, 0.2)),
url('img/firewebp.webp') no-repeat center center/cover;
}
.hero h2 {
text-wrap: balance;
font-size: 70px;
line-height: 1.3;
text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
.features {
flex: 1; 
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
padding: 60px 8%;
background-color: #e1e6ed;
}
.feature-card {
flex: 1 1 200px;
margin: 20px;
background-color: #fff;
border-radius: 15px;
padding: 50px 20px;
text-align: center;
box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
transition: transform 0.3s;
}
.feature-card img {
max-width: 40px;
margin-bottom: 10px;
}
.feature-card h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
color: #1967d2;
line-height: 1.3;
}
.feature-card p {
font-size: 15px;
text-wrap: balance;
color: #5f6368;
line-height: 1.55;
}
footer {
flex: 0 0 auto;
background-color: #18202b;
color: #ddd;
text-align: center;
padding: 30px 10%;
font-size: 14px;
text-wrap: balance;
}
footer a {
color: #5ca1ff;
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
text-decoration: underline;
}
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
display: none;
justify-content: center;
align-items: center;
z-index: 100;
animation: fadeIn 0.3s forwards;
}
.modal {
background-color: #fff;
padding: 40px 30px;
border-radius: 15px;
width: 90%;
max-width: 400px;
text-align: center;
transform: scale(0.8);
opacity: 0;
animation: zoomIn 0.3s forwards;
}
.modal h2 {
margin-bottom: 20px;
color: #1967d2;
}
.modal img {
width: 50px;
height: auto;
margin-bottom: 1rem;
}
.modal input {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 1rem;
background: #fff;
outline-color: #202124;
color: #202124;
}
.modal button {
width: 100%;
padding: 12px;
border: none;
border-radius: 8px;
background-color: #1967d2;
color: #fff;
font-weight: 500;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
.modal button:hover {
background-color: #185abc;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes zoomIn {
from { transform: scale(0.8); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
@media (max-width: 768px) {
.hero h2 {
font-size: 3rem;
margin-top: -30px;
}
.features {
flex-direction: column;
padding: 40px 5%;
}
.feature-card {
margin: 15px 0;
}
header {
flex-direction: column;
}
nav a {
margin: 32px 0;
}
nav a {
background: #232f40;
}
}
@supports (-webkit-touch-callout: none) {
input:focus,
select:focus,
textarea:focus {
outline: none;
box-shadow: none;
}