.navSect {
    height: 11vh;
    margin: 0;
    padding: 0;
}

nav {
    background-color: var(--boxBG) !important;
}


.navbar-toggler {
    border: 1px solid white !important;
    outline: none !important;
}

.navbar-toggler-icon,
.navbar-toggler {
    color: white !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

nav img {
    height: 60px;
    margin-left: 10px;
}

nav a {
    color: white !important;
    transition: 0.5s !important;
}

nav a:hover {
    transition: 0.5s !important;
    color: var(--hColor) !important
}

nav .form-control.me-2 {
    background-color: transparent !important;
    color: white;
    outline: none;
}

nav .form-control.me-2::placeholder {
    color: white;
}

nav .dropdown-menu {
    background-color: var(--boxBG);
    border: 1px solid white;
}

nav .dropdown-menu .dropdown-item {
    background-color: transparent !important;
}

nav .dropdown-menu .dropdown-item:hover {
    color: var(--hColor) !important;
}

nav .btn {
    color: white;
    border: 1px solid white;
    transition: 0.5s;
}

nav .btn:hover {
    background-color: white;
    color: var(--hColor) !important;
}
@media screen and (max-width: 991px) {
    nav {
        
    }
}

/* hero */













.search-wrapper {
    position: relative;
    display: inline-block;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--hColor);
    font-size: 18px;
    pointer-events: none;
}

.search-click {
    background-color: transparent;
    color: var(--hColor);
    border: 1px solid white;
    outline: none;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    padding: 10px 10px 10px 45px;
    /* space for icon */
    transition: all 0.5s ease;
}

.search-click:focus {
    width: 300px;
}






.footer {
    background: var(--BG1);
    color: white;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: left;
}

.footer h3 {
    color: var(--hColor);
    font-size: 18px;
}

.footer p,
.footer a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    color: #007bff;
}

.social-icons a {
    margin-right: 10px;
    color: var(--hColor);
    font-size: 18px;
}

.social-icons a:hover {
    color: #007bff;
}

.newsletter input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: transparent;
    color: var(--hColor);
    outline: none;
    border-radius: 5px;
    margin-top: 10px;
}

.newsletter button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.newsletter button:hover {
    background: #0056b3;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    background: var(--BG1);
    color: white;
}