.navbar {
  color: #f5f5dc; /* cream */
  /* box-shadow: 0 3px 10px rgba(255, 255, 255, 0.05); */
  position: absolute;
  width: 100%;
}
.logo-img {
  max-width: 200px;  /* adjust based on your placement */
  height: 100px;
  width: 120px;
    scale:0.8
}
.navbar a {
  color: white;
}


.navbar a:hover {
  color: #f9f1e7; /* same as default */
  transform: scale(1.05); /* optional: adds subtle interaction */
}


.contact-container {
  background: linear-gradient(to bottom right, #262b33cf, #121212);
  padding: 80px 20px;
  color: white;
  text-align: left;
}


.form-section {
    background-color: #ffffff;
    color: #000000;
    border-radius: 10px;
    padding: 40px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
    border-color: #000;
}

.send-btn {
    color: black;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.send-btn-icon {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 50%;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: #ffc700;
}

.send-btn:hover .send-btn-icon {
    background-color: #ffc700;
    color: #000;
    transform: translateX(2px);
}

.send-btn:hover {
    color: #ffc700;
}

.send-btn:hover {
    text-decoration: none;
}