/* Header styles starts here*/
.menu-bar{
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
    transition: top 0.3s ease;
    background-color: transparent;
}
.menu-bar .btn {
    background: linear-gradient(90deg, rgba(154, 35, 103, 1) 20%, rgba(237, 61, 118, 1) 100%);
    padding: 10px 30px;
    border: 1.5px solid #9A2367;
    font-family: Be Vietnam Pro;
    font-size: 12px;
    font-weight: 600;
    line-height: 15.18px;
    color: #ffffff;
}


.menu-bar .btn:hover {
    background: transparent;
    color: #ffffff;
}


header.menu-bar.scrolled {
    background-color: #000; /* Change to your desired color */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional for shadow effect */
}

.navbar-brand img{
    width: 35px;
    height: auto;
}


.menu-bar .navbar-expand-lg .navbar-nav {
    gap: 50px;
}

.menu-bar .navbar-nav .nav-link {
    font-family: Be Vietnam Pro;
    font-size: 14px;
    font-weight: 600;
    line-height: 15.18px;
    color: #ffffff;
}

.menu-bar .dropdown-menu{
    padding: 0px;
}

.menu-bar .dropdown-menu .dropdown-item{
    padding:10px 30px;
    font-family: Be Vietnam Pro;
    font-size: 15px;
    font-weight: 600;
    line-height: 15.18px;
    color: #000;
}


.menu-bar .dropdown-item:focus, .menu-bar .dropdown-item:hover{
    color: #fff;
    background-color: #000;
}

.menu-bar .navbar-nav .nav-link.active,
.menu-bar .navbar-nav .nav-link.show {
    color: #ED3D76 !important;
}

.menu-bar .dropdown-item.active, 
.menu-bar .dropdown-item:active{
    background-color: transparent !important;
    color: inherit !important;
}
/* Header styles ends here*/


/* Footer styles starts here*/
.recall-footer .kit{
    font-family: Roboto;
    font-size: 80px;
    font-weight: 600;
    line-height: 104px;
    text-align: left;
}

.social-icons {
    gap:25px;
}

.recall-footer li a{
font-family: Roboto;
font-size: 16px;
font-weight: 500;
line-height: 25.75px;
text-underline-position: from-font;
text-decoration-skip-ink: none;
color: rgba(255, 255, 255, 1);
margin-bottom:20px;
}


.recall-footer .nav-link:focus,.recall-footer .nav-link:hover{
    color: #ED3D76;
}

.recall-footer .btop {
    border-top: 1px solid rgba(218, 218, 218, 0.1) !important;
}

.recall-footer .bgt p{
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.07px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(255, 255, 255, 0.6);
}

.footer-btn .button-wrapper {
    display: inline-flex;
    align-items: center;
  }
  
  .footer-btn .contact-button {
    --button-background: #ed3d76;
    --button-color: #fff;
  
    display: flex;
    align-items: center;
    background-color: var(--button-background);
    color: var(--button-color);
    font-family: Be Vietnam Pro;
    font-size: 14px;
    font-weight: 600;
    line-height: 17.71px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding: 12px 15px;
    border-radius: 4px 0 0 4px; /* Rounded only on the left */
    cursor: pointer;
    border: none;
    transition: box-shadow 150ms cubic-bezier(0.61, 1, 0.88, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 3px 7px 1px rgba(50, 50, 50, 0.25);
  }

  .footer-btn .contact-button:hover{
    color: #ed3d76;
    background: #fff;
  }
  
  .footer-btn .contact-button span {
    padding-right: 1rem;
    color: white;
  }
  
  .footer-btn .arrow-button {
    background-color: #ed3d76; /* Background for the arrow section */
    display: flex;
    align-items: center;
    padding: 8.7px 20px;
    border: none;
    border-left: 1px solid #ffffff; /* Divider between button text and arrow */
    border-radius: 0 4px 4px 0; /* Rounded only on the right */
    cursor: pointer;
    transition: box-shadow 150ms cubic-bezier(0.61, 1, 0.88, 1);
  }
  
  .footer-btn .arrow-icon {
    width: 14px;
    height: 14px;
  }
  
  .footer-btn .button-wrapper:hover .arrowPacman-clip {
    animation: pacman 0.8s cubic-bezier(0.55, 0, 0.21, 1) infinite;
  }
  
  .footer-btn .arrowPacman-clip {
    display: flex;
    transform: translateX(-10px);
    overflow: hidden;
    position: relative;
    left: 10px;
  }
  
  @keyframes pacman {
    0% {
      transform: translateX(-20px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  
  

/* Footer styles ends here*/



/* For mobile and tablet (screen width less than 992px) */
@media (max-width: 991px) {

    /* Hide the default hamburger icon when it's active */
    .navbar-toggler-icon {
        display: block;
    }

    /* When navbar toggler is collapsed, show the X icon */
    .navbar-toggler.collapsed .navbar-toggler-icon {
        background-image: none; /* Remove default hamburger icon */
        display: none;
    }

    /* Create X icon when the navbar is open */
    .navbar-toggler.collapsed::before {
        content: '×';
        font-size: 25px;
        color: #fff; /* You can adjust the color here */
        display: block;
        text-align: center;
        padding: 0px 3px;
    }

    /* Dropdown menu will show when clicked for mobile/tablet */
    .nav-item.dropdown .dropdown-menu {
        display: none; /* Hide by default */
    }

    .nav-item.dropdown.show .dropdown-menu {
        display: block;
    }

    /* Additional styling for scroll effect for mobile/tablet */
    header.menu-bar.scrolled {
        background-color: #333; /* Example background color change when scrolled */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s, box-shadow 0.3s;
    }
}

/* Tablet styles */

@media only screen and (min-width: 768px) and (max-width:1200px) {
    .navbar{
        background: #000;
    }
    .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-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-toggler{
        border: 1.5px solid #fff;
        font-size: 15px;
    }
    .recall-footer .kit{
        font-size: 70px;
        line-height: 80px;
    }
    
    .menu-bar .navbar-expand-lg .navbar-nav {
    gap: 30px;
            margin-top: 20px;
}

.menu-bar .btn{
    margin-top:20px;
}



}


/* Mobile styles */

@media only screen and (max-width: 767px){
   .navbar{
        background: #000;
    }
    .menu-bar .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }
    .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-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-toggler{
        border: 1.5px solid #fff;
        font-size: 15px;
    }
    .bgt{
        flex-direction: column;
        gap: 20px;

    }
    .recall-footer li a{
        margin-bottom: 10px;
    }
    .recall-footer .kit{
        font-size: 40px;
        line-height: 55px;
    }
    .recall-footer .sp-100{
        gap:30px;
    }
}