@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
html {
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow: auto;
  overflow-x: hidden;
}
body {
  width: 100%;
  height: max-content;
  background: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

:root {
  --primary: #01B671;
  --secondary: #FFEC30;
  --secondaryBtns: #FFEC30;
  --black: #1a1a1a;
  --text: #333;
  --text-2: #666;
  --link: #2ea3f2;
}

/*  *//*  *//*  *//*  *//*  *//*  *//*  *//*  *//*  *//*  *//*  *//*  *//*  */
/*  */
/* PHASE ELEMENTS */
.phaseInElements {
  opacity: 0;
}

@keyframes fadeInLeft { from { opacity: 0; transform: translateX(clamp(-75px, -100%, -250px)); } to { opacity: 1; transform: translateX(0); } } .animateLeft { animation-name: fadeInLeft; animation-duration: 1s; animation-fill-mode: forwards;}

@keyframes fadeInRight { from { opacity: 0; transform: translateX(clamp(75px, 25%, 250px)); } to { opacity: 1; transform: translateX(0); } } .animateRight { animation-name: fadeInRight; animation-duration: 1s; animation-fill-mode: forwards;}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(clamp(20px, 100%, 100px)); } to { opacity: 1; transform: translateY(0); } } .animateUp { animation-name: fadeInUp; animation-duration: 1s; animation-fill-mode: forwards;}

@keyframes fadeInDown { from { opacity: 0; transform: translateY(clamp(-20px, -100%, -100px)); } to { opacity: 1; transform: translateY(0); } } .animateDown { animation-name: fadeInDown; animation-duration: 1s; animation-fill-mode: forwards;}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .animate { animation-name: fadeIn; animation-duration: 2s; animation-fill-mode: forwards;}

@keyframes underlineAnimate { from { width: 0; } to { width: 100%; } }
.underlined {
  position: relative;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.underlined::after {
  position: absolute;
  content: '';
  display: block;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 0, 0);
  opacity: 0.7;
  animation: underlineAnimate 2s ease forwards;
}

.typeWrote, .customA {
  opacity: 1;
}



/* ---------- HEADER ---------- */

#header {
  background: #f5f5f5;
  position: sticky;
  top: 0;
  width: 100%;
  font-size: 15px;
  z-index: 1000;
  transition: paddingTop 2s cubic-bezier(0.19, 1, 0.22, 1);
}

#header hr {
  height: 8px;
  background-color: var(--primary);
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#header .headerContent {
  position: relative;
  max-width: 1350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  animation: 1s cubic-bezier(0.19, 1, 0.22, 1) 0s 1 slideInFromLeft;
}
#header .headerContent img {
  cursor: pointer;
  height: 110px;
}
#header .headerContent .contactInfo {
  display: flex;
  align-items: center;
  gap: 20px;
}
#header .headerContent .contactInfo span,
#header .headerContent .contactInfo a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  & em {
    font-weight: 300;
    font-style: normal;
    color: var(--black);
  }
}
#header .headerContent .contactInfo i {
  position: relative;
  color: var(--primary);
  &.fa-map {
    top: 14px;
    left: -97.5px;
  }
  &.fa-volume-control-phone {
    top: 14px;
    left: -60px;
  }
}
/* ---------- NAVBAR ---------- */
#header #navbar {
  background: var(--black);
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navBarAnimate {
  height: 45px !important;
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(10px);
}

#header #navbar #mobileNavbar {
  width: 95%;
  height: 64px;
  color: white;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: all 0.3s ease;
}

#header #navbar #mobileNavbar i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

#header #navbar #mobileNavbar.active i {
  transform: rotate(90deg);
}

#header #navbar ul {
  height: max-content;
  display: flex;
  align-items: center;
  margin: auto;
  list-style: none;
  font-size: 15px;
  gap: 10px;
  padding: 0 20px;
}

#header #navbar ul li a {
  background: transparent;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

#header #navbar ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondaryBtns);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

#header #navbar ul li a:hover {
  background: transparent;
  color: var(--secondaryBtns);
}

#header #navbar ul li a:hover::after {
  width: 80%;
}

/* Active state for current page */
#header #navbar ul li a.active {
  color: var(--secondaryBtns);
}

#header #navbar ul li a.active::after {
  width: 80%;
}

