body{
    background-color: #000;
}



/* Container */
.contact-container {
    width: 60%;
    max-width: 850px;
    margin: auto;
}


/* Titles */
.contact-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-container p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}


/* Inputs */
form {
    text-align: left;
}

label {
    font-size: 18px;
    display: block;
    margin: 20px 0 8px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 8px;
    background: #1a1a1a;
    color: #f5f5f5;
    font-size: 18px;
    outline: none;
}


/* Radio Section */
form h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

/* Grid For Radio Options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 50px;
    margin-left: 10px;
}

.options-grid label {
    display: flex;
    align-items: center;
    font-size: 18px;
    gap: 10px;
    cursor: pointer;
}

input[type="radio"] {
    width: 18px;
    height: 18px;
}






.navbar {
      position: absolute;
      top: 0;
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
      gap: 210px; ;
    }

    .logo {
      font-size: 1.3rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo span {
      color: #ff9f6e;
    }

 nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 0;
  
 /* background: linear-gradient(90deg, #420454,#0e081d);*/
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

nav button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
}

.arrow {
  transition: 0.3s;
}

nav ul:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  color: black;
  min-width: 160px;
  padding: 10px 0;
  border-radius: 8px;
  display: none;
  animation: fadeIn 0.3s ease;
}

nav ul:hover .dropdown {
  display: block;
}

/* Dropdown items */
.dropdown li {
  padding: 10px 15px;
}

.dropdown li:hover {
  background: #efefef;
}

.dropdown a {
  text-decoration: none;
  font-size: 18px;
  color: black;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

    .btn-signup {
      /*background: #ffffff;*/
      color: #ffffff;
      padding: 0.5rem 1rem;
      border-radius: 0.6rem;
      font-weight: 50;
    }
.hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .btn-primary {
      background: #080606;
      color: #ece3e3;
      padding: 0.8rem 1.6rem;
      border-radius: 0.7rem;
      font-weight: 500;
      text-decoration: none;
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid rgb(240, 238, 238);
      color: #ffffff;
      padding: 0.8rem 1.6rem;
      border-radius: 0.7rem;
      text-decoration: none;
    }
/* Section Layout */
.contact-section {
    background: #000; /* page black background */
    padding: 80px 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #e6e3e3;
    display: flex;
    justify-content: center;
    text-align: center;
}


.form-section {
    background:#000; /* page background */
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.contact-form {
    width: 80%;
    max-width: 900px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.field-label {
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}

.message-field {
    width: 100%;
    height: 220px;
    background:#1a1a1a;
    color: #fff;
    border-radius: 12px;
    border:none;
    padding:20px;
    font-size: 18px;
    outline:none;
    resize: vertical;
}

.message-field::placeholder{
    color:#c5c5c5;
}

.terms-row {
    display:flex;
    align-items:center;
    gap:12px;
    margin:20px 0;
}

.terms-checkbox {
    width:22px;
    height:22px;
    border:2px solid #fff;
    cursor:pointer;
}

.terms-text {
    font-size:18px;
}

.terms-text a{
    color:#fff;
    text-decoration: underline;
}

.submit-btn {
    display:block;
    margin:30px auto 0;
    background:#fff;
    color:#000;
    border:none;
    padding:14px 40px;
    font-size:20px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    transform:scale(1.05);
    opacity:.9;
}


footer {
    background: #0d0d1a;
    color: #fff;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-col p {
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #b4b4ff;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social a {
    display: block;
    margin: 6px 0;
    color: #b4b4ff;
    text-decoration: none;
    transition: .3s;
}

.social a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #2a2a3e;
    padding-top: 15px;
    color: #ccc;
}
