.top-bar {
    background-color: #C5A24D; /* gold color */
    color: #fff;
    font-size: 14px;
    padding: 20px 20px;
}

.top-bar a {
    color: #fff;
    margin-left: 10px;
}

.navbar-brand img {
  max-height: 160px;  /* keeps navbar height consistent */
  width: auto;       /* prevents stretching */
  object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
    overflow: hidden;
}

/* Video Background */
.hero video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}



.active {
  color: #C5A24D !important;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.bitn-custom {
    background-color: #C5A24D;
    color: #fff;
    font-weight: bold;
    padding: 20px 25px;
    /* border-radius: 5px; */
    /* text-transform: capitalize; */
    text-decoration: none;
}

.bitn-custom:hover {
    background-color: transparent;
    color: #C5A24D;
    border: 1px solid #C5A24D;
}

.some {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-block: 6rem;
    background-color: #C5A24D;
    color: white;
}

.some h2 {
    font-size: 50px;
}

.some5 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-block: 6rem;
   background: linear-gradient(
  rgba(236, 231, 219, 0.47),
  rgba(163, 131, 54, 0.47)
);
    color: black;
}

.some5 h2 {
    font-size: 60px;
}

.some5 p {
    font-size: 20px;
}

.eflex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer {
    display: flex;
    gap: 555px;
    padding-block: 5rem;
    background-color:  #BA9D59;;
    color: white;
}

.footer input {
    padding: 15px;
    background-color: transparent;
    width: 550px;  
    border: 1px solid white;
    color: white;
    font-weight: 500;
}

form {
    display: flex;
    gap: 10px;
}

.footer .bitn {
    background-color: #fff;
    color: black;
    width: 250px;
}

.footer .bitn:hover {
    background-color: transparent;
    color: white;
}

.bottom-nav {
    padding: 20px;
   
    gap: 50px;
   
    background-color: rgb(255, 255, 253);
}

.bottom-nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}



.form-wrapper {
  background: #fdfcef;
  border: 1px solid #eee;
  border-radius: 0;
}

.form-label {
  font-size: 14px;
  font-weight: normal;
  color: #333;
}

.form-control {
  background: #fdfcef;
  border: 1px solid #000;
  border-radius: 0;
  padding: 12px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #000;
}

textarea.form-control {
  resize: none;
}

.submit-btn {
  background: #b5a338;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 0;
  padding: 18px;
}

.submit-btn:hover {
  background: #9d902f;
  color: #fff;
}


@media (max-width: 767px) {
    form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    
    .footer input {
        width: fit-content;  
    }

    .bottom-nav {
        flex-direction: column;
        gap: 10px;
    }

}