.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

/* Top bar */
.header-top-bar {
  height: 45px;
}

/* Navbar */
.navbar-brand {
  /*color: var(--base-color);*/
  /* color: var(--black); */
  color: #143CDC;
}

.header.scrolled .navbar-brand {
  /* color: #000; */
  color: #143CDC;
}

/* logo */
.headermytlogo {
  height: 45px;
}

@media (max-width: 768px) {
  .headermytlogo {
    height: 32px;
  }
}

.header.scrolled .headermytlogo {
  height: 36px;
}

.footerlogo{
  width: 100px;
  color: white;
}

.header-demo.navbar .navbar-nav .nav-item:first-child .dropdown-menu li a { 
color: var(--extra-medium-gray);
}

/* .navbar .navbar-nav .dropdown .dropdown-menu li a {  
   padding-bottom: 5px!important;
} */

.custom-shadow-v1{
    box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15);
}

.header-demo.navbar .navbar-nav .nav-link
{
    font-weight: 500!important;
	color:#000!important;
}

/*top segment nav*/

/* Top bar container */
.top-segment-nav {
    background: #000000;
    display: flex;
    align-items: stretch;
    padding: 5px 20px 0 20px;
    gap: 0;
    overflow: hidden !important;
    margin-bottom: 0;
}

.h-35px {
    height: 35px !important;
    min-height: 35px !important;
    max-height: 35px !important;
}

/* All tab links */
.top-segment-nav a.widget {
    font-size: 12px!important;
    font-weight: 500;
    color: #ffffff !important;
    padding: 0 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    box-sizing: border-box;
}

/* Hover state */
.top-segment-nav a.widget:not(.active):hover {
    color: #ffffff !important;
}

/* Active tab */
.top-segment-nav a.widget.active {
    background: #ffffff !important;
    color: #111111 !important;
    border-radius: 8px;
    position: relative;
	height: 30px;
}

/* Left concave curve */
.top-segment-nav a.widget.active::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -20px;
    width: 20px;
    height: 20px;
    background: #000000;
    border-bottom-right-radius: 20px;
    box-shadow: 10px 10px 0 10px #ffffff;
    z-index: 1;
}

/* Right concave curve */
.top-segment-nav a.widget.active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: -20px;
    width: 20px;
    height: 20px;
    background: #000000;
    border-bottom-left-radius: 20px;
    box-shadow: -10px 10px 0 10px #ffffff;
    z-index: 1;
}

/*end top segment nav*/

/*menu promo cards section v1*/

.menu-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.menu-service-card {
  background: #ddeef8;
  border-radius: 14px;
  /* padding: 32px 24px 24px; */
  padding: 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 10px;  */
  cursor: pointer;
  transition: background 0.15s;
}

.menu-service-card:hover {
  background: #c8e2f4;
}

.menu-icon-wrap {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 4px; */
}

.menu-icon-wrap svg {
  width: 54px;
  height: 54px;
  stroke: #1a6fa8;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2e45;
  margin: 0;
  text-align: center;
  line-height:1.2rem;
}

.menu-compare-link {
  font-size: 14px!important;
  color: #2280c4!important;
  text-decoration: none;
  margin: 0 auto;
}

.menu-compare-link:hover {
  text-decoration: underline;
}
/*end menu promo cards section v1*/

/*menu promo cards section v2*/

.mp-wrap {
  max-width: 500px;
}

/* ── Card stack ── */
.mp-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  /* Balanced, even padding around all sides */
  /* padding: 20px 18px 20px 20px; */
  padding: 10px 10px 20px 10px;
  text-decoration: none;
  transition: box-shadow 0.2s;
  cursor: pointer;
  /* Pre-declare shadow so transition doesn't trigger reflow */
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.mp-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.mp-card--deal {
  background: #FFF3E0;
}

.mp-card--product {
  background: #EEF1FD;
}

