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

body {
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
}



/* BACKGROUND VIDEO */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(1px);
}

/* overlay clair */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.75);
  z-index: -2;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
}

.navbar nav a {
  color: #ccc;
  margin: 0 12px;
  text-decoration: none;
}

.auth button {
  margin-left: 10px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #4da3ff;
  color: #4da3ff;
  padding: 6px 14px;
  border-radius: 20px;
}

.btn-primary {
  background: #4da3ff;
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
}

/* GLASS EFFECT */
.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* CAROUSEL */
.carousel {
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 25px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-track img {
  min-width: 100%;
  height: 280px;
  object-fit: cover;
}

/* MAIN */
.container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px;
}

/* CARDS */
.info-card, .form-card {
  width: 50%;
  padding: 30px;
  border-radius: 20px;
}

.info-block {
  margin: 20px 0;
}

.field {
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(0,0,0,0.4);
  color: #fff;
}

textarea {
  height: 100px;
  resize: none;
}

.checkbox {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #4da3ff;
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
}
.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
}
/* ===================== */
/* NAVBAR MENU (NEW)     */
/* ===================== */

.glass-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 55px;
  object-fit: contain;
}

/* MENU */
.nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav li {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  position: relative;
}

/* arrow */
.nav li span {
  font-size: 12px;
  margin-left: 4px;
}

/* underline hover */
.nav li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #0d8b6b;
  transition: 0.3s ease;
}

.nav li:hover::after {
  width: 100%;
}

/* SEARCH */
.search {
  font-size: 18px;
  cursor: pointer;
  color: #222;
}


