/* menu css  */

#menu-bar .brand {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;

}

.page-header {
    background-color: #fff;
    z-index: 999;
    position: relative;
}

a.brand img {
    width: 200px;
}

#nav-bar .brand img {
    height: 45px;
}

#menu-bar .navbar {
    z-index: 999999;
    position: static;
}

#menu-bar .header {
    position: unset;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    z-index: 99999;
}


.wrapper {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 90px;
    padding: 10px 30px;
    margin: 0 auto;

}

.left-area {
    display: flex;
    justify-content: center;
}

.navbar .menu {
    margin-top: 0;
    margin-bottom: 0;
}


#menu-bar .menu-item {
    display: inline-block;
    margin-left: 25px;
    /* position: relative; */
}

#menu-bar .menu-item:hover{
    color:#F26522;
}

#menu-bar .menu-item a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}


#menu-bar .menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 6px;
    font-size: 16px;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: #000000;
    transition: all 0.3s ease-in-out;
}

#menu-bar .menu-link a {
    text-decoration: none;
    color: #000000;
}

#menu-bar .menu-link>i.fas {
    font-size: 16px;
    margin-left: 4px;
    color: inherit;
}

#menu-bar .menu-link:hover {
    outline: none;
    color: var(--colorPink);
}

#menu-bar .menu-link:hover a {
    outline: none;
    color: var(--colorPink);
}

.header-btns {
    display: flex;
    gap: 7px;
}


#menu-bar .submenu-link {
    font-size: 18px;
    font-weight: 600;
    line-height: inherit;
    cursor: pointer;
    color: #1b1f22;
}

#menu-bar .submenu-link i {
    font-size: 14px;
    margin-left: 10px;
}

#menu-bar .submenu-item .submenu-desc {
    font-size: 15px;
    color: #3d4751;
}

#menu-bar .submenu-item:hover .submenu-link,
#menu-bar .submenu-item:hover .submenu-desc {
    color: var(--colorPink);
}

#menu-bar .submenu {
    position: absolute;
    top: 83px;
    /* right: 10%; */
    width: 40%;
    height: auto;
    padding: 15px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    /* border-top: 2px solid #e1e1e1; */
    box-shadow: 0px 2px 3px 3px #00000014;
    border-radius: 20px;
}




#menu-bar .noHover:hover .submenu-link,
#menu-bar .noHover:hover .submenu-desc {
    color: #000;
}

#menu-bar .submenu-item {
    display: block;
    margin-top: 16px;
    padding: 5px 0px;
    color: #3d4751;
    text-decoration: none;
    list-style: none;
    transition: .4s all;
}

#menu-bar .submenu-item:hover {
    padding-left: 6px;
    color: #f26522;
}

#menu-bar .submenu-item i {
    font-size: 11px;
    margin-right: 5px;
    color: #b306de6f;
    transition: .4s all;
}

#menu-bar .submenu-item:hover i {
    color: #b306de;
}

/* #menu-bar .submenu-item:hover {
    background-color: var(--colorPink);
    color: #fff;
} */

/* #menu-bar .submenu-item:hover .submenu-link {
    color: #fff;
} */


.menu-drop::after {
    content: "\21AA";
    position: absolute;
    right: 20px;
    display: none;
}


.close {
    position: absolute;
    top: 16px;
    right: 5%;
    display: none;
    z-index: 99999;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid var(--colorPurple);
    padding: 3px 17px;
    border-radius: 3px;
}

.close i {
    font-size: 14px;
}

.brand-nav img {
    height: 50px;
    margin-left: 15px;
    margin-bottom: 20px;
    margin-top: 0px;
    display: none;
}




#menu-bar .burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 2rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

#menu-bar .burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.5px;
    opacity: 1;
    border: none;
    outline: none;
    background: #fff;
}

#menu-bar .burger-line:nth-child(1) {
    top: 0px;
    width: 80%;
}

#menu-bar .burger-line:nth-child(2) {
    top: 0.5rem;
    width: 100%;
}

#menu-bar .burger-line:nth-child(3) {
    top: 1rem;
    width: 70%;
}


#menu-bar .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}


.page-header.is-sticky {
    position: fixed;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    opacity: 1;
    animation: slideDown 0.3s ease-out;
    z-index: 999;
    width: 100%;
    top: 0;
}

