* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #0f172a;
    color: #f1f5f9;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    background: #0b1120;
    position: sticky;
    top: 0;
}

nav a {
    color: #38bdf8;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.hero {
    padding: 100px 10%;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 20px;
    font-size: 20px;
    color: #cbd5e1;
}

.button {
    margin-top: 30px;
    padding: 12px 25px;
    background: #38bdf8;
    border: none;
    color: #0f172a;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}

.section {
    padding: 80px 10%;
}

.card {
    background: #1e293b;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(56,189,248,0.3);
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
}

form button {
    background: #6366f1;
    padding: 12px;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0b1120;
    margin-top: 50px;

}
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.image-card {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.image-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.image-card p {
    padding: 15px;
    text-align: center;
    font-weight: 500;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(56,189,248,0.3);
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 42px;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    margin-top: 20px;
    font-size: 18px;
    color: #cbd5e1;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .secondary {
    background: #1e293b;
    color: #38bdf8;
    margin-left: 15px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
