*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    background:#0b1320;
    color:white;
}

/* Loader */

#loader{
    position:fixed;
    width:100%;
    height:100%;
    background:#08111f;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.spinner{
    width:70px;
    height:70px;
    border:6px solid #1b263b;
    border-top:6px solid #00d4ff;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* Header */

header{
    background:linear-gradient(90deg,#0d1b2a,#1b263b);
    text-align:center;
    padding:25px;
}

nav{
    background:#162338;
    padding:15px;
    text-align:center;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    font-weight:bold;
}

nav a:hover{
    color:#00d4ff;
}

/* Hero */

.hero{
    height:80vh;

    background:
    linear-gradient(
        rgba(11,19,32,0.75),
        rgba(11,19,32,0.75)
    ),
    url("Cybersecurity-in-a-World-in-Crisis-V1-copy.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
    text-shadow:0 0 15px rgba(0,0,0,0.8);
}

.hero p{
    max-width:700px;
    font-size:1.2rem;
    text-shadow:0 0 10px rgba(0,0,0,0.8);
}

.btn{
    margin-top:25px;
    display:inline-block;
    background:#00d4ff;
    color:black;
    padding:12px 25px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
}

/* Sections */

section{
    padding:80px 10%;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    color:#00d4ff;
}

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

.card{
    background:#152238;
    padding:25px;
    border-radius:12px;
    box-shadow:0 0 15px rgba(0,0,0,0.3);
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    text-align:center;
}

.stat{
    background:#152238;
    padding:30px;
    border-radius:10px;
}

.stat h3{
    font-size:2rem;
    color:#00d4ff;
}

/* Team */

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

.member{
    background:#152238;
    padding:25px;
    border-radius:10px;
    text-align:center;
}

/* Contact */

form{
    max-width:600px;
    margin:auto;
}

input, textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:5px;
}

button{
    background:#00d4ff;
    border:none;
    padding:12px 25px;
    border-radius:5px;
    font-weight:bold;
    cursor:pointer;
}

/* Footer */

footer{
    text-align:center;
    padding:25px;
    background:#08111f;
}
