@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
  --max-width: 1200px;
  --border-radius: 12px;
  /* --font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
    "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
    "Fira Mono", "Droid Sans Mono", "Courier New", monospace; */
/* 
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;

  --primary-glow: conic-gradient(
    from 180deg at 50% 50%,
    #16abff33 0deg,
    #0885ff33 55deg,
    #54d6ff33 120deg,
    #0071ff33 160deg,
    transparent 360deg
  );
  --secondary-glow: radial-gradient(
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );

  --tile-start-rgb: 239, 245, 249;
  --tile-end-rgb: 228, 232, 233;
  --tile-border: conic-gradient(
    #00000080,
    #00000040,
    #00000030,
    #00000020,
    #00000010,
    #00000010,
    #00000080
  );

  --callout-rgb: 238, 240, 241;
  --callout-border-rgb: 172, 175, 176;
  --card-rgb: 180, 185, 188;
  --card-border-rgb: 131, 134, 135;


  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;

    --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0));
    --secondary-glow: linear-gradient(
      to bottom right,
      rgba(1, 65, 255, 0),
      rgba(1, 65, 255, 0),
      rgba(1, 65, 255, 0.3)
    );

    --tile-start-rgb: 2, 13, 46;
    --tile-end-rgb: 2, 5, 19;
    --tile-border: conic-gradient(
      #ffffff80,
      #ffffff40,
      #ffffff30,
      #ffffff20,
      #ffffff10,
      #ffffff10,
      #ffffff80
    );

    --callout-rgb: 20, 20, 20;
    --callout-border-rgb: 108, 108, 108;
    --card-rgb: 100, 100, 100;
    --card-border-rgb: 200, 200, 200;

    
  }
  */
  /* Bootstrap colors */
  --primary: #0d6efd;
  --success: #198754;
  --warning: #ffc107;
  --danger: #dc3545;
  

  /* --blue:#224c89; */
  --blue: #2e3192;
  /* New darker blue for "Why Choose Us" section */
  --blue-dark: #2e3192;
  --blue-deep: #072ac8;
  /* --green:#cbf83a; */
  --green: #8dc63f;
  --white:#fff;
  --br:0.25rem;
  --br-lg:0.5rem;
  --body-bg:#f2f3f5;
  --dark:#212129;
  font-size: 15px;

} 

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

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  line-height: 2;
}
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  /* background-color: var(--body-bg) !important; */
}
p{
  line-height: 2;
}

a:not(.btn) {
  /* color: var(--blue); */
  text-decoration: none;
}

.navbar a{
  color: var(--dark);
  font-weight: 500;
}
/* @media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
} */

.container{
  max-width: 1280px !important;
}

.bg-blue{
  background-color: var(--blue);
}

/* Background */
.bg-blue-deep {
  background-color: var(--blue-deep);
}

/* Text color */
.text-blue-deep {
  color: var(--blue-deep);
}

/* Button styling */
.btn-blue-deep {
  background-color: var(--blue-deep);
  color: white;
  border: 1px solid var(--blue-deep);
}

.btn-blue-deep:hover {
  background-color: #061fb3;
  border-color: #061fb3;
}

/* Border/accent */
.border-blue-deep {
  border-color: var(--blue-deep) !important;
}

.bg-blue-dark {
  background-color: var(--blue-dark);
  /* Optional: add gradient or other effects */
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a237e 100%);
}

/* If you want the button to stand out more */
.bg-blue-dark .btn-primary {
  background-color: white;
  color: var(--blue-dark);
  border: 2px solid white;
}

.bg-blue-dark .btn-primary:hover {
  background-color: transparent;
  color: white;
}

/* Front Page Styling */

.hero-section {
  background-image: url('../img/LandingPage.jpeg');
  position: relative;
  z-index: 1;
  background-position: right;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
}
.hero-section h1 {
  color: #fff;
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1.7;
}
.hero-section h1 span {
  text-transform: uppercase;
}
#serviceTitle {
  position: relative;
  display: inline-block;
  color: var(--green);
}
.hero-section *{
  position: relative;
}
.hero-section p {
  color: #eee;
  font-size: 1.25rem;
  line-height: 1.8;
}

.hero-section::before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #000a 25%, transparent);
}