/* Mobile styles */
@media (max-width: 768px) {
  #header #navbar {
    padding: 0;
  }

  #header #navbar #mobileNavbar {
    display: flex;
  }

  #header #navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
  }

  #header #navbar ul.navBarMobileExpand {
    opacity: 1;
  }

  #header #navbar ul li {
    width: 100%;
    text-align: center;
  }

  #header #navbar ul li a {
    display: block;
    padding: 15px;
    width: 100%;
  }
}


/* ---------- SERVICES ---------- */
/* Services */
.services {
  position: absolute;
  width: 25%;
  right: 0;
  top: 0;
  margin-top: 45px;
  border-left: 1px solid rgba(0 0 0 / .1);
  padding: 0 30px;
  line-height: 1;
  cursor: pointer;
  & h1 {  color: var(--text);  }
  transition: transform .6s ease, opacity 0.6s ease;
}
.services:hover {
  opacity: 0.75;
  transform: scale(1.05);
}

@keyframes loopedServicesHR {
  0%, 100% {
    left: 0;
  }
  50% {
    left: 75%;
  }
}
.servicesHr {
  position: relative;
  background-color: #cfcfcf;
  height: 4px;
  width: 100%;
  margin-bottom: 40px;
}
.servicesHr::before {
  position: absolute;
  content: '';
  background-color: #8c8c8c;
  height: 90%;
  width: 25%;

  animation: loopedServicesHR 3s infinite;
}
.services ul {
  list-style-position: inside;
  padding-left: 20px;
}
.services ul li {
  color: var(--text-2);
  margin-bottom: 20px;
  text-indent: -23px;
}

/* ---------- FOOTER ---------- */
#footer {
  position: relative;
  background: var(--primary);
  color: white;
}
#footer .footerContent {
  max-width: 1080px;
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: auto;
}
#footer .footerContent .footerWidget {
  width: 30%;
  margin: 30px 0;
}
#footer .footerContent .workingHours {
  padding: 0 10px;
  border-collapse: collapse;
  vertical-align: middle;
  line-height: 30px;
  font-size: 14px;
  & td:nth-child(even) {  text-align: right;  }
}
/* Detect which day is it then mark yellow */
.activeDate {
  color: var(--black);
  background-color: var(--secondary);
}
#footer .footerContent .workingHours td {
  padding: 0 5px;
  /* background: var(--secondary); */
  &:nth-child(even) {
    padding-left: 30px;
    text-align: right;
  }
  &:nth-child(odd) {
    padding-right: 30px;
    text-align: left;
  }
}
#footer .footerContent .footerTitle {
  margin-bottom: 30px;
  font-family: 'Fjalla One', sans-serif;
  font-weight: 600;
  font-size: 20px;
  &:before {
    content: "";
    background: var(--secondary);
    width: 30px;
    height: 2px;
    position: relative;
    top: 40px;
    display: block;
  }
}
/* Footer Extra */
#footer .footerContent .footerExtra .footerPayments {
  margin-bottom: 18%;
}
/* Payments */
#footer .footerContent .footerExtra .footerPayments img {
  aspect-ratio: auto 50/33;
  width: 50px;
  margin-right: 4px;
  border-radius: 3px;
}
/* Socials */
#footer .footerContent .footerExtra .footerSocials span {
  cursor: pointer;
  text-decoration: none;
  & img:hover { transform: scale(1.15);}
}
#footer .footerContent .footerExtra .footerSocials span img {
  width: 42px;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
#footer .footerContent .footerExtra .footerSocials span img:hover {
  transform: scale(1.15);
}

/* Bottom */
#footer .footerBottom {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10%;
  background: var(--secondary);
  color: var(--black);
  padding: 24px 0 22px;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}

.footerBottom .footerInfo {
  text-align: center;
}


.footerBottom .newsLetterBox {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  max-width: 300px;
}

.footerBottom .newsLetterBox .footerLetterTitle {
  flex: 1 0 100%;
  margin-bottom: 10px;
  text-align: center;
}

.footerBottom .newsLetterBox #submitIcon {
  width: 35px;
  height: 35px;
  margin-left: 5px;
  padding-left: 5px;
  color: var(--primary);
  border-left: 2px solid rgba(0, 0, 0, 0.4);
  font-size: 32px;
  z-index: 2;
  transition: color .3s ease;
}
.footerBottom .newsLetterBox #submitIcon:hover {
  color: #000;
  cursor: pointer;
}

.footerBottom .newsLetterBox .joinText {
  position: absolute;
  bottom: 10px;
  right: 0;
  font-weight: 500;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.3s, transform 0.3s;
  margin-left: 5px;
}
.footerBottom .newsLetterBox #submitIcon:hover + .joinText {
  opacity: 1;
  transform: translateX(calc(100% + 10px));
}

