/* Theme Colors */
.btn-green,
.bg-green {
    background-color: #198754;
}

.bg-gold-green {
    background-color: #423c24;
}

.bg-gold {
    background-color: #c8a05a;
}

.bg-purple {
    background-color: #6f42c1;
}

.text-gold {
    color: #c5a35c;
}

.text-purple {
    color: #6f42c1;
}

.text-gold-green {
    color: #423c24;
}
.text-brown-grad {
  background: -webkit-linear-gradient(#94854a, #423c24, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* .btn-gold {
    border-radius: 0.3rem !important;
    background-color: #c8a05a;
    color: #000000;
    border-color: #f8f9fa;
} */

.hover-shadow {
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 31%) !important;
    transform: translateY(-5px);
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

section {
    padding: 2px 15px;
}

.rounded-15 {
    border-radius: 15px;
}

.step {
    position: relative;
    padding: 20px;
    border-left: 2px solid #007bff;
}

.step:not(:last-child) {
    margin-bottom: 30px;
}

.step.active {
    background-color: #f8f9fa;
}

.navbar {
    margin-bottom: 0;
    font-size: 16px;
    border-radius: 15px;
}

nav.navbar .dropdown-menu {
  background-color: #423c24;
  color: #ffff;
  border-radius: 12px;
  padding: 5px;
}
nav.navbar .dropdown-menu .dropdown-item {
  color: #ffff;
}
nav.navbar .dropdown-menu .dropdown-item:hover {
  color: #000;
  border-radius: 8px;
  background-color: #c8a05a;
}
/* Media query for screens smaller than 992px (Bootstrap's `lg` breakpoint) */
@media (min-width: 991.98px) {
  .dropdown-menu {
    top: 55px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: .5s ease all;
  }

  .dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: .5s ease all;
  }
}

#heroCarousel h2 {
    background: -webkit-linear-gradient(#aaa282, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo__carousel.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: 100%;
}

.logo__carousel .logo__carousel__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 62px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.prod-img-wrapper {
  position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.prod-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prod-img-wrapper .prod-logo {
  position: absolute;
  bottom: 15px;   /* Adjust the distance from the bottom */
  right: 15px;    /* Adjust the distance from the right */
  width: 65px !important;    /* Adjust the size of the smaller image */
  height: auto;   /* Ensure the image keeps its aspect ratio */
  border-radius: 0.9rem; /* Apply rounded corners to the smaller image */
}
.owl-stage {
  display: flex;
}

.owl-item {
  display: flex;
}

.carousel-fade .carousel-item {
    transition: opacity 1s ease;
    /* Crossfade transition */
}


.blur-card {
  background: rgb(0 0 0 / 48%);
  transition: background 4s ease;
    border: solid 1px;
    border-radius: 1.5rem;
    padding: 20px;
    backdrop-filter: blur(10px);
    width: 100%;
}

.timeline:before {
    content: "";
    background: #000000;
    width: 5px;
    height: 95%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    }
    .timeline-item:nth-child(even) .timeline-content {
    float: right;
    padding: 40px 30px 10px 30px;
    }
    .timeline-item:nth-child(even) .timeline-content .date {
    right: auto;
    left: 0;
    }
    .timeline-item:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #423c24 transparent transparent;
    }
    .timeline-item::after {
    content: "";
    display: block;
    clear: both;
    }
    .timeline-content {
    color: white;
    background: #000000 !important;
    position: relative;
    width: 45%;
    padding: 20px 20px;
    border-radius: 4px;
    background: var(--bs-light);
    }
    .timeline-content::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    right: -15px;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #423c24;
    }
    .timeline-img {
    width: 30px;
    height: 30px;
    background: #000000;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-top: 25px;
    margin-left: -15px;
    }
    @media screen and (max-width: 768px) {
    .timeline::before {
    left: 50px;
    }
    .timeline .timeline-img {
    left: 38px;
    }
    .timeline .timeline-content {
    max-width: 100%;
    width: auto;
    margin-left: 70px;
    }
    .timeline .timeline-item:nth-child(even) .timeline-content {
    float: none;
    }
    .timeline .timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
    top: 30px;
    left: -15px;
    border-width: 10px 15px 10px 0;
    border-color: transparent #423c24 transparent transparent;
    }
    }

    #intro-owl .item img{
        display: block;
        width: 100%;
        height: auto;
    }
    #intro-owl .item{
        opacity: .4;
        transition: 1.5s ease all;
        margin: 0 20px;
        transform: scale(.8);
    }
    #intro-owl .active .item{
        opacity: 1;
        transform: scale(1);
    }
    #intro-owl .item img{
        width: 100%;
        height: 400px;
        object-fit: cover;

    }
    /* about us */
    .three-img-container {
      width: 40vw;
      min-width: 290px;
        max-width: 940px;
        margin: 0 auto;
        font-size: 0; /* Remove spacing between inline-block elements */
        position: relative; /* Allow for absolute positioning of .overlay */
    }

    .three-img-container .image {
        display: block;
        position: relative;
        width: 70%;
    }

    .three-img-container .image:nth-child(1) {
        margin-right: auto;
        z-index: 3;
        bottom:6px;
    }

    .three-img-container .image:nth-child(2) {
        margin-left: auto;
        z-index: 2;
        left:60px;
    }

    .three-img-container .image:nth-child(3) {
        margin-left: auto;
        margin-right: auto;
        z-index: 1;
        top:35px;
    }
    /* Mobile responsiveness */