.page-header .logo-img {
    height: 40px;
    filter: brightness(0) invert(1);

}

.page-header.is-sticky a.brand img {
    filter: brightness(1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.page-header.is-sticky #menu-bar .menu-link {
    color: #1F243C;
}

.page-header.is-sticky #menu-bar .menu-link a {
    text-decoration: none;
    color: #1F243C;
}

/* .page-header.is-sticky #menu-bar .submenu {
    background-color: var(--colorPurple);
    color: #fff;
} */

/* .page-header.is-sticky #menu-bar .submenu-item:hover {
    background-color: var(--colorPink);
    color: #fff !important;
    transition: .2s all;
} */

/* .page-header.is-sticky #menu-bar .submenu-item:hover .submenu-link {
    color: #fff !important;
} */

.page-header.is-sticky #menu-bar .burger-line {
    background: #1F243C;
}



@media only screen and (max-width: 992px) {

    .page-header {
        overflow-x: hidden;
    }

    .wrapper {
        display: flex;
        width: 100%;
        justify-content: inherit;
        /* background-color: #EE4466; */
        padding: 10px 0;
    }

    a.brand img {
        height: auto;
    }

    .mbl-header {
        display: flex;
        justify-content: space-between;
    }

    #menu-bar .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 90%;
        height: 100%;
        z-index: 99999;
        opacity: 0;
        overflow-y: scroll;
        visibility: hidden;
        background-color: #f7f7f7;
        transition: all 0.5s ease;
    }

    #menu-bar .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }

    #menu-bar .navbar.active .submenu .submenu-link {
        padding: 8px 0;
    }

    .left-area {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
        /* background-color: #212529; */
    }


    .header-btns {
        display: none;
    }

    /* .page-header {
        background-color: #EE4466;
    } */

    .page-header .container {
        max-width: 100%;
    }

    #menu-bar .menu {
        width: 100%;
        height: 100%;
        padding: 1rem 0;
    }

    #menu-bar .menu-item {
        display: block;
        margin: 0 auto;
    }

    #menu-bar .menu-link {
        justify-content: space-between;
        padding: 2px 20px 20px 20px;
    }

    .wrapper {
        margin: 0 auto;
        row-gap: 0rem;
    }

    #menu-bar .menu-link:hover {
        outline: none;
        color: var(--colorPink);
    }

    #menu-bar .burger {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 15px;
    }

    #menu-bar .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;

    }

    .page-header.is-sticky #menu-bar .menu-link {
        color: #1F243C;
    }

    .page-header.is-sticky #menu-bar .menu-link a {
        text-decoration: none;
        color: #1F243C;
    }

    .page-header.is-sticky #menu-bar .submenu {
        background-color: transparent;
    }

    .page-header.is-sticky #menu-bar .submenu-item:hover {
        width: 86.5% !important;
    }

    #menu-bar .submenu-item:hover {
        width: 86.5% !important;
    }

    #menu-bar .submenu {
        position: relative;
        top: -0.5rem;
        left: .5rem;
        width: 96%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        border-top: 1px solid #e1e1e1;
        color: #1F243C;
        opacity: 1;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        /* visibility: visible; */
        transform: translateY(0px);
        box-shadow: none;
        background: #fff !important;
        border-radius: 0px !important;
    }

    #menu-bar .menu-item.menu-dropdown.active .submenu {
        visibility: visible;
        visibility: visible;
        backface-visibility: hidden;

    }

    #menu-bar .submenu-link {
        color: #1F243C;
        font-weight: bold;
    }

    .close {
        display: block;
        background-color:white;
    }

    .close i {
        color: var(--colorPurple) !important;
    }

    .menu-link i {
        display: none;
    }

    #menu-bar .submenu-item {
        padding: 5px 10px;
    }

  .menu-drop::after {
    content: "\f107"; /* Unicode for fa-angle-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* 900 is required for solid icons */
    position: absolute;
    right: 20px;
    display: block;
}


    .brand-nav img {
        display: block;
    }

    #menu-bar .burger-line {
        background-color: #1F243C
    }
}


@media only screen and (min-width: 993px) {
    #menu-bar .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible !important;
        transform: translateY(0);
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
    }


}