.footerBottom .newsLetterBox input {
  flex: 1;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  background-color: transparent;
  border: 1px solid var(--black);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  outline: none;
  font-size: 13px;
  font-weight: 300;
  color: #000000;
  transition: all 0.3s ease;
  &::placeholder {
    color: #000000;
    font-style: italic;
  }
  &:focus {
    border: 1px solid var(--primary);
  }
}


/* Review us btn */
.reviewGlobalBtn {
  position: fixed;
  z-index: 999;
  width: max-content;
  bottom: 10px;
  left: 0px;
  padding: 10px;
  border: 6px solid var(--black);
  border-left: none;
  border-radius: 0 25px 25px 0;
  background: rgba(255, 255, 255);
  display: flex;
  flex: nowrap;
  flex-direction: row;
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviewGlobalBtn img {
  width: 30px;
  height: 30px;
}
.reviewGlobalBtn .reviewText {
  font-size: 22px;
  font-weight: 800;
  margin-left: 10px;
}

/* Chatbot UI */
.chatbotBtn {
  background: var(--primary);
  color: #fff;
  position: fixed;
  bottom: 20px; right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 100%;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999999;
}
.chatbot {
  background: #fff;
  position: fixed;
  bottom: 80px; right: 20px;
  width: 325px;
  border-radius: 15px;
  font-size: 14px;
  box-shadow: 0 0 10px 0 rgba(0 0 0 / .5);
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom right;
  transition: all .3s ease;
  overflow: hidden;
  z-index: 1001;
}
.chatbot.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.chatbot header {
  background: var(--primary);
  color: #fff;
  padding: 12px 0;
  text-align: center;
  font-size: 20px;
}
.chatbot header h5 {
  color: #f0f0f0;
  font-size: 12px;
  font-style: italic;
}
.chatbot header i {
  position: absolute;
  top: 25px; right: 20px;
  visibility: hidden;
}
.chatbot .chatBtns {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  height: max-content;
  margin-bottom: 71px;
}
.chatbot .chatBtns .chatBtn {
  font-family: -webkit-body;
  width: max-content;
  height: max-content;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: rgba(0, 189, 101, 0.6);
  margin: 10px;
  cursor: pointer;
}
.chatbot .chatbox {
  height: 400px;
  padding: 15px 10px 70px;
  overflow-y: auto;
}
.chatbot .chat {
  display: flex;
  list-style: none;
}
.chatbot .chat p {
  background: var(--primary);
  color: #fff;
  max-width: 75%;
  border-radius: 10px 10px 0 10px;
  padding: 5px 10px;
}
.chatbot .incoming i {
  background: var(--primary);
  color: #fff;
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
  border-radius: 5px;
  align-self: flex-end;
  text-align: center;
  line-height: 24px;
}
.chatbot .incoming p {
  background: #ccc;
  color: #000;
  border-radius: 10px 10px 10px 0;
}
.chatbot .outgoing {
  justify-content: flex-end;
  margin: 20px 0;
}
.chatbot .incoming {
  margin: 20px 0;
}
.chatbot .chatInput {
  background: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  gap: 5px;
  padding: 10px;
  border-top: 1px solid #ccc;
}
.chatbot .chatInput textarea {
  color: var(--text);
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 10px 8px 10px 0;
  font-family: inherit;
  font-size: 16px;
  resize: none;
}
.chatbot .chatInput textarea::placeholder {
  color: var(--text-2);
  font-family: inherit;
}
.chatbot .chatInput i {
  height: 50px;
  align-self: flex-end;
  font-size: 20px;
  line-height: 50px;
  cursor: pointer;
  visibility: hidden;
}
.chatbot .chatInput textarea:valid ~ i { visibility: visible; }
/* ---------- RESPONSIVENESS ---------- */
@media (max-width: 490px) {
  .chatbot-toggler {
    right: 20px;
    bottom: 20px;
  }
  .chatbot {
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    width: 100%;
  }
  .chatbot .chatbox {
    height: 90%;
    padding: 25px 15px 100px;
  }
  .chatbot .chat-input {
    padding: 5px 15px;
  }
  .chatbot header i {
    visibility: visible;
    cursor: pointer;
  }
}



/* ----------------- Popup warning ----------------- */
.popupContent {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: 99;
  display: block;
  pointer-events: none;
  gap: 5%;
}

@keyframes popupText {
  0% {
    transform: translate(-50%, calc(-50% - 4vh));
    opacity: 1;
  }
  100% {
    transform: translate(-50%, calc(-50% - 10vh));
    opacity: 0;
  }
}
.popupText {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'orbitron', sans-serif;
  font-size: clamp(24px, 5vw, 45px);
  color: #cc0000;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  animation: popupText 3s cubic-bezier(0.19, 1, 0.22, 1)
}

@media screen and (max-width: 768px) {
  /* HeaderContent */
  #header .headerContent {
    justify-content: center;
  }
  #header .headerContent .contactInfo span,
  #header .headerContent .contactInfo a {
    & em {
      display: none;
    }
  }
  #header .headerContent .contactInfo i {
    &.fa-map {
      top: 0;
      left: 0;
    }
    &.fa-volume-control-phone {
      top: 0;
      left: 0;
    }
  }
  #header .headerContent .contactInfo .iconBreakLine {
    display: none;
  }
  
  /* Header */
  #header {
    position: relative;
  }
  #header .headerContent, .contactInfo {
    flex-direction: column;
    gap: 0 !important;
    padding: 10px;
  }
  #header #navbar {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    top: 0px;
  }
  #header #navbar ul {
    width: 100%;
    border-top: 1px solid #525252;
    display: none;
    flex-direction: column;
    animation: 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s slideInFromRight;
  }
  .navBarMobileExpand {
    display: flex !important;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .navBarMobileExpand li {
    width: 100%;
  }
  .navBarMobileExpand li a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px 0 !important;
  }
  

  #header #navbar #mobileNavbar {  
    display: flex;
  }
  
  /* Footer */
  #footer .footerContent {
    flex-direction: column;
    gap: 0;
  }
  #footer .footerContent .footerWidget {
    width: 100% !important;
    text-align: center;
    & table {  margin: auto;  }
  }
  #footer .footerContent .footerTitle:before {
    width: 80%;
    transform: translateX(12.5%);
  }

  #footer .footerBottom {
    gap: 45px;
  }
  #footer .footerBottom .footerInfo {
    text-align: center;
  }
}

