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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0c0f14;
    color: #f5f5f5;
    line-height: 1.6;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #ff7a00;
}

header img {
    height: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #ff7a00;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: linear-gradient(120deg, #000 40%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,122,0,0.2), transparent 60%);
    animation: glowMove 8s infinite linear;
}

@keyframes glowMove {
    0% { transform: translate(-20%, -20%); }
    50% { transform: translate(0%, 0%); }
    100% { transform: translate(-20%, -20%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #ff7a00;
    padding: 14px 30px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

.btn:hover {
    background: #ffa033;
}

.section {
    padding: 120px 10%;
}

.section h2 {
    color: #ff7a00;
    margin-bottom: 40px;
    font-size: 34px;
}

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

.card {
    background: #141820;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #222;
    transition: 0.3s;
}

.card:hover {
    border-color: #ff7a00;
    transform: translateY(-6px);
}

footer {
    background: #000;
    padding: 40px 10%;
    text-align: center;
    border-top: 2px solid #ff7a00;
    font-size: 14px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: none;
    background: #1c212c;
    color: #fff;
}

button {
    background: #ff7a00;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
}.gallery img{
  width: 100%;
  border-radius: 6px;
  border: 1px solid #222;
  transition: 0.3s;
}

.gallery img:hover{
  border-color: #ff7a00;
  transform: scale(1.02);
}

body { 
  padding-top: 100px; }