@media only screen and (min-width: 992px) and (max-width: 1100px) {
    .left-area {
        display: flex;
        justify-content: left;
    }

    #menu-bar .menu-item {
        margin-left: 15px;
    }

    #menu-bar .menu-link>i.fas {
        font-size: 16px;
        margin-left: 0px;
        color: inherit;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .phone {
        display: none;
    }

    .right-area {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}


@media screen and (min-width: 1599px) and (max-width:3200px) {
    .container-fluid {
        width: 1600px !important;
    }
}

.header-btns {
    background: linear-gradient(to right, #1E00FF, #B206DE);
    padding: 8px 14px;
    margin-left: 40px;
    text-decoration: none;
    color: #fff;
    border-radius: 7px;
}

.header-btns:hover {
    color: #fff;
}


.submenu_subItem {
    display: flex;
    gap: 10px;
    align-items: center;
}

.g_color {
    color: #B206DE;
}

.header-service-content .head-title {
    font-size: 22px;
    color: #1b1f22;
    font-weight: 600;
    line-height: 1;
}

.header-service-content p {
    color: #3d4751;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    padding-bottom: 6px;
}

.navbar ul{
    padding: 0px;
}


.left-logo-sec img{
    width: 50px;
}




.menu_icon img{
    width: 30px;
}


/* footer */
.footer {
    background: #fff;
    color: #343a40;
    padding: 60px 40px 30px;
    border-top: 1px solid #eee;
  }

  footer a{
    text-decoration: none;
    color: black;
  }
  

  footer a:hover{
    color:#F26522;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  footer h6{
    font-size: 22px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 180px;
  }
  
  .footer .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .footer .dot {
    color: #d13bd2;
    font-size: 26px;
  }
  
  .footer .desc {
    margin: 15px 0;
    line-height: 1.6;
    color: #6c757d;
  }
  
  .social-icons a {
    margin-right: 10px;
    font-size: 16px;
    color: #343a40;
    text-decoration: none;
  }
  
  .footer-col h4 {
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col li {
    margin-bottom: 10px;
    color: #6c757d;
    font-size: 14px;
  }
  
  .hot {
    background: #343a40;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 12px;
    margin-left: 6px;
  }
  
  .newsletter input {
    padding: 10px 40px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    font-size: 14px;
  }
  
  .newsletter-input {
    position: relative;
    margin-top: 10px;
  }
  
  .newsletter-input i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
  }
  
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    color: #6c757d;
  }
  
  .footer-bottom a {
    color: #343a40;
    text-decoration: underline;
    margin-left: 20px;
  }
  

.footer-logo{
    width: 240px;
    margin-bottom: 30px;
    object-fit: contain;
}

.flag-icon{
    width: 50px;
    height: 30px;
    object-fit: contain;
}

/* Floating Contact Button Styles */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.floating-contact-btn__toggle {
  display: none;
}

.floating-contact-btn__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b00, #ff3d00);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.floating-contact-btn__button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
}

.floating-contact-btn__icon {
  font-size: 24px;
  transition: all 0.3s ease;
}

.floating-contact-btn__text {
  display: none; /* Hide the "Contact Us" text completely */
}

.floating-contact-btn__options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-contact-btn__option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  color: #ff6b00;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 20px;
}

.floating-contact-btn__option:hover {
  background: #ff6b00;
  color: white;
  transform: scale(1.1);
}

/* Show options when checkbox is checked */
.floating-contact-btn__toggle:checked ~ .floating-contact-btn__options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Button still stays circular */
.floating-contact-btn__toggle:checked ~ .floating-contact-btn__button {
  background: linear-gradient(135deg, #ff6b00, #ff3d00);
  transform: rotate(0);
}

/* Rotate icon on toggle */
.floating-contact-btn__toggle:checked ~ .floating-contact-btn__button .floating-contact-btn__icon {
  transform: rotate(360deg);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

.floating-contact-btn__button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

.floating-contact-btn__toggle:checked ~ .floating-contact-btn__button::after {
  display: none;
}


#menu-bar .submenu_width_40.active {
    max-height: max-content;
    visibility: visible !important;
}

#menu-bar .submenu.active {
    max-height: max-content;
    visibility: visible !important;
}



/* Active state for toggled submenu_width_40 */
.menu-link.active+.submenu {
    max-height: max-content;
    visibility: visible !important;
}

@media(max-width:768px){
    .menu-link.active+.submenu {
            width: 100% !important;
    }

    #menu-bar .submenu-item{
        margin-top: 10px !important;
    }


}








