/*=====================================
            menu.css
======================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  padding-top: 70px;
}

.container {
  width: 90%;
  margin: auto;
}

.menu-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.menu-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.menu-logo a {
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  color: #111;
}

.menu-list {
  display: flex;
  list-style: none;
  gap: 35px;
  margin-top: 12px;
}

.menu-list li {
  position: relative;
}

.menu-list a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.menu-dropdown > a i {
  font-size: 12px;
  margin-left: 5px;
}

.submenu {
  position: absolute;
  top: 190%;
  left: 0;
  background: #fff;
  width: 220px;
  list-style: none;
  border-radius: 10px;
  box-shadow: 0 0px 9px 1px rgb(0 0 0 / 28%);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: 0.35s;
}

.submenu li {
  padding: 15px;
}

.menu-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-whatsapp {
  font-size: 30px;
  color: #25d366;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #111;
}

/* Mobile */

.mobile-menu {
  position: fixed;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100vh;

  background: #fff;

  transition: 0.4s;

  display: flex;
  flex-direction: column;

  z-index: 9999;
}

.mobile-menu.active {
  left: 0;
}

.mobile-top {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0px 20px;

  border-bottom: 1px solid #ddd;
}

.close-menu {
  font-size: 30px;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu a {
  display: block;
  padding: 18px 25px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.mobile-title {
  display: flex;

  justify-content: space-between;

  padding: 18px 25px;

  cursor: pointer;

  font-weight: 600;
}

.mobile-submenu {
  max-height: 0;

  overflow: hidden;

  transition: 0.4s;

  background: #f7f7f7;
}

.mobile-dropdown.active .mobile-submenu {
  max-height: 400px;
}

.mobile-dropdown.active i {
  transform: rotate(180deg);

  transition: 0.3s;
}

.mobile-call {
  /* margin-top: auto; */
  padding: 20px;
}

.mobile-call a {
  display: block;

  background: #d50000;

  color: #fff;

  text-align: center;

  padding: 16px;

  border-radius: 50px;

  text-decoration: none;

  font-size: 18px;
}

@media (max-width: 991px) {
  .menu-list {
    display: none;
  }

  .menu-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}
.menu-logo img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

.btn-primary {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #d50000 !important;
    --bs-btn-border-color: #d50000 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #d50000 !important;
    --bs-btn-hover-border-color: #d50000 !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d50000 !important;
    --bs-btn-active-border-color: #d50000 !important;
    --bs-btn-active-shadow: inset 0 3px 5px #00000020;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #d50000 !important;
    --bs-btn-disabled-border-color: #d50000 !important;
}
/* call button */
/* Floating Call Button */
.call-btn{
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #ffd200;
    color: #ff0000;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    font-family: Arial, sans-serif;
    box-shadow: 0 5px 15px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .3s ease;
    animation: pulse 1.8s infinite;
}

.call-btn:hover{
    background: #218838;
    transform: translateY(-3px);
}

@keyframes pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(40,167,69,.6);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(40,167,69,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(40,167,69,0);
    }
}

@media (max-width:768px){
    .call-btn{
        right:15px;
        bottom:15px;
        padding:12px 18px;
        font-size:15px;
    }
}
html{
    scroll-behavior: smooth;
}
.mobile-menu{
    right:-100%;
    transition:.4s;
}

.mobile-menu.active{
    right:0;
}