/* ── Media (icon/illustration area) ── */
.mp-card__media {
  width: 80px;
  /* Fluid height prevents the 'BEST DEAL' badge from overflowing out the bottom */
  height: auto; 
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* .mp-card__media svg {
  width: 80px;
  height: auto;
  display: block;
} */

/* ── Body text ── */
.mp-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Neutralizes inherited line-height properties from parent frameworks */
  line-height: 1; 
}

.mp-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0D0D0D;
  line-height: 1.35;
  margin: 0 0 4px;
}

.mp-card__sub {
  font-size: 0.84rem;
  color: #4A5568;
  line-height: 1.3;
  margin: 0;
}

/* ── Arrow button ── */
.mp-card__arrow {
  width: 46px;
  height: 46px;
  background: #0D0D0D;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.mp-card:hover .mp-card__arrow {
  background: #143CDC;
}

/* ── Footer link ── */
.mp-footer {
  margin-top: 16px;
}

.mp-footer__link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  border: 2px solid #0D0D0D;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0D0D0D;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
  width: auto !important;
}

.mp-footer__link:hover {
  border-color: #143CDC;
  color: #143CDC;
}

.mp-footer__link svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.mp-footer__link:hover svg {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .mp-card { 
    padding: 14px 14px 14px 16px; 
    gap: 12px; 
  }
  .mp-card__media { 
    width: 64px; 
  }
  .mp-card__media svg { 
    width: 64px; 
  }
  .mp-card__title { 
    font-size: 1rem; 
  }
  .mp-card__arrow { 
    width: 40px; 
    height: 40px; 
  }
}

/* ── Navigation Dropdown Overrides ── */
/* .navbar .navbar-nav .dropdown .dropdown-menu a.mp-card:hover {
  padding-left: 20px;
  color: inherit;
} */

.navbar .navbar-nav .dropdown .dropdown-menu a.mp-card:hover {
  /* Explicitly lock in all padding values so the bottom doesn't collapse */
  /* padding: 20px 18px 20px 20px; */
  padding: 10px 10px 20px 10px;  
  color: inherit;
}

.navbar .navbar-nav .dropdown .dropdown-menu a.mp-footer__link:hover {
  padding-left: 22px;
  color: #143CDC;
}

.navbar .navbar-nav .submenu-content .mega-menu ul {
  flex: 1;
}

.navbar .navbar-nav .submenu-content .mega-menu ul:last-child {
  flex: 2;
  padding-right: 0;
}

.navbar .navbar-nav .submenu-content .mega-menu {
  width: 1150px;
}

.dropdown-menu li a.mp-footer__link {
  padding-top: 5px !important;
}

ul.navbar-nav{
  margin: 0em 0px!important;
}	

/*end promo cards section v2*/


/*marquee*/

@media (max-width: 767.98px) {
    .marquee-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .marquee-content {
        width: max-content;
        white-space: nowrap;
        animation: seamless-loop 15s linear infinite;
    }
}

@media (min-width: 768px) {
    .marquee-content {
        width: 100%;
        animation: none;
    }
}

@keyframes seamless-loop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/*marquee*/


/*footer*/
.footerp{
   font-size:16px!important;	
}	
/*footer*/

/*click menu instead of hover menu*/
/* Kill any hover-triggered opening from the theme (CSS-based hover, if any) */
.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown:hover .submenu-content {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Hide menus by default */
.navbar .dropdown-menu,
.navbar .submenu-content {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

/* Show menu ONLY when JS adds .open to the parent li (via click) */
.navbar .dropdown.open .dropdown-menu,
.navbar .dropdown.open .submenu-content,
.navbar li.submenu.open .submenu-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/*click menu instead of hover menu*/

.header-demo.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-weight: 400!important;
}

.menuservicelogo {
    width: 60px;
    height: 60px;
    color: var(--od-blue);
}

/* .menuservicelogo .st0 {
    fill: none;
    stroke: currentColor;
}

.menuservicelogo .st1 {
    fill: currentColor;
}

.menuservicelogo path:not(.st0):not(.st1) {
    fill: currentColor;
} */