a{
  text-decoration: none;
}
    .banner-carousel-item {
      min-height: 70vh;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      color: #333;
    }

    .overlay {
      background-color: rgba(255, 255, 255, 0.8);
      padding: 50px;
      border-radius: 12px;
      color: black;
    }

    .banner-carousel-caption {
      text-align: left;
      left: 10%;
      right: auto;
      bottom: auto;
      top: 10%;
    }

    .banner-carousel-caption h5 {
      font-family: 'Brush Script MT', cursive;
      font-size: 28px;
      color: #000;
    }

    .banner-carousel-caption h1 {
      font-size: 48px;
      font-weight: 700;
    }

    .banner-carousel-caption p {
      font-size: 18px;
    }

    .banner-carousel-caption .btn {
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .banner-carousel-caption h1 {
        font-size: 30px;
      }

      .overlay {
        padding: 30px;
      }
    }
  
    /* circle section  */
    
 .event-icon {
      background-color: #93B1B5; /* light peach tone */
      width: 170px;
      height: 170px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      transition: transform 0.3s ease;
    }

    .event-icon:hover {
      transform: scale(1.05);
       border: 1px solid black;
    }

    .event-icon img {
      width: 70px;
      height: 70px;
      object-fit: contain;
    }

    .event-title {
      margin-top: 10px;
      font-size: 16px;
      font-weight: 500;
      color: #111;
    }

    .event-block {
      text-align: center;
      margin-bottom: 30px;
    }




    
    /* gift cards  */
  .gift-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      grid-auto-rows: 1fr;
      gap: 20px;
      padding: 40px 20px;
    }

    .gift-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s ease;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .gift-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
    }

    .gift-card:hover {
      transform: scale(1.02);
    }

    .gift-label {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: rgba(255, 255, 255, 0.9);
      color: #000;
      font-weight: 600;
      padding: 6px 18px;
      border-radius: 12px;
      font-size: 16px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .explore-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
      background-color: #fff;
      border-radius: 20px;
      /* box-shadow: 0 4px 8px rgba(0,0,0,0.05); */
      height: 100%;
    }

    .explore-card h2 {
      font-family: 'Georgia', serif;
      font-size: 1.8rem;
      font-weight: 400;
      color: #333;
      margin-bottom: 20px;
    }

    .explore-card .btn {
      background-color: #0B2E33;
      color: #fff;
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 500;
      border: none;
      transition: background-color 0.3s ease;
    }

    .explore-card .btn:hover {
      background-color: #11464e;
    }





  /* product  */
   
    .product-top-bar {
      padding: 30px 40px 10px;
      display: flex;
      justify-content: space-between;
    }

    .product-top-bar h2 {
      font-weight: 700;
      font-size: 2.5rem;
    }

    .category-menu {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .category-menu button {
      background: transparent;
      border: 1px solid black;
      padding: 6px 14px;
      border-radius: 20px;
      color: black;
      cursor: pointer;
      transition: 0.3s;
    }

    .category-menu button:hover,
    .category-menu button.active {
      background-color: #0B2E33;
      color: white;
    }
/* 
    .card-custom {
      background-color: #e6f0ff;
      border: none;
      border-radius: 16px;
      padding: 10px;
      transition: all 0.3s ease;
      position: relative;
      height: 100%;
    
    }

    .card-custom:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .card-body {
      padding: 10px 10px 5px;
    }

    .product-img {
      height: 120px;
      object-fit: contain;
    }

    .product-title {
      font-weight: 600;
      color: #000;
      font-size: 0.95rem;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .price {
      font-weight: bold;
      font-size: 15px;
      color: #000;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .rating {
      color: #004080;
      font-size: 13px;
    }

    .form-label {
      font-size: 13px;
      margin-bottom: 0;
    }

    .dropdown-select {
      border-radius: 8px;
      font-size: 13px;
      padding: 4px 8px;
      height: 32px;
      flex: 1;
    }

    .add-btn {
      background-color: #003580;
      color: white;
      font-weight: 500;
      border-radius: 8px;
      font-size: 13px;
      padding: 6px 10px;
    }

    .badge-new {
      background-color: red;
      color: white;
      font-size: 12px;
      padding: 5px 8px;
      border-radius: 6px;
      position: absolute;
      top: 10px;
      left: 10px;
    } */




      .product-card {
      background-color: #eaf2fc;
      border-radius: 15px;
      padding: 15px;
      position: relative;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      max-width: 330px;
      color: black;
    }

    .discount-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: #0B2E33;
      color: white;
      font-size: 12px;
      padding: 5px 8px;
      border-radius: 6px;
      font-weight: 600;
    }

    .wishlist-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      font-size: 18px;
      color: #0B2E33;
    }

    .product-image {
      width: 100%;
      height: 200px;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .product-title {
      font-weight: 600;
      font-size: 1.1rem;
      
    }

    .product-category {
      font-size: 0.85rem;
      color: #555;
    }

    .rating-stars {
      color: #f1c40f;
      font-size: 0.9rem;
    }

    .product-price {
      font-size: 1.5rem;
      font-weight: bold;
      display: flex;
      align-items: baseline;
      gap: 5px;
    }

    .product-price span {
      font-size: 0.9rem;
      color: #555;
      
    }

    .form-select,
    .form-control {
      font-size: 0.9rem;
      border-radius: 10px;
    }

    .add-to-cart {
      background-color: #0B2E33;
      color: white;
      border-radius: 10px;
      font-weight: 500;
    }

    .add-to-cart:hover {
      background-color: #2DCD7C;
    }

    .form-row {
      display: flex;
      gap: 10px;
    }

    .form-label {
      font-size: 0.8rem;
      margin-bottom: 3px;
      color: #333;
    }

    @media (max-width: 768px) {
      .category-menu {
        justify-content: center;
      }

       .product-top-bar{
        flex-direction: column;
       }

        .event-icon {
      width: 100px;
      height: 100px; }


       .gift-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    }

    @media (max-width: 1160px) {
     
        .event-icon {
      width: 120px;
      height: 120px; }
    }
    
    
    .Product-btn{
        background-color:#0B2E33 ;
        color:white;
        padding: 5px;
        border-radius: 10px;
    }


     /* main categroy section  */

       .category-section {
      padding: 60px 0;
      text-align: center;
    }
    .title-section{
      display: flex;
      margin-bottom: 40px;
    justify-content: space-between;
    align-items: center;
    }

    .title-section h4{
text-decoration: none;
color: black;
    }

    .category-title {
      font-size: 2.5rem;
      font-weight: bold;
      
    }
    .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      background-color: #fff;
      color: #000;
      transition: all 0.3s ease-in-out;
    }
    .category-card:hover {
      background: linear-gradient(to bottom right, #14525c, #0B2E33);
      color: #fff;
      transform: translateY(-5px);
    }
    .category-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    .card-body h5 {
      font-size: 1.25rem;
      font-weight: 600;
    }
    .show-more-btn {
      background-color: #0B2E33;
      color: white;
      border-radius: 10px;
      padding: 8px 16px;
      font-weight: 500;
      transition: background 0.3s;
    }
    .show-more-btn:hover {
      background-color: #0B2E33;
    }

/* catalog  */
.carousel-item-catalog {
      padding: 40px;
      border: 1px solid #ccc;
      border-radius: 10px;
      background-color: white;
      color: #000;
    }

    .carousel-indicators-catalog [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .carousel-indicators-catalog .active {
      background-color: #0B2E33;
    }

    .btn-discover {
      background-color: #0B2E33;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 12px 30px;
      font-size: 1rem;
      transition: background 0.3s ease;
    }

    .btn-discover:hover {
      background-color: #0B2E33;
    }

    .feature-title {
      font-weight: bold;
    }

    .product-image-catalog {
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .carousel-item .row {
        flex-direction: column-reverse;
      }

      .title-section h2{
     font-size: 27px;
      }

       .title-section h4{
     font-size: 17px;
      }
    }




    /* <!-- *********************************FAQ SECTION****************************************************** --> */


.acordation-section{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding: 30px 60px;
  
}


.faq .fqa-heading{
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 30px;
}

.faq-image{
    width:500px;
    margin-top: 50px;
   
}

.faq-image img{
   width: 100%;
}

@media(max-width:  768px) {
  .acordation-section{
   flex-direction: column;
   justify-content: center;
   align-items: center;

}

.faq-image{
    width:300px;
    margin-top: 50px;
    margin-bottom: 50px;
   
}

}

