body {
 margin: 0;
 font-family: 'Poppins', sans-serif;
 background: #f4f6f9;
}

/* Header */
.header, .sticky {
 position: sticky;
 top: 0;
 display: flex;
 justify-content: space-between;
 padding: 15px 30px;
 background: linear-gradient(90deg,#000,#222);
 color: #fff;
 z-index: 1000;
}

/* Hero */
.hero {
 height: 380px;
 background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
 url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
 background-size: cover;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 color: white;
 text-align: center;
}

.hero h1 {
 font-size: 38px;
 margin-bottom: 10px;
}

.hero p {
 font-size: 18px;
 opacity: 0.8;
}

/* Form (Glass Effect) */
.form-box {
 background: rgba(255,255,255,0.95);
 backdrop-filter: blur(10px);
 width: 340px;
 margin: -80px auto 40px;
 padding: 25px;
 border-radius: 15px;
 box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Inputs */
input, select {
 width: 100%;
 padding: 12px;
 margin: 8px 0;
 border-radius: 10px;
 border: 1px solid #ddd;
 outline: none;
}

/* Button */
button {
 width: 100%;
 padding: 12px;
 background: linear-gradient(90deg,#ff7a00,#ff3d00);
 color: white;
 border: none;
 border-radius: 10px;
 font-weight: bold;
 cursor: pointer;
 transition: 0.3s;
}

button:hover {
 transform: translateY(-2px);
 box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Section */
.section {
 padding: 50px 20px;
 text-align: center;
}

/* Cards */
.card {
 background: white;
 padding: 20px;
 margin: 10px;
 border-radius: 15px;
 display: inline-block;
 width: 220px;
 box-shadow: 0 8px 20px rgba(0,0,0,0.1);
 transition: 0.3s;
}

.card:hover {
 transform: translateY(-5px);
}

/* Footer */
footer {
 background: #111;
 color: #fff;
 text-align: center;
 padding: 20px;
}