@media screen and (max-width: 960px) {
  #footer .footerContent {
    gap: 20px;
  }
  #footer .footerContent .workingHours td {
    &:nth-child(even) {
      padding-left: 5px;
    }
    &:nth-child(odd) {
      padding-right: 5px;
    }
  }
}

@media screen and (max-width: 1100px) {
  .services {
    display: none;
  }
  .article {
    width: 95% !important;
    margin: 0 auto;
  }
  #footer .footerBottom {
    padding: 24px 5% !important;
  }
}





/* Compact Elegant Breadcrumb Styling */
.premium-breadcrumb-container {
  margin: 8px 0 12px 0;
  padding: 0;
  position: relative;
}

.premium-breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 6px 12px;
  margin: 0;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: fit-content;
}

.premium-breadcrumb-item {
  font-size: 12px;
  position: relative;
  display: flex;
  align-items: center;
}

.premium-breadcrumb-item a {
  display: flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 2px 4px;
  border-radius: 12px;
}

.premium-breadcrumb-item a:hover {
  color: #005999;
  background: rgba(0, 114, 198, 0.08);
}

.premium-breadcrumb-item a .icon {
  background-color: transparent;
  color: var(--primary);
  border-radius: 4px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  transition: all 0.2s ease;
  font-size: 10px;
}

.premium-breadcrumb-item a:hover .icon {
  background-color: var(--primary);
  color: white;
}

.premium-breadcrumb-item a .text {
  position: relative;
  font-size: 12px;
}

.premium-breadcrumb-item + .premium-breadcrumb-item {
  margin-left: 6px;
}

.premium-breadcrumb-item + .premium-breadcrumb-item::before {
  content: "›";
  padding: 0 6px;
  color: #9E9E9E;
  font-weight: 400;
  font-size: 14px;
}

.premium-breadcrumb-item.active {
  color: #616161;
  font-weight: 400;
}

.premium-breadcrumb-item.active .text {
  padding: 0 4px;
  font-size: 12px;
}

/* For mobile screens */
@media (max-width: 576px) {
  .premium-breadcrumb-container {
    margin: 6px 0 8px 0;
  }
  
  .premium-breadcrumb {
    padding: 4px 8px;
  }
  
  .premium-breadcrumb-item {
    font-size: 11px;
  }

  .premium-breadcrumb-item a .icon {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }
  
  .premium-breadcrumb-item a .text,
  .premium-breadcrumb-item.active .text {
    font-size: 11px;
  }
}