@media (max-width: 768px) {
  /* First image: to the left */
  .three-img-container .image:nth-child(1) {
      margin-right: auto;
      z-index: 3;
      bottom: 10px;
      left: 0;  /* Align it to the left on mobile */
      position: relative;
  }

  /* Second image: to the right */
  .three-img-container .image:nth-child(2) {
      margin-left: auto;
      z-index: 2;
      left: auto; /* Reset left */
      right: 0;  /* Align it to the right */
      position: relative;
      top: -10px;  /* Adjust for positioning */
  }

  /* Third image: to the left */
  .three-img-container .image:nth-child(3) {
      margin-left: 25px;
      margin-right: 0;
      z-index: 1;
      top: 15px;
      left: 0;  /* Align it to the left */
      position: relative;
  }
}

    .three-img-container .image + .image {
        margin-top: -12.65%;
    }

    .three-img-container .image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }
/* From Uiverse.io by neerajbaniwal */
.btn-shine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 48px;
    color: #fff;
    background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
  }
  @-moz-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-webkit-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-o-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }

  /* pricing */
  .pricing-logo{
    object-fit: cover;
    overflow: hidden;
    max-width: 35vw;
  }

  .section-item {
    margin-bottom: 1rem;
}

/* ------------------------------------------------------------------ */
/* --- Option 1: Smooth Fade (Opacity Transition) --- */
/* ------------------------------------------------------------------ */
.nav-item.dropdown .dropdown-menu.smooth-fade {
    display: block; /* Override Bootstrap's default display: none */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-item.dropdown .dropdown-menu.smooth-fade.show {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------------------------------ */
/* --- Option 2: Slide Down (Vertical Translation) --- */
/* ------------------------------------------------------------------ */
.nav-item.dropdown .dropdown-menu.slide-down {
    display: block; /* Override Bootstrap's default display: none */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* Start 10px above its final position */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.nav-item.dropdown .dropdown-menu.slide-down.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Slide to its final position */
}

/* ------------------------------------------------------------------ */
/* --- Option 3: Grow In (Scale and Fade) --- */
/* ------------------------------------------------------------------ */
.nav-item.dropdown .dropdown-menu.grow-in {
    display: block; /* Override Bootstrap's default display: none */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95); /* Start slightly smaller */
    transform-origin: top center; /* Ensure it scales from the top center */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.nav-item.dropdown .dropdown-menu.grow-in.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1); /* Grow to its final size */
}

