@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

.form-container input,
.form-container select, label, button {
    font-family: 'Poppins';
}

.nav-link:hover {
    color: #F59E0B !important;
}
.navbar-custom {
    background-color: rgba(229, 231, 235, 0.3);
    backdrop-filter: blur(16px);
}
.dropdown-menu {
    min-width: 250px;
}
.dropdown-item {
    display: flex;
    align-items: center;
}
.dropdown-item img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.navbar-toggler {
    border: 2px solid gold !important; /* Default border */
    background-color: gold !important; /* Default background */
    color: white !important; /* Default text color */
    transition: all 0.3s ease-in-out; /* Smooth transition */
    outline: none !important; /* Remove outline */
    box-shadow: none !important; /* Remove Bootstrap's focus effect */
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler[aria-expanded="true"] {
    border-color: gold !important; /* Keep the gold border */
    background-color: gold !important; /* Keep gold background */
    outline: none !important; /* Remove outline */
    box-shadow: none !important; /* Ensure no white border */
}
.max-width-50 {
    max-width: 60%;
}
.bg-gold {
    background-color: #FBBF55;
}

/* form css */

.custom_padding {
    padding: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-control {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 0.75rem;
    z-index: 1111111;
    
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
textarea.form-control {
    min-height: 150px;
}
.custom-input {
    background-color: #000 !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    padding: 12px !important;
    width: 50px;
  }
  
.custom-input:focus {
    background-color: #000 !important;
    border-color: #fff !important;
    color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25) !important;
  }
  
.submit-btn {
    background: #FBBF55;
    border: none;
    padding: 0.75rem;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
  }
  
.submit-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);

}


.hero-section {
    min-height: 100vh;
}
#mainContent {
    margin-top: 12vh;
    z-index: 9;

}




@media (max-width: 768px) {
    .max-width-50 {
        max-width: 100%;
    }
    .hero-section {
        min-height: 100vh;
    }
    #mainContent {
        margin-top: 12vh;
    }
    .decor_hide {
        display: none;
    }
    .custom_padding {
        padding: 1.5rem;
    }
    
}