.service-card{
    padding: 1.5rem;
    box-shadow: 0 0 20px #0002;
    border-radius: 0.5rem;
    text-align: center;
    height: 100%;
    background-color: var(--white);
}
.service-card h3 {
  font-size: 1.125rem !important;
  font-weight: 600;
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(to right, var(--blue) 50%, var(--warning));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card h3::before {
  content: '';
  height: 2px;
  width: 2rem;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 0;
  background-image: linear-gradient(to right, var(--blue), var(--green));
}
.text-gradient {
  background-image: linear-gradient(to right, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: max-content;
  max-width: 100%;
}
.lc-1,.lc-2,.lc-3,.lc-4,.lc-5,.lc-6{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lc-1 {
  -webkit-line-clamp: 1;
}
.lc-2 {
  -webkit-line-clamp: 2;
}
.lc-3 {
  -webkit-line-clamp: 3;
}
.lc-4 {
  -webkit-line-clamp: 4;
}
.lc-5 {
  -webkit-line-clamp: 5;
}
.lc-6 {
  -webkit-line-clamp: 6;
}
/* .swiper {
  width: 600px;
  height: 300px;
} */
.sponsor-card{
    box-shadow: 0 0 10px #0001;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.sponsor-card-card{
  display: block;
  padding: 1rem 1.5rem;
  text-align: left !important;
  height: 100% !important;
}
.sponsor-card-card  hr{
  margin: 1rem 0 0.5rem;
  opacity: 0.35;
  background-color: transparent;
  background-image: linear-gradient(to right, var(--green), var(--blue));
}
.sponsor-card img {
  width: 100%;
  object-fit: contain;
  margin-left: 0;
  max-height: 40px !important;
}


.policy-item {
  position: relative;
}
.step-number {
  font-size: 0.8rem;
  font-weight: 600;
}
.policy-content ul {
  padding-left: 1.5rem;
}
.policy-content li {
  margin-bottom: 0.5rem;
}

.table th {
  font-weight: 600;
}
.alert {
  border-left: 4px solid #0d6efd;
}

.bg-light-blue {
  background-color: #f0f7ff;
}

.usage-icon {
  font-size: 0.9rem;
}
.alert-light-blue {
  background-color: #f0f7ff;
  border-left: 4px solid #0d6efd;
}
.policy-content ul {
  padding-left: 1.5rem;
}
.policy-content li {
  margin-bottom: 0.5rem;
}


#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: hsl(244, 87%, 50%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

#backToTop:hover {
  opacity: 1;
  background-color: #ff0000;
}















































/* Shop CSS */
.shop-slider{
  padding: 4rem;
  background-color: var(--blue);
  line-height: 2;
  font-size: 1.125rem;
  border-radius: var(--br-lg);
  height: 384px;
  color: var(--white);
  display: flex;
  align-items: center;
}
.shop-slider h3{
  font-size: 1.5rem;
  font-weight: 500;
}
.shop-slider h2{
  font-size: 3rem;
  font-weight: 700;
  /* text-transform: uppercase; */
  margin:1rem 0 1.5rem;
  line-height: 1.3;
}
.shop-slider .btn-outline-blue:hover{
  border: 1px solid var(--white) !important;
}
.shop-writeup h1{
  font-size: 2rem;
}
.shop-writeup h2{
  font-size: 1.75rem;
}
.shop-writeup h3{
  font-size: 1.5rem;
}
.text-green{
  color: var(--green);
}
.text-blue{
  color: var(--blue);
}
.image-container{
  width: 100%;
  background-image: url('https://benacare.or.ke/img/slider-b.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}

.image-container img{
  width: 100%;
  height: 100%;
  max-height: 250px;
  object-fit: contain;
}
.align-items-center{
  align-items: center;
}
.btn{
  display: inline-block;
  padding: 0.5rem 2rem !important;
  border-radius: 5rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-transform: uppercase;
}
.btn svg{
  margin-top: -6px;
  margin-right: 4px;
}
.btn-lg{
  padding: 0.75rem 2rem !important;
}
.btn-block{
  display: block;
  width: 100%;
  text-align: center;
}
.btn-blue,.btn-outline-blue:hover{
  background-color: var(--blue-deep) !important;
  color: var(--warning) !important;
  border: 1px solid var(--blue-deep) !important;
}
.btn-outline-blue,.btn-blue:hover{
  color: var(--blue) !important;
  background-color: var(--white) !important;
  border: 1px solid var(--blue) !important;
}
.btn-outline-green{
  color: var(--green) !important;
  border: 1px solid var(--green) !important;
}
.cart-box{
  color: var(--blue) !important;
  position: relative;
  font-size: 1.25rem !important;
}
.cart-count{
  height: 1.25rem;
  width: 1.25rem;
  background-color: var(--blue);
  font-size: 0.6rem;
  line-height: 0;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: -0.125rem;
  top: .125rem;
}
table.table{
  color: var(--blue) !important;
  border-radius: 0.3rem !important;
  text-decoration: none !important;
  transition: 0.5s all ease;
  box-shadow: 0 3px 5px #0003;
  width: 100%;
  font-size: 0.9rem !important;
}
thead,tbody{
  border-radius: inherit;
}
thead th{
  background-color: var(--blue) !important;
}
thead th:first-child{
  background-color: var(--blue) !important;
  border-radius: 0.3rem 0 0 0 !important;
}
thead th:last-child{
  background-color: var(--blue) !important;
  border-radius: 0 0.3rem 0 0 !important;
}
thead *{
  color: white !important;
  text-decoration: none !important;
  font-weight: 400;
}
tr,td,th{
  border-bottom: none !important;
}
td:first-child,th:first-child{
  border-left: none !important;
}
tr:nth-child(even){
  background-color: #18559d11;
}
tr:last-child{
  border-bottom: none !important;
}
td:nth-child(even){
  border-left: 1px solid #18559d44;
  border-right: 1px solid #18559d44;
}
th:nth-child(even){
  border-left: 1px solid #fff4;
  border-right: 1px solid #fff4;
}
th:last-child,td:last-child{
  border-right: none;
}



footer{
  /* color: #fff; */
  font-size: 0.85rem;
}
footer p{
  line-height: 2.2 !important;
}
footer h3{
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: #fff!important;
  position: relative;
  width: max-content;
}
footer h3::before{
  content: '';
    height: 0;
    width: 70%;
    position: absolute;
    bottom: 0;
    border-bottom: 1px dashed var(--warning);
}
footer ul li{
  font-size: 0.85rem;
  line-height: 2.5;
}
.footer-links{
  list-style: none;
  padding-bottom: 0;
  padding-left: 0;
}
footer a{
  color: var(--white);
}
footer a:hover{
  color: var(--warning);
}
footer{
  color: var(--white);
  line-height: 2;
  background-image: url('../img/Footer.jpg');
  background-color: #222;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  /* background-position: top; */
}
.main-footer,.copyright{
  padding: 2.5rem 0;
}
.copyright{
  background-color: #111d;
  background-blend-mode: multiply;
  border-top: 1px solid #6664;
}



.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  /* justify-content: flex-end; */
}
.footer-social-icon {
  height: 1.75rem!important;
  width: 1.75rem!important;
  font-size: 0.85rem;
  /* background-color: #fff; */
  /* color: #fff!important; */
  color: var(--white);
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  position: relative;
}
.icn-facebook {
  background-color: #1778f2;
}
.icn-twitter {
  background-color: #1DA1F2;
}
.icn-linkedin {
  background-color: #0072b1;
}
.icn-instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: -webkit-linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.icn-youtube {
  background-color: #c4302b;
}
.footer-social-icon *{
  position: relative;
}
.footer-social-icon::before{
  content: '';
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: var(--white);
  border-radius: inherit;
  border: 1px solid var(--white);
  display: none;
}
.footer-social-icon:hover::before{
  display: block;
}
.footer-social-icon:hover{
  color: var(--white);
}
.footer-social-icon:hover{
  color: var(--blue);
}

.contact-flex{
  display: flex;
  gap: 0.75rem;
}
.contact-icon{
  height: 2.25rem;
  width: 2.25rem;
  font-size: 1.125rem;
  color: var(--white);
  background-color: #fff3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}
.contact-small{
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff9;
}
.contact-text{
  display: block;
  color: var(--white);
  font-weight: 400;
}
.top-bar,.main-menu,nav{
  border-bottom: 1px solid #0001;
}
.top-bar a{
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue);
}
.top-bar svg{
  height: 14px;
  width: 14px;
  margin-right: 0.6rem;
  margin-top: -0.25rem;
}
.xs-small{
  font-size: 0.5rem;
  line-height: 24px;
}
.shop-search-form{
  width: 500px;
  max-width: 100%;
  display: flex;
}
.shop-search-form input,.shop-search-form button{
  padding: 0.5rem 0.75rem;
  outline: none;
  box-shadow: none;
}
.shop-search-form input{
  width: 100%;
  background-color: #f2f3f5;
  border: 1px solid #f2f3f5;
  border-radius: var(--br-lg) 0 0 var(--br-lg);
  border-right: none;
}
.shop-search-form input:focus{
  border-color: var(--blue);
}
.shop-search-form button{
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 0 var(--br-lg) var(--br-lg) 0;
  color: var(--white);
}
.op-2{
  opacity: 0.1;
}
.carousel-control-prev-icon,.carousel-control-next-icon{
  background-image: none !important;
  height: 2rem;
  width: 2rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  padding: 0;
  background-color: #fff4;
  background-size: 2rem;
}
.carousel-control-prev-icon{
  left: -5rem;
}
.carousel-control-prev, .carousel-control-next{
  width: 4rem !important;
}
.carousel-indicators [data-bs-target] {
  width: 6px !important;
  height: 6px !important;
  padding: 0;
  margin-right: 6px;
  margin-left: 6px;
  background-clip: unset;
  border: 0;
  border: none !important;
  border-radius: 6px;
  background-color: var(--blue) !important;
}
.testimonials .carousel-indicators{
  bottom: 2rem;
}
.carousel-indicators .active{
  width: 2rem !important;
}
.carousel-indicators{
  margin-bottom: 2rem !important;
}

.slider-sale-card{
  padding: 1.5rem;
  border-radius: var(--br-lg);
  background-color: var(--blue);
  color: var(--white);
}
.product-flex{
  display: flex;
  gap: 1rem;
  width: 100%;
}
.product-flex .product-img{
  width: 8rem;
}
.product-flex .product-title{
  width: 100%;
}
.product-flex .product-img img{
  width: 100%;
}
.product-flex .product-title h3{
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
}
.product-price{
  font-weight: 600;
  display: block;
  font-size: 0.9rem;
}
.product-old-price{
  position: relative;
  padding: 0 0.25rem;
  opacity: 0.7;
  margin-right: 0.75rem;
}
.product-old-price::before{
  content: '';
  height: 2px;
  width: 100%;
  background-color: #f7f7f7;
  position: absolute;
  left: 50%;
  top:50%;
  transform: translate(-50%, -50%);
}
.discount-btn{
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: var(--white);
  box-shadow: 0 0 10px #0001;
  border-radius: var(--br);
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.slider-sale-card{
  height: 180px;
  display: flex;
  align-items: center;
}
.site-card{
  background-color: var(--white);
  border-radius: var(--br-lg);
  padding: 1.25rem;
  box-shadow: 0 0 10px #0001;
}
.why-us-card{
  display: flex;
  gap:1rem;
  align-items: center;
}
.why-us-icon{
  font-size: 3rem;
  color: var(--blue);
}
.why-us-icon svg{
  height: 3rem;
  width: 3rem;
  margin-top: -0.75rem;
}
.why-us-content{
  width: calc(100% - 3rem);
}
.why-us-content h3{
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: 0.125rem;
}
.why-us-content p{
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.bg-green{
  background-color: var(--green);
  color: var(--dark);
}
.site-card-heading{
  border-bottom: 1px solid var(--body-bg);
  margin: -0.5rem -1.25rem 1.25rem;
  padding: 0.25rem 1.25rem 0.25rem;
}
.site-card-heading h2,.site-card-heading h1,.section-heading{
  font-size: 1.25rem;
  color: var(--blue);
}
.item-card{
  position: relative;
  padding: 1rem;
  border: 1px solid var(--body-bg);
  border-radius: var(--br);
  display: block;
  color: var(--dark);
}
.item-card img{
  width: 100%;
  max-height: 200px;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
}
.item-card h3{
  color: var(--blue);
  font-size: 0.95rem;
  line-height: 1.8;
}
.item-card:hover{
  border-color: var(--blue);
}
.item-old-price{
  position: relative;
  padding: 0 0.5rem;
  margin-left: 0.75rem;
  color: #0006;
}
.item-old-price::before{
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #0006;
}
.item-new-price{
  font-weight: 600;
  color: var(--blue);
}
.save-badge{
  position: absolute;
  background-color: var(--green);
  color: var(--dark);
  top: 1rem;
  right: 1rem;
  display: inline-block;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: var(--br);
  font-size: 0.75rem;
  font-weight: 500;
}
.discounted-products-card{
  padding: 1.25rem;
  border-radius: var(--br-lg);
  background-color: #2e319222;
  display: flex;
  gap: 1rem;
  position: relative;
}
.item-price.small{
  font-size: 0.85rem !important;
}
.dpc-text{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: calc(100% - 8rem);
  /* gap: 1rem; */
}
.dpc-text h3{
  font-size: 1.25rem;
  line-height: 1.6;
}
.dpc-img{
  width: 7rem;
}
.dpc-img img{
  width: 100%;
  object-fit: contain;
}
.s-badge{
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  border-radius: var(--br);
}
.bg-green .product-old-price::before{
  background-color: #000a;
}
.discounted-products-card .s-badge{
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 0.9rem;
}
.sell-banner{
  background-color: var(--blue);
  background-image: url('https://benacare.or.ke/img/cta-bg.jpg');
  background-blend-mode: multiply;
}
.sell-banner h2{
  color: var(--white);
  margin-bottom: 0;
  font-weight: 600;
}
.btn-green{
  color: var(--dark);
  background-color: var(--warning) !important;
  border: 1px solid var(--warning) !important;
}
.newsletters{
  background-color: var(--warning);
  padding: 1.5rem 0;
  color: var(--dark);
}
.newsletters h2{
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.newsletter-email{
  background-color: var(--white);
  position: relative;
  border: 1px solid var(--blue);
  border-radius: var(--br-lg);
}
.newsletter-email .ne-icon{
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
}
.newsletter-email input{
  height: 100%;
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}
.btn-block{
  width: 100%;
  /* height: 100%; */
}
.h-3r{
  height: 3rem;
}
.testimonials-card{
  background-color: var(--white);
  background-image: url('https://benacare.or.ke/img/testimonials-bg.jpg');
  background-blend-mode: multiply;
  background-position: bottom right;
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonial-text{
  height: 80%;
  background-color: #f7f7f7aa;
  backdrop-filter: blur(5px);
  padding: 3rem 1.5rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.8;
  position: relative;
  margin-top: 0;
  border-radius: var(--br);
}
.testimonial-text p{
  color: #777;
  font-style: italic;
}
.testimonial-text::before{
  content: '\201C';
  font-size: 6rem;
  position: absolute;
  left: 1.25rem;
  top: 0;
  line-height: 1;
  /* color: var(--blue); */
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  opacity: 0.5;
  -webkit-text-stroke-color: var(--blue);
  font-family: sans-serif;
}
.s-small{
  font-size: 0.9rem;
}
.hide-on-mobile{
  display: none;
}
.site-bread-crumbs{
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 2rem;
}
.site-bread-crumbs li{
  position: relative;
  font-size: 0.9rem;
}
.site-bread-crumbs li::before{
  content: '';
  right: -1rem;
  height: 0.5rem;
  width: 0.5rem;
  border-right: 1px solid var(--dark);
  border-top: 1px solid var(--dark);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
}
.site-bread-crumbs li:last-child::before{
  display: none;
}
.site-bread-crumbs li a{
  color: var(--blue);
}
.track-order-form{
  border-radius: var(--br-lg);
  padding: 2rem;
  border: 1px solid var(--blue);
}
.fancy-heading{
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.fancy-heading::before{
  content: '';
  height: 2px;
  width: 3rem;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  left: 0;
}
.track-order-form h3{
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--blue);
}
.track-order-form input{
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin: 0.7rem 0 1rem;
  border-radius: var(--br);
  border: 1px solid #2e319233;
  outline: none !important;
}
.item-page-img{
  border-radius: var(--br-lg);
  padding: 1.5rem;
  background-color: var(--white);
  position: relative;
  /* box-shadow: 0 0 10px #0002; */
}
.item-page-img img{
  width: 100%;
}
.item-page-bread-crumbs{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap:0.5rem;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.item-page-bread-crumbs li{
  height: 2rem;
  width: 2rem;
  padding: 0.125rem;
  border: 1px solid #2e319222;
  filter: grayscale(0.5);
  opacity: 0.5;
  transition: 0.5s ease all;
  border-radius: var(--br);
}
.item-page-bread-crumbs li img{
  height: 100%;
  width: 100%;
  display: block;
  object-fit: contain;
}
.item-page-bread-crumbs li.active,.item-page-bread-crumbs li:hover{
  border: 1px solid var(--blue);
  filter: none;
  opacity: 1;
}
.bg-light-green{
  background-color: var(--green);
}
.icon-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.icon-list li{
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  border-bottom: 1px dashed #fff8;
  padding-bottom: 0.5rem;
}
.icon-list li:last-of-type{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.icon-list svg{
  height: 2.5rem;
  width: 2.5rem;
  background-color: #fff8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--br);
}
.icon-list li span{
  width: calc(100% - 3.5rem);
  font-size: 0.9rem;
}
.product-heading{
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: -0.5rem;
}
.badge-green{
  background-color: var(--green);
  color: var(--dark);
  display: inline-block;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: var(--br);
  font-size: 0.75rem;
  font-weight: 600;
}
.product-rating{
  font-size: 0.7rem;
  font-weight: 500;
}
.text-orange{
  color: orangered;
  letter-spacing: 2px;
}
.product-rating .text-orange svg{
  height: 10px;
  width: 10px;
  margin-top: -2px;
}
.cart-count-input{
  position: relative;
  border: 1px solid #2e319266;
  border-radius: var(--br);
  overflow: hidden;
  height: 100%;
}
.cart-count-input input{
  text-align: center;
  width: 100%;
  border: none !important;
  outline: none !important;
  padding: 0.25rem;
  height: 100%;
}
.cart-count-input input[type=number]::-webkit-inner-spin-button, 
.cart-count-input input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
.cart-count-input:hover{
  border-color: var(--blue);
}
.cc-btn{
  height: 100%;
  width: 2rem;
  background-color: #2e319222;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border: none !important;
  outline: none !important;
  top: 0;
  font-size: 1.5rem;
  font-weight: 300;
}
.cc-btn:hover{
  background-color: #2e319244;
}
.cc-btn-left{
  left: 0;
  border-right: 1px solid #2e319222 !important;
}
.cc-btn-right{
  right: 0;
  border-left: 1px solid #2e319222 !important;
}
.internal-header{
  background-color: var(--blue);
  text-align: center;
}
.internal-header h1{
  color: var(--white);
}
.pb-custom{
  padding-bottom: 5rem !important;
}
.move-up{
  margin-top: -4rem;
  position: relative;
}
.auth-container{
  background-color: #2e319222;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-card{
  background-color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--br-lg);
  box-shadow: 0 0 15px #0002;
  width: 400px;
}
.fw-300{
  font-weight: 300;
}
.fw-400{
  font-weight: 400;
}
.fw-500{
  font-weight: 500;
}
.fw-600{
  font-weight: 600;
}
.fw-700{
  font-weight: 700;
}
.fw-800{
  font-weight: 800;
}
.mt-n2{
  margin-top: -0.5rem;
}
.mb-n2{
  margin-bottom: -0.5rem;
}
.auth-card label{
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.auth-card input{
  padding: 0.5rem 0.75rem;
  border: 1px solid #2e319244;
  border-radius: var(--br);
  width: 100%;
  margin-bottom: 0.75rem;
  outline: none;
}
.faq-accordion .accordion-item{
  margin-bottom: 0.75rem;
  border-radius: var(--br-lg);
  
  border: none !important;
  box-shadow: 0 0 10px #0002;
  overflow: hidden !important;
}
.team-card{
  text-align: center;
  margin: 1rem 0;
}
.team-img-box{
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid #2e319244;
  position: relative;
  margin: 0 auto 1rem;
}
.team-name {
  font-weight: 500;
  padding-bottom: 0;
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.team-title {
  font-size: 0.85rem;
  font-weight: 400;
  font-style: italic;
}
.team-socials {
  background-color: #fff4;
  padding: 0.5rem;
  backdrop-filter: blur(5px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -4rem;
  transition: all ease 0.5s;
}
.team-socials a {
  display: flex;
  outline: 1px solid #212121;
  height: 1.5rem;
  width: 1.5rem;
  font-size: 0.75rem;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  color: #212121;
  border-radius: 0.25rem;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: top;
}
.team-card:hover .team-socials {
  bottom: 0;
}
.impact-and-traction{
  background-image: url('../img/impact-sect.jpeg');
  background-blend-mode: multiply;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.impact-and-traction *{
  position: relative;
}
.impact-and-traction::before{
  content: '';
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: var(--blue);
  opacity: 0.7;
}
.traction-card{
    text-align: center;
    padding: 1rem 0.75rem 1rem;
    background-color: var(--warning);
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0 10px #000a;
    height: 100%;
}
.traction-card h3 {
  font-size: 1.5rem !important;
  font-weight: bold;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  color: #222;
}
.traction-card p{
    font-size: 0.8rem;
    font-weight: 300;
    padding-bottom: 0;
    line-height: 1.5;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.25rem;
}
.img{
  width: 100%;
  border-radius: var(--br-lg);
}
.fancy-ul{
  list-style: none;
  padding-left: 0.75rem;
}
.fancy-ul li{
  padding-left: 1rem;
}
.fancy-ul li::marker{
  content: '\2714';
  color: var(--blue);
  position: absolute;
}
.nav-pills{
  border-bottom: 2px solid var(--body-bg);
}
.site-card-heading .nav-pills{
  margin-bottom: calc(-0.25rem - 1px) !important;
}
.nav-pills .nav-link{
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding-block: 0 0.5rem !important;
  margin-bottom: -2px;
  color: var(--dark) !important;
  opacity: 0.7;
}
.nav-pills .nav-link:hover, .nav-pills .nav-link.active{
  opacity: 1;
}
.nav-pills .nav-link.active{
  border-color: var(--blue) !important;
  background-color: transparent !important;
  color: var(--blue) !important;
}
video{
  height: 100%;
  width: 100%;
  object-fit: cover
}
.py-lg-5.internal-page-hero-section {
  background-image: url('../img/home-slider.jpg');
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 7.5rem !important;
}
.internal-page-hero-section *{
  position: relative;
}
.internal-page-hero-section::before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.75;
  background-color: var(--blue);
}
.internal-page-hero-section h1 {
  color: var(--white);
}

.move-up-lg {
  margin-top: -7.5rem;
  position: relative;
}
.contact-us-cards {
  display: flex;
  gap: 1rem;
}
.contact-icn {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  border-radius: 0.5rem;
  background-color: #2e319222;
}
.contact-icn svg{
  height: 1.75rem;
  width: 1.75rem;
}

.contact-content {
  width: calc(100% - 4.25rem);
}
.contact-content h3 {
  padding-bottom: 0.125rem;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--blue);
}
.contact-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 400;
}
.badge-pending,.badge-processing,.badge-in-transit, .badge-delivered, .badge-cancelled{
  display: inline-block;
  padding: 0.25rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 0.25rem;
  background-color: red;
  text-transform: uppercase;
}
.badge-pending{
  background-color: gainsboro;
  color: var(--dark);
}
.badge-processing{
  background-color: var(--warning);
  color: var(--dark);
}
.badge-in-transit{
  background-color: var(--primary);
  color: var(--white);
}
.badge-delivered{
  background-color: var(--success);
  color: var(--white);
}
.badge-cancelled{
  background-color: var(--danger);
  color: var(--white);
}
.hide-by-default{
  display: none;
}
.hide-by-default.show{
  display: block;
}
.cart-detail-form button,
.cart-detail-form input[type="submit"]{
  display: none;
}
.cart-detail-form input{
  padding: 0.125rem 0.5rem;
  text-align: center;
  border-radius: var(--br);
  border: 1px solid #21212122;
  outline: none;
}
.site-form label{
  display: block;
  font-size: 0.95rem;
}
.site-form :is(input, select, textarea){
  width: 100%;
  border-radius: var(--br);
  border: 1px solid #0003;
  padding: 0.5rem 1rem;
  outline: none;
}
.brand-card-logo{
  max-height: 50px !important;
  object-fit: contain;
}
.category-card{
  text-align: left !important;
}
.category-card-title{
  position: relative;
}
.category-card-title::before{
  content: '';
  position: absolute;
  height: 0.5rem;
  width: 0.5rem;
  border-bottom: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.category-card:hover .category-card-title::before{
  border-color: var(--green);
}
.category-card img{
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #2e319244;
}
.article-img{
  height: 400px;
  object-fit: cover;
  overflow: hidden;
}
.product-list-img img,
.sidebar-img img{
  width: 100%;
  object-fit: contain;
}
.accordion-item{
  padding: 0.785rem 0 0.85rem 2.25rem;
  border-bottom: 1px solid #2e319266;
}
.accordion-item:last-of-type{
  padding-bottom: 0;
  border-bottom: none;
}
.faq-no{
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  left: -2.25rem;
  color: var(--white);
  background-color: var(--blue);
  font-size: 0.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  display: flex;
}
.accordion-button{
  font-size: 1.125rem;
  display: flex;
  font-weight: 500;
  color: var(--blue);
  position: relative;
  gap: 1rem;
  align-items: center;
}
.accordion-button::before{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: monospace;
}
.accordion-button:not(.collapsed)::before{
  content: '\2212';
}
.accordion-button.collapsed::before{
  content: '\002B';
}
.accordion-button{
  background-color: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}
@media screen and (min-width:768px) {
  .navbar .nav-item{
    margin-left: 1.5rem;
  }
  .product-list-img img,
  .sidebar-img img{
    height: 100%;
  }
  ::-webkit-scrollbar {
    width: 6px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #2e319288;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
  }
  .sidebar-img{
    height: 5rem;
  }
  .product-list-img{
    height: 12rem;
  }
  .discounted-products-card{
    min-height: 150px;
  }
  .dpc-img{
    height: 100%;
  }
  .dpc-img img{
    height: 100%;
  }
}

@media screen and (max-width:767px){
  root{
    font-size: 14px;
  }
  body{
    font-size: 1rem;
  }
  .shop-slider{
    padding: 1.5rem;
    min-height: unset;
  }
  .btn{
      font-size: 14px !important;
  }

  /* Optional: Add transition for smooth appearance */
.navbar.sticky-top {
  transition: all 0.3s ease;
}

/* Optional: Add shadow when stuck */
.navbar.sticky-top.navbar-stuck {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
  .navbar-collapse.collapse,.navbar-collapse.collapsing{
      height: 100vh !important;
      padding: 1rem;
      position: fixed !important;
      display: block;
      width: 300px;
      max-width: 100%;
      top: 0;
      background-color: var(--white);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: 0.25s ease left;
      transform-origin: left;
      left: -100%;
      z-index: 15;
      box-shadow: 0 0 10px #0002;
  }

  .dropdown-menu{
    box-shadow: none !important;
    padding: 0 !important;
    box-shadow: none;
    border:none !important;
    border-radius: 0 !important;
    background-color: transparent;
  }
  .dropdown-item{
      padding-inline: 0 !important;
      color: var(--dark-1) !important;
      font-size: 0.9rem !important;
  }
  .navbar-collapse .btn{
      margin-bottom: 0.5rem;
  }
  .navbar-collapse.collapsing{
      left: -50%;
      transition: none;
  }
  .navbar-collapse.show,.navbar-collapse.collapsing{
      left: 0;
  }
  .navbar-toggler{
      border: none !important;
      box-shadow: none !important;
      outline: none !important;
      position: relative;
  }
  .close-mobile-menu{
      height: 2.5rem;
      width: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      line-height: 1;
      background-color: transparent;
      box-shadow: none;
      border: none;
      outline: none;
      color: var(--blue);
      font-weight: 200 !important;
      position: absolute;
      right: 0.25rem;
      top: -1rem;
      z-index: 10;
  }
  .hide-on-mobile{
      display: block;
      padding: 0 1.25rem 1rem;
      border-bottom: 1px solid #EDEEEE;
      margin: 0 -1.25rem;
      position: relative;
  }
}


/* Gallery Styles */
.client-gallery {
  background-color: #f8f9fa;
}

.gallery-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hover-icon {
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
  transform: scale(0.8);
  opacity: 0.8;
}

.gallery-item:hover .gallery-hover-content {
  opacity: 1;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-item:hover .hover-icon {
  transform: scale(1);
  opacity: 1;
}

/* Lightbox Styles */
#galleryLightbox .modal-content {
  background-color: rgba(0,0,0,0.8);
  border: none;
}

#galleryLightbox .modal-header {
  border: none;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
}

#galleryLightbox .btn-close {
  filter: invert(1);
  opacity: 0.8;
  background: none;
  font-size: 1.5rem;
}

#lightboxImage {
  max-height: 70vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 4px;
}

#lightboxCaption {
  font-size: 1.1rem;
  padding: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-image {
    height: 150px;
  }
  
  .hover-icon {
    font-size: 1.5rem;
  }
}

.price-tag {
  font-weight: bold;
  color: #2a6496;
  margin: 15px 0;
  font-size: 1.2rem;
}

/* Package Cards Styling */
.package-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease;
  border-top: 4px solid #2a6496;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.package-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2a6496;
  margin: 10px 0;
}

.package-description {
  font-style: italic;
  margin-bottom: 20px;
}

.package-features h4, 
.package-benefits h4 {
  color: #333;
  margin-top: 20px;
  font-size: 1.1rem;
}

.package-features ul, 
.package-benefits ul {
  padding-left: 20px;
}

.package-features li, 
.package-benefits li {
  margin-bottom: 8px;
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 25px;
}

/* Package-specific accents */
.standard-package {
  border-top-color: #28a745;
}

.premium-package {
  border-top-color: #ffc107;
}

.job-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #eee;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}
.job-header h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
  flex-grow: 1;
}
.job-meta {
  margin-bottom: 15px;
}
.job-meta p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: center;
}
.job-meta i {
  margin-right: 10px;
  font-size: 1rem;
  color: var(--blue);
  min-width: 16px;
}
.job-meta strong {
  color: #222;
}
.job-desc {
  margin: 15px 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}
.job-skills {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-tag {
  display: inline-block;
  background: #f0f7ff;
  color: var(--blue);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.filter-badge {
  cursor: pointer;
  transition: all 0.2s;
  padding: 7px 12px;
}
.filter-badge:hover, .filter-badge.active {
  background: var(--blue) !important;
  color: white !important;
}
.text-blue {
  color: var(--blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.badge.bg-warning {
  background-color: #fff3cd !important;
}
.badge.bg-success {
  background-color: #d1e7dd !important;
  color: #0f5132 !important;
}

job-closed .job-card {
  opacity: 0.8;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
}
.job-closed .job-card h3,
.job-closed .job-card .job-desc,
.job-closed .job-card .job-meta p:not(:last-child) {
  color: #6c757d !important;
}
.job-closed .skill-tag {
  background-color: #e9ecef !important;
  color: #6c757d !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25D366; /* WhatsApp green */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.whatsapp-float:hover {
  background: #128C7E; /* Darker green on hover */
  transform: scale(1.1);
}
.bi-whatsapp {
  line-height: 1;
}