/* ===================================
    Crafto - Logistics 
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&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');
/* variable */
:root {      
    --alt-font: "Poppins", sans-serif;
    --primary-font: "Poppins", sans-serif;
    --base-color: #ffc700;
    --dark-gray: #141414;
    --medium-gray: #707070;
    --aluminium-grey: rgba(255, 255, 255, 0.4);
}
/* reset */
body{
    font-size: 18px;
    line-height: 30px;
}
a:hover{
    color: var(--dark-gray);
}
/* header */
.navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
}
.navbar .navbar-nav .dropdown.open .dropdown-menu {
    background-color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .navbar-brand img {
    max-height: 60px;
}
.header-top-bar div>a {
    color: var(--light-gray);
}
.header-top-bar div>a:hover {
    color: var(--white);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 30px;
}
.navbar .navbar-nav .dropdown .dropdown-menu a i {
    width: 35px;
}
header .btn.btn-box-shadow.btn-base-color,
.btn.btn-base-color {
    color: var(--dark-gray);
}
header .btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}
header .btn.btn-small {
    font-size: 15px; 
    padding: 10px 18px;
}
/* btn */
.btn.btn-hover-animation-switch.btn-link {
    padding-top: 0;
}
.btn { 
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0;
}
.btn.btn-extra-large {
    font-size: 18px;
    padding: 16px 32px;
}
.btn.btn-large {
    font-size: 17px;
    padding: 14px 28px;
}
.btn.btn-medium {
    font-size: 16px; 
    padding: 12px 24px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 14px; 
    padding: 9px 20px;
}

/* counter style */
.counter-style-04 .vertical-counter:after {
    color: var(--base-color);
}
.review-star-icon i {
    color: var(--base-color);
}

/* footer style */
footer ul li {
    margin-bottom: 1px;
}
footer p {
    line-height: 28px;
}
/* page title */
.page-title-double-large h1 {
    font-size: 4.375rem;
    line-height: 4.688rem;
}
.page-title-double-large h2 {
    font-size: 16px;
    line-height: 28px;
}

/* top bottom left right class */
.right-12 {
    right: 12%;
}

.bg-jungle-green {
    background-color: #2ebb79;
}
/* Outside box */
.outside-box-top-205px {
    margin-top: -105px;
}
/* Transparent background color */
.bg-gradient-gray-light-dark-transparent {
    background-image: linear-gradient(to top, #f7f7f7 0%, transparent 100%);
}



#map {
    height: 600px;
    width: 100%;
    border-radius: 20px;
  }

  .address-panel {
    position: absolute;
    top: 40px;
    right: 40px;
    background: #fff;
    backdrop-filter: blur(10px);
    color: #000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 320px;
    max-height: 500px;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .address-item {
    cursor: pointer;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s;
  }

  .address-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .address-title {
    font-size: 1rem;
    font-weight: bold;
  }

  .address-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
  }

  @media (max-width: 768px) {

      .address-panel{
        position: relative;
      }


    .address-panel {
      width: 90%;
      left: 5%;
      right: 5%;
      top: 10px;
    }
  }





  .swiper-horizontal > .swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    bottom: 45px;
    left: 13%;
    width: auto;
    cursor: default;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }


  header .navbar-brand{
    padding: 10px!important;
  }



  footer .footer-logo img {
    max-height: 90px!important;
  }



  .wa-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: sans-serif;
    z-index: 9999;
  }

  .wa-chat-box {
    display: none;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
  }

  .wa-header {
    background: #25D366;
    color: white;
    padding: 15px;
    position: relative;
  }

  .wa-header h4 {
    margin: 0;
    font-size: 18px;
  }

  .wa-header p {
    font-size: 13px;
    margin: 5px 0 0;
  }

  .wa-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
    cursor: pointer;
  }

  .wa-agent {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-top: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
  }

  .wa-agent:hover {
    background: #f7f7f7;
  }

  .wa-agent img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
  }

  .wa-agent-info {
    flex: 1;
  }

  .wa-agent-role {
    font-size: 12px;
    color: gray;
  }

  .wa-agent-name {
    font-weight: bold;
    font-size: 14px;
  }

  .wa-footer {
    text-align: center;
    font-size: 12px;
    padding: 10px;
    color: #555;
  }

  .wa-toggle-btn {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .wa-toggle-btn img {
    width: 20px;
    margin-right: 10px;
  }








@media (max-width: 1399px) {
    .xl-h-180px {
        height: 180px;
    }
    .xl-w-180px {
        width: 180px;
    }

        .xl-p-40px {
        padding: 0px !important;
    }
}





@media (min-width: 900px) and (max-width: 1200px) {
.xl-p-40px{
  padding: 0px!important;
}
}




@media (max-width: 1199px) {
    .outside-box-top-200px {
        margin-top: -150px;
    }
}
@media (max-width: 991px) {
    .outside-box-top-200px {
        margin-top: 0;
    }
    .navbar .navbar-nav .dropdown.open .dropdown-menu {
        padding-bottom: 15px;
    }
}