/* FAQ  */
.faq-container {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-header h2 {
            font-size: 2.5rem;
            color: #2c2c2c;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 15px;
            position: relative;
        }

        .faq-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background: linear-gradient(45deg, rgb(203, 129, 97), rgb(203, 129, 97));
            margin: 20px auto;
        }

        .faq-header p {
            font-size: 1.1rem;
            color: #666;
            font-style: italic;
        }

        .faq-item {
            background: #fff;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
        }

        .faq-question {
            padding: 25px 30px;
            background: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .faq-question:hover {
            background: #f8f8f8;
            border-left-color: rgb(203, 129, 97);
        }

        .faq-question h3 {
            font-size: 1.2rem;
            color: #2c2c2c;
            font-weight: 400;
            margin: 0;
            flex: 1;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            border: 2px solid rgb(203, 129, 97);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            margin-left: 20px;
            flex-shrink: 0;
        }

        .faq-icon::before {
            content: '+';
            color: rgb(203, 129, 97);
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #fff;
        }

        .faq-answer-content {
            padding: 0 30px 30px 30px;
            color: #666;
            line-height: 1.7;
            border-top: 1px solid #f0f0f0;
        }

        .faq-item.active .faq-question {
            background: #f9f9f9;
            border-left-color: rgb(203, 129, 97);
        }

        .faq-item.active .faq-icon {
            background: rgb(203, 129, 97);
            transform: rotate(45deg);
        }

        .faq-item.active .faq-icon::before {
            color: #fff;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .highlight {
            color: rgb(203, 129, 97);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .faq-container {
                margin: 30px auto;
                padding: 0 15px;
            }

            .faq-header h2 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .faq-question {
                padding: 20px 20px;
            }

            .faq-question h3 {
                font-size: 1.1rem;
            }

            .faq-answer-content {
                padding: 0 20px 25px 20px;
            }

            .faq-icon {
                margin-left: 15px;
            }
        }

        .cta-section {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: linear-gradient(135deg, #f8f8f8, #fff);
            border-radius: 12px;
            border: 1px solid #eee;
        }

        .cta-section h3 {
            color: #2c2c2c;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .cta-section p {
            color: #666;
            margin-bottom: 25px;
        }

        .contact-btn {
            background: linear-gradient(45deg, rgb(203, 129, 97), rgb(203, 129, 97));
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            color: white;
        }


        .otp{
            margin-top: 10px; width: 100%; background-color: black; color: white;
        }

        .otp:hover{
            background-color: #cb8161;
        }

        .item-images{
            width: 100%;
        }
       
        .item-images img{
            border-radius: 50%;
        }
       
        /* sub-category  */

         .sub-cat-img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      background-color: #f9f9f9;
      padding: 10px;
      transition: transform 0.3s ease;
    }
    .sub-cat-img:hover {
      transform: scale(1.05);
    }
    .sub-cat-title {
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 10px;
    }
    .sub-cat-item {
      text-align: center;
      margin-bottom: 30px;
    }