* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(120deg, #001f3f, #ff0000);
  color: white;
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 180px;
}

nav a {
  color: #f4f400;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #fff;
}

#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('assets/1.png') center/cover no-repeat;
  filter: blur(6px);
  z-index: 1;
}

#home .glass-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  color: white;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

#home .glass-box h1 {
  font-size: 36px;
  color: #f4f400;
}

.cta-button {
  display: inline-block;
  background: #f4f400;
  color: #001f3f;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  background: #ff0;
}

.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  color: #f4f400;
  margin-bottom: 30px;
}

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

.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.contact input, .contact textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.contact button {
  background: #f4f400;
  color: #001f3f;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact button:hover {
  background: #e6e600;
}

footer {
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

@keyframes fadein {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}