/* Home CSS - Combined Custom Styles */

/* Story Area Styles */
.story-area.default-padding {
  padding-bottom: 70px;
}

.story-box {
  margin-bottom: -15px;
  margin-top: -10px;
  position: relative;
}

.story-box li {
  position: relative;
  padding: 7px 0 24px 32px;
  transition: all 100ms;
  -webkit-transition: all 100ms;
  -moz-transition: all 100ms;
  -ms-transition: all 100ms;
  -o-transition: all 100ms;
  min-height: 44px;
  list-style: none;
}

.story-box li::before, .story-box li::after {
  transition: all 100ms;
  -webkit-transition: all 100ms;
  -moz-transition: all 100ms;
  -ms-transition: all 100ms;
  -o-transition: all 100ms;
}

.story-box li::before {
  background-color: #FFFFF5;
  border: 3px solid #000000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 30px;
  z-index: 2;
}

.story-box li::after {
  content: '';
  display: block;
  width: 6px;
  background-color:#FFFFF5;
  position: absolute;
  top: 0;
  left: 10px;
  height: 168%;
  z-index: 1;
}

.story-box li:first-child::after {
  top: 10px;
}

.story-box li:last-child::after {
  height: 10px;
}

.story-box li:last-child {
  padding-bottom: 0;
}

.story-box h4 {
  text-transform: uppercase;
}

.story-box h3 {
  text-transform: capitalize;
  font-weight: 500;
}

@media (min-width: 800px) {
  .story-box li:nth-child(odd) {
    text-align: right;
    padding-left: 0;
    padding-right: calc(50% + 22px);
  }

  .story-box li:nth-child(even) {
    padding-left: calc(50% + 20px);
  }

  .story-box li::before {
    left: calc(50% - 10px);
  }

  .story-box li::after {
    left: 50%;
  }
}

/* Group List Styles */
.grouplistsec {
    background-color: #FFFFF5;
    padding: 0px 0;
    border-top: 2px solid hsl(74, 100%, 50%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.grouplist {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.grouplist li {
    margin: 0 20px;
    background-color: #1C8205;
    border-radius: 5px;
    padding: 10px 25px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.grouplist li:hover {
    background-color: #fcc729;
}

.grouplist a {
    text-decoration: none;
    color: #FFFFF5;
    font-weight: bold;
}

.tab-content {
    padding: 20px;
    background: linear-gradient(to bottom, #fffff5, #f0f8ff);
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Welcome Page Specific Styles */
@media (min-width: 768px) {
    .col-md-6 {
        width: 42%;
    }
}

.swiper-pagination-bullet {
    position: relative !important;
    width: 18px !important;
    height: 18px !important;
    background: transparent !important;
    border: 2px solid #FCDB5A !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* green bahar na aaye */
}

/* green circle banayenge pseudo-element se */
.swiper-pagination-bullet::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.3s ease;
}

/* jab active ho to pseudo-element green ho jaye */
.swiper-pagination-bullet-active::after {
    background: #1C8205 !important;
}



.carousel-indicators [data-bs-target] {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid #FCDB5A;  
    background-color: transparent;
    opacity: 1;
    margin: 0 6px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.carousel-indicators .active {
    background-color: #FFFCF2; 
    border-color: #FCDB5A;     
    background-clip: content-box; 
    padding: 2px;               
}


/* Welcome Page Body Styles */
.welcome-page body {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
    background: #FFFFF5;
}

.space {
    padding: 60px 0;
}

.product-card {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-card .card-body {
    padding: 0rem;
    min-height: 87px;
    transition: background-color 0.3s ease;
    background: #FFFFF5;
}

.product-card:hover .card-body {
    background-color: #Fbc628;
    color: #FFFCF5 !important;
}

.product-card .card-title {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
    margin-top: 25px;
}
.product-card:hover .card-title {
    color: #FFFFF5  !important;
}

/* Mobile View Styles */
@media (max-width: 768px) {
    .grouplist {
        flex-direction: column;
        align-items: center;
    }

    .grouplist li {
        margin: 10px 0;
        width: 80%;
        padding: 15px;
    }

    .tab-content {
        padding: 15px;
    }
}

/* Additional Welcome Page Styles */
.choose-card {
    flex: 1 1 calc(20% - 20px);
    background-color: #FEF4CC;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    min-height: 320px;
    transition: background-color 0.3s ease;
    border-radius: 24px;
}

.choose-card.active {
    background-color: #fbc628 !important;
    color: #FFFFF5;
}

.choose-card:hover h4 {
    color: #FFFFF5;
}

.carousel-indicators {
    position: relative;
    bottom: 12px;
    margin-top: -35px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #FCDB5A;
    background-color: transparent;
    margin: 0 6px;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background-color: #1C8205;
    border: 2px solid #FCDB5A;
}

/* Gallery Indicators */
.custom-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: transparent;
    border: 2px solid #FCDB5A;
    transition: all 0.3s ease;
}

.custom-indicator.active {
    background-color: #1C8205;
}

/* Free Consultation Button */
.exact-consultation-btn {
    border: 2px solid #1C8205;
    border-radius: 12px;
    box-shadow: 0 0 0 3px #FFFFF5 inset;
    padding-right: 27px;
    padding-left: 28px;
    padding-top: 16px;
    margin-top: 10px;
    margin-bottom: 4px;
    background-color: #1C8205;
}

/* Product Section Background */
.product-section {
    background-image: url('/images/home/products-new/our-products (1).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
}
.why-choose-us-section {
    position: relative; 
    background-color: #fffff5; 
    padding: 0px 0;;
}
.why-choose-us-img{
    position: absolute; 
    top: 0; left: 0; 
    z-index: 1;
}

.why-choose-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 57px 15px;
}


