body {
    font-family: "Roboto Condensed", serif;
}

.navbar {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.navbar ul {
    transition: color 0.3s ease-in-out;
}

.logo {
    transition: filter 0.3s ease-in-out;
}

.btn-og {
    background-color: #ff5f00;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 640px) {
    .navbar ul {
        display: none;
    }
    .navbar ul.active {
        display: block;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active {
        display: block;
    }
}

/* Scroll Effect: Change navbar background and logo */
.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #000;
}

.h-sec{
    height: 70vh;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Start off-screen */
    width: 250px;
    height: 100%;
    background-color: #333;
    z-index: 100;
    transition: left 0.3s ease-in-out;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin-top: 50px;
}

.sidebar ul li a {
    padding: 15px;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.2s;
}

.sidebar ul li a:hover {
    background-color: #ff5f00;
}

.sidebar.active {
    left: 0; /* Move the sidebar into view */
}

.sidebar .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.bd-rd-25{
    border-radius: 25px;
}

.whtappfloat {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  z-index: 100;
}

.whtapp-float {
  margin-top: 16px;
}
