* {
	margin: 0px;
	padding: 0px;
}

@font-face {
    font-family: 'RobotoBlack';
    src: url('/front/assets/google-fonts/static/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* style.css (header related) */

/* =========== base header =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1080;
  background: #07374D;
  border-bottom: 0; /* we'll use shadow for bottom */
}

/* bottom shadow always */
.lower-header {
  padding: 12px 0;
  /*box-shadow: 0 6px 18px rgba(3,12,18,0.12);*/
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* logo */
.site-logo { height: 54px; width: auto; display:block; }

/* left-wrap spacing */
.left-wrap { gap: 20px; display:flex; align-items:center; }

/* main nav */
.main-nav .nav-list { gap: 16px; display:flex; align-items:center; margin:0; padding:0; }
.main-nav .nav-item { list-style:none; }
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background .12s ease, color .12s ease, transform .12s ease;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}

/* contact button on right */
.btn-contact {
  background: linear-gradient(90deg,#00a8ff,#0066d6);
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,100,200,0.12);
  border: none;
}

/* auth links */
.header-auth-link {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight:600;
  margin-right:10px;
}

/*new*/
.mega-inner {
    display: none; /* important for slideDown */
}

.caret-icon {
    display: inline-block;
    transform: rotate(0deg);     /* default = right */
    transition: transform .25s ease;
}


/* mobile toggle styling */
.mobile-menu-toggle { color:#fff; border: none; background: transparent; }

/* =========== MEGA POPUP CARD =========== */
.mega-popup {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  max-width: 420px;
  background: #fff;
  color: #222;
  border-radius: 10px;
  padding: 14px;
  display: none;
  box-shadow: 0 18px 40px rgba(2,8,23,0.16);
  z-index: 9999;
  transition: opacity .12s ease, transform .12s ease;

  /*new*/
  /*opacity: 0;
  transform: translateY(-12px);
  max-height: 0;
  overflow: hidden;
  transition: 
    opacity .28s ease,
    transform .28s ease,
    max-height .34s ease;*/
}

/* small pointer */
.mega-popup::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: -6px;
  left: 26px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 6px rgba(0,0,0,0.03);
}

/* popup head */
.popup-head { display:flex; justify-content:space-between; align-items:center; gap:10px; }
.popup-title { font-size:15px; color:#0b3b44; font-weight:700; }
.popup-count { color:#6c757d; }

/* popup list */
.popup-list { margin-top:8px; padding:0; list-style:none; }
.popup-item { padding:8px 6px; border-radius:6px; transition:background .09s ease; }
.popup-item + .popup-item { margin-top:6px; }
.popup-link { color:#1f2933; text-decoration:none; display:block; }
.popup-link:hover { color:#0069d9; text-decoration:underline; }

/* show popup on class 'open' */
.mega-popup.open {
  display:block; opacity:1;
  transform: translateY(0);

  /*new*/
  /*opacity: 1;
  transform: translateY(0);
  max-height: 600px;*/ /* adjust if needed */
}

/* =========== MOBILE MENU =========== */




/*mew*/
/* Overlay & menu */
.custom-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 1070;
}
.custom-mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1080;
    transition: left .28s ease;
    overflow-y: auto;
}
.custom-mobile-menu.show { left: 0; }

/* Header */
.custom-mobile-menu-header {
    padding: 12px;
    border-bottom: 1px solid #eee;
}
.custom-mobile-menu-close { color: #222; font-size: 18px; }

/* Body & Buttons */
.custom-mobile-menu-body { padding: 10px; }
.custom-mobile-menu-body .btn {
    font-size: 14px;
    font-weight: 600;
}

/* Mobile main links */
.mobile-item { padding: 0; }
.mobile-link {
    color: #222;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    font-weight: 600;
    transition: background .2s ease;
}
.mobile-link:hover {
    background: rgba(0,0,0,0.03);
    color: #0069d9;
    text-decoration: none;
}

/* Remove borders between items */
.mobile-item + .mobile-item { border-top: none; }

/* Submenu */
.mobile-submenu {
    padding-left: 0;
    margin-top: 0;
}
.mobile-submenu li {
    padding: 6px 0;
}
.mobile-submenu a {
    color: #222;
    text-decoration: none;
    display: block;
    padding-left: 12px;
    font-size: 14px;
    transition: background .2s ease;
}
.mobile-submenu a:hover {
    background: rgba(0,0,0,0.03);
    color: #0069d9;
}

/* Arrow toggle effect */
.mobile-link i.fa-chevron-down {
    transition: transform .3s ease;
}
.mobile-link.active i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Remove call button if any */
.mobile-item.call-button { display: none; }

/* Accessibility */
.custom-mobile-menu .mobile-link { padding: 12px 6px; font-size: 15px; }

/* Scrollbar optional styling */
.custom-mobile-menu::-webkit-scrollbar {
    width: 6px;
}
.custom-mobile-menu::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

/* Keep main links black on hover */
.mobile-item:hover > .mobile-link {
    color: white !important;
    text-decoration: none;
}

/* Keep submenu links black on hover */
.mobile-item:hover .mobile-submenu a {
    color: white !important;
    text-decoration: none;
}




/*Header end*/



/*call button*/
.call-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 150px;
        height: 55px;
        background: linear-gradient(45deg, #0c3444, #0c3444);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 35px;
        box-shadow: 0px 4px 14px rgba(0,0,0,0.3);
        font-size: 20px;
        cursor: pointer;
        z-index: 9999;
        transition: 0.3s;
        border: 3px solid #fff;
        font-weight: bold;
    }

    .call-btn:hover {
        transform: scale(1.08);
    }

    .call-btn i {
        margin-right: 8px;
        font-size: 22px;
    }

/*before footer category and services list*/
.footer-service-list a:hover {
        color: #00d4ff !important;
        padding-left: 4px;
        transition: 0.2s;
    }


/* WhatsApp button default: hidden */
#whatsappBtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    cursor: move;
    font-size: 28px;
    display: none !important; /* hidden by default */
    /*justify-content: center;
    align-items: center;*/
    transition: transform 0.2s, box-shadow 0.2s;
}

#whatsappBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}



/*mobile services home*/
#services-mobile {
  display: none;
}

