
/* Scrollbar */
body{
  overflow-x: hidden;
}
div::-webkit-scrollbar{
    width:2px;
}
div::-webkit-scrollbar-thumb{
    display: none;
    background-color: #777;
}
div::-webkit-scrollbar-track{
    background:transparent;
}
div:hover::-webkit-scrollbar-thumb{
    display: block;
}

.dark-background:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  height: 100%;  
  inset: 0;
}

/*===================
     Loader CSS 
 ===================*/
 #loader {
    position: fixed;
    z-index: 10001;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
  }
  
  #loader .spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    margin: 40vh auto;
    
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


.product-container{
    position: relative;
}
.product-information{
    position: relative;
}

.product-information a:hover{
    transition: 0.5s linear;
    color: white;
    background:rgb(234, 77, 77) !important;
    box-shadow: 2px 2px 2px gray;
}

.vision > .container-fluid{
    background: rgb(0,0,0,0.7);
    min-height:400px;
    width:100%;
}

.values .card-img {
    min-height: 600px;
    position: relative;
  }
  
  .values .card-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }

  .values .icon-box {
    margin-top: 30px;
  }
  
  .values .icon-box i {
    color: var(--accent-color);
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
  }
  
  .values .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .values .icon-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .values .icon-box h4 a {
    color: var(--heading-color);
    transition: 0.3s;
  }
  
  .values .icon-box h4 a:hover {
    color: var(--accent-color);
  }
  
  .values .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }

  .values .card .card-title{
    color: var(--heading-color) !important;
  }

  .cart-img {
    min-height: 350px;
    max-width: 300px;
    position: relative;
  }

  
  .cart-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }

  .no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    margin: 20px;
  }
  
  .no-results .icon {
    margin-bottom: 20px;
    color: rgb(234, 77, 77); /* Icon color */
  }
  
  .no-results h2 {
    font-size: 1.8rem;
    color: rgb(234, 77, 77);
    margin-bottom: 10px;
  }
  
  .no-results p {
    font-size: 1rem;
    color: #555;
    max-width: 400px;
    margin: 0 auto;
  }

  .search-widget .post-item {
    display: flex;
    margin-bottom: 15px;
  }
  
  .search-widget .post-item:last-child {
    margin-bottom: 0;
  }
  
  .search-widget .post-item img {
    width: 80px;
    margin-right: 15px;
  }
  
  .search-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .search-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
  }
  
  .search-widget .post-item h4 a:hover {
    color: var(--accent-color);
  }
  
  .search-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
    
  }
  
  .nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #2c384e;
  }
  
  .nav-tabs-bordered .nav-link:hover,
  .nav-tabs-bordered .nav-link:focus {
    color: #d82727;
  }
  
  .nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color:#d82727;
    border-bottom: 2px solid #d82727;
  }

  .nav-button{
    color: white;
    background: rgba(50, 14, 122, 0.1)
  }

/*====================================
        File upload
  ====================================*/
  .drop-area {
    border: 2px dashed #007bff; /* Bootstrap primary color */
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    }

    .drop-area.drag-over {
        background-color: rgba(0, 123, 255, 0.1); /* Light blue */
    }


/* -------------Colors------------- */
.bg-orange{
    background: rgb(238 177 73 / 95%) !important;

}
.text-red{
    color: rgb(238 78 73)
}
.bg-red{
    background:rgb(238 78 73);
}
.bg-blue{
  background: #1b3d72 !important;
}
.text-blue{
  color: #1A3A6F !important;
}
.text-orange{
  color: rgb(238 177 73 / 95%) !important;
};


.VIpgJd-ZVi9od-ORHb-OEVmcd {
    width: 0% !important;
}


.VIpgJd-ZVi9od-ORHb{
    display : none !important;
}

.pageLink:hover{
    color: rgb(239, 156, 2) !important;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service .service-item {    
  color: var(--default-color); 
}
.service .service-item:hover {    
  box-shadow: 0px 0 30px rgba(21, 20, 19, 0.1);  
}

.service .service-item .fas {
  color: var(--default-color);  
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.service-card {
  background: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.service-card:hover {
  transform: translateY(-5px);
}

.service-text {
  color: #1a2c79;
}
.service-title{
  color: #1a2c79;
}

.service-card:hover .service-title{
  color: var(--heading-color);
}
/*--------------------------------------------------------------
# Logistics Section
--------------------------------------------------------------*/

.logistics-section {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.logistics-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.logistics-content {
  position: relative;
  z-index: 1;
}
.logistics-section h2 {
  font-size: 28px;
  font-weight: bold;
}
.logistics-section p {
  max-width: 600px;
  margin: auto;
}

/* Activities Section */
.activities {
  background: #f8f9fc;
  padding: 50px 0;
}
.activity-card {
  background: linear-gradient(135deg,  #2c384e, #1a2c79);
  padding: 30px;
  color: white;  
  text-align: center;
}
.activity-card i {
  font-size: 40px;
  margin-bottom: 15px;
}

.our-services .gy *{
  font-size: 12px !important;
}

.pointer{
  cursor: pointer;
}