 .navbar {
            background: white;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        .nav-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .notification-btn {
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-btn:hover {
            background-color: #f1f5f9;
        }

        .notification-icon {
            width: 24px;
            height: 24px;
            color: #64748b;
            transition: color 0.2s ease;
        }

        .notification-btn:hover .notification-icon {
            color: #334155;
        }

        .notification-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            border: 2px solid white;
        }

        .notification-container {
            position: relative;
        }

        .notification-dropdown {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2e8f0;
            width: 350px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 1000;
            max-height: 400px;
            overflow-y: auto;
        }

        .notification-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .notification-dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 20px;
            width: 12px;
            height: 12px;
            background: white;
            border: 1px solid #e2e8f0;
            border-bottom: none;
            border-right: none;
            transform: rotate(45deg);
        }

        .notification-header {
            padding: 16px 20px 12px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .notification-title {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .notification-count {
            background: #3b82f6;
            color: white;
            font-size: 12px;
            font-weight: 500;
            padding: 2px 8px;
            border-radius: 12px;
            min-width: 20px;
            text-align: center;
        }

        .notification-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px 20px;
            border-bottom: 1px solid #f1f5f9;
            cursor: pointer;
            transition: background-color 0.2s ease;
            text-decoration: none;
            color: inherit;
        }

        .notification-item:hover {
            background-color: #f8fafc;
        }

        .notification-item:last-child {
            border-bottom: none;
        }

        .notification-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #64748b;
            font-size: 14px;
            flex-shrink: 0;
        }

        .notification-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .notification-content {
            flex: 1;
            min-width: 0;
        }

        .notification-message {
            font-size: 14px;
            color: #374151;
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .notification-time {
            font-size: 12px;
            color: #9ca3af;
        }

        .notification-unread {
            position: relative;
        }

        .notification-unread::after {
            content: '';
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: #3b82f6;
            border-radius: 50%;
        }

        .no-notifications {
            padding: 40px 20px;
            text-align: center;
            color: #9ca3af;
            font-size: 14px;
        }

        .profile-container {
            position: relative;
        }

        .profile-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 2px;
            border-radius: 50%;
            transition: all 0.2s ease;
            position: relative;
        }

        .profile-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .profile-image {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            transition: border-color 0.2s ease;
        }

        .profile-btn:hover  {
            border-color: #3b82f6;
        }

        .online-indicator {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 12px;
            height: 12px;
            background: #10b981;
            border: 2px solid white;
            border-radius: 50%;
        }

        .dropdown {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2e8f0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            z-index: 1000;
        }

        .dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 16px;
            width: 12px;
            height: 12px;
            background: white;
            border: 1px solid #e2e8f0;
            border-bottom: none;
            border-right: none;
            transform: rotate(45deg);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            text-decoration: none;
            color: #374151;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }

        .dropdown-item:first-child {
            border-radius: 12px 12px 0 0;
        }

        .dropdown-item:last-child {
            border-radius: 0 0 12px 12px;
            color: #dc2626;
        }

        .dropdown-item:hover {
            background-color: #f8fafc;
        }

        .dropdown-item:last-child:hover {
            background-color: #fef2f2;
        }

        .dropdown-icon {
            width: 18px;
            height: 18px;
            color: currentColor;
        }

        .dropdown-divider {
            height: 1px;
            background-color: #e2e8f0;
            margin: 4px 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                padding: 12px 16px;
                margin: 0 10px;
            }

            .nav-icons {
                gap: 16px;
            }

            .notification-btn {
                padding: 6px;
            }

            .profile-image {
                width: 36px;
                height: 36px;
            }

            .online-indicator {
                width: 10px;
                height: 10px;
            }

            .dropdown {
                right: -10px;
                min-width: 180px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 10px 12px;
                margin: 0 5px;
            }

            .nav-icons {
                gap: 12px;
            }

            .dropdown {
                right: -5px;
                left: auto;
                min-width: 160px;
            }
        }         
         
         /* Dashboard Styles */
           .dashboard-container {
            padding: 20px;
        }
        
        .dashboard-section {
          background-color: #fdfdfd;
            padding: 20px;  
            margin-bottom: 20px;
            padding-bottom: 45px;
            border-bottom: 3px solid #CCDCDC;
        
        }
        .dashboard-section:last-child {
            
              border-bottom: none;
          
          }
        
        .section-title {
            color: #AAAAAA;
            font-family: Poppins;
            font-weight: 500;
            font-size: 14px;
            line-height: 100%;
            letter-spacing: 0px;
            text-align: center;
            margin-bottom: 25px;
            
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
        }
        
        .icon-circle {
            width: 73px;
            height: 74px;
            background-color: #FFF;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0px 15px 25px 0px #00000026;
        }
        
        .menu-icon {
            color: #6c757d;
            font-size: 24px;
        }
        
        .menu-text {
            font-family: Poppins;
            font-weight: 500;
            font-size: 14px;
            line-height: 100%;
            letter-spacing: 0px;
            text-align: center;
            color: #666666;            
        }
        
        .divider {
            height: 1px;
            background-color: #d8dbdf;
            margin: 15px 0;
        }
      
        
        /* Header Styles */
        .header {
            background-color: white;
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            margin-bottom: 30px;
        }
        
        .back-btn-header {
            border: none;
            background: transparent;
            padding: 0;
        }
        
        .header-title {
            font-size: 18px;
            font-weight: 500;
            margin: 0;
            color: #333;
        }
        
        .menu-btn {
            border: none;
            background: white;
        }
        
        /* Off-canvas Styles */
        .offcanvas {
            max-width: 80%;
            background-color: #fdfdfd !important;
        }
        
        .offcanvas-header {
            padding: 20px;
            border-bottom: 1px solid #e9ecef;
            background-color: white;
        }
        
        .offcanvas-title {
            font-weight: bold;
            font-size: 1.25rem;
        }
        
        .offcanvas-body {
            padding: 0;   
        }
        
         #searchInput{
            padding-left: 50px;
         }
       
        .search-wrapper {
            position: relative;
            margin: 100px auto;
        }
        
        .search-input {
            border-radius: 25px;
            padding-left: 45px;
            height: 50px;
            border: 1px solid #ddd;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
            border-color: #6c5ce7;
        }
        
        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c5ce7;
            z-index: 10;
            font-size: 18px;
        }
        
        .dropdown-menu {
            width: 100%;
            border-radius: 15px;
            margin-top: 8px;
            padding: 8px 0;
            border: none;
            box-shadow: 0px 20px 50px 0px #00000026;
            animation: fadeIn 0.2s ease-out;
            max-height: 300px;
            overflow-y: auto;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dropdown-item {
            padding: 12px 20px;
            transition: all 0.2s;
            font-weight: 500;
            border-left: 3px solid transparent;
        }
        
        .dropdown-item.active, 
        .dropdown-item:active {
            background-color: #6c5ce7;
            color: white;
            border-left: 3px solid #5344c7;
        }
        
        .dropdown-item:hover {
            background-color: #f3f0ff;
            border-left: 3px solid #6c5ce7;
        }
        
        .option-item {
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .no-results {
            padding: 16px 20px;
            color: #888;
            text-align: center;
            font-style: italic;
            display: none;
            border-top: 1px solid #f0f0f0;
            margin-top: 5px;
        }
        
        /* Custom scrollbar for dropdown */
        .dropdown-menu::-webkit-scrollbar {
            width: 6px;
        }
        
        .dropdown-menu::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .dropdown-menu::-webkit-scrollbar-thumb {
            background: #d0d0d0;
            border-radius: 10px;
        }
        
        .dropdown-menu::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
        
        /* Category style */
        .category-name {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 14px;
        }




        .popular-services {
            padding: 20px 0;
            position: relative;
        }
        
        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 0 15px;
        }
        
        .services-header h2 {
            font-size: 28px;
            font-weight: 600;
            margin: 0;
        }
        
        .services-header a {
            color: #00b300;
            text-decoration: none;
            font-weight: 600;
            font-size: 20px;
        }
        
        .service-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin: 10px;
            background-color: #fff;
            height: 190px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-img {
            height:200px;
            width: 100%;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-title {
            padding: 35px 15px;
            font-weight: 500;
            font-size: 16px;
            text-align: left;
        }
        
        /* Custom slick slider styling */
        .slick-list {
            padding: 10px 0;
        }
        
        .slick-track {
            display: flex;
            gap: 10px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .service-card {
                height: 170px;
            }
            
            .service-img {
                height: 200px;
            }
        }


 .video-container {
    position: relative;
    display: inline-block;
}

.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #555;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-play {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 8px 12px;
    background: #000;
    color: #fff;
    border: none;
    z-index: 3;
    cursor: pointer;
}

.video {
    display: block;
    background: #000;
}


/* populer */

        :root {
            --primary-purple: #8677EE;
            --text-gray: #9E9DA6;
            --light-gray: #f0f0f0;
        }
        
        body {
           font-family: 'Poppins', sans-serif;
            background-color: #F3F3F3;
            padding: 0;
            margin: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
       .header-curve {
            background-color: #fff;
            height: 100%;;
            width: 100%;
            margin-top: 500px;
            position: absolute;
            border-radius: 20px 20px 0px 0px;
        }
         .content-container {
            max-width: 500px;
            margin: -20px auto 0;
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        /* Product Info */
        .product-info {
            padding: 10px 15px;
        }
        
        .rating-container {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .star-icon {
            color: #ffc107;
            font-size: 12px;
        }
        
        .review-count {
            color: var(--text-gray);
            font-size: 12px;
            margin-left: 5px;
        }
        
        .delivery-info {
            color: var(--text-gray);
            gap: 10px;
            display: flex;
            align-items: center;
            font-weight: 400;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 1px;
            padding-left: 20px;

        }
        
        .price {
            color: var(--primary-purple);
            font-weight: 500;
            font-size: 18px;
            margin-left: 8px;
        }
        
        .price-label {
            color: var(--text-gray);
            font-size: 12px;
            vertical-align: middle;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 500;
            margin: 12px 0 5px 0;
        }
        
        .product-subtitle {
            color: var(--text-gray);
            font-size: 12px;
            margin-bottom: 15px;
        }
        
        /* More Details Section */
        .more-details {
            font-family: Poppins;
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 1px;
            color: #27272A;
            margin: 10px 0;
            padding: 0 15px;
        }
        
        .product-description {
            color: var(--text-gray);
            font-size: 12px;
            padding: 0 15px;
            margin-bottom: 20px;
        }
        
        /* Request Button */
        .request-btn {
            background-color: var(--primary-purple);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 500;
            width: 90%;
            display: block;
            margin: 20px auto;
            text-transform: uppercase;
        }
        
        /* Navigation */
        .navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-top: 1px solid #e6e6e6;
            border-bottom: 1px solid #e6e6e6;
            margin-top: 15px;
        }
        
        .back-btn, .next-btn {
            color: var(--text-gray);
            border: none;
            background: none;
            font-size: 20px;
        }
        
        .details-label {
            font-size: 14px;
            font-weight: 500;
        }
        
       

        /* jade */


        :root {
            --primary-purple: #8677EE;
            --text-gray: #9E9DA6;
            --light-gray: #f0f0f0;
        }
        
        body {
           font-family: 'Poppins', sans-serif;
            background-color: #F3F3F3;
            padding: 0;
            margin: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
       
         .content-container {
            max-width: 500px;
            margin: -20px auto 0;
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

          @media (max-width: 767px) {
                     .content-container {
                        
                        padding-bottom: 150px;
                    
                    }
        }
        
        /* Product Info */
        .product-info {
            padding: 10px 15px;
        }
        
        .rating-container {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .star-icon {
            color: #ffc107;
            font-size: 12px;
        }
        
        .review-count {
            color: var(--text-gray);
            font-size: 12px;
            margin-left: 5px;
        }
        
        .delivery-info {
            color: var(--text-gray);
            gap: 10px;
            display: flex;
            align-items: center;
            font-weight: 400;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 1px;
            padding-left: 20px;

        }
        
        .price {
            color: var(--primary-purple);
            font-weight: 500;
            font-size: 18px;
            margin-left: 8px;
        }
        
        .price-label {
            color: var(--text-gray);
            font-size: 12px;
            vertical-align: middle;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 500;
            margin: 12px 0 5px 0;
        }
        
        .product-subtitle {
            color: var(--text-gray);
            font-size: 12px;
            margin-bottom: 15px;
        }
        
        /* More Details Section */
        .more-details {
            font-family: Poppins;
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 1px;
            color: #27272A;
            margin: 10px 0;
            padding: 0 15px;
        }
        
        .product-description {
            color: var(--text-gray);
            font-size: 12px;
            padding: 0 15px;
            margin-bottom: 20px;
        }
        
        /* Request Button */
        .trial-btn {
            color: #003E4F;
            border: 1px solid #169BC0;
            font-weight: 700;
            background: transparent;
            font-size: 18px;
            line-height: 100%;
            letter-spacing: 0.22px;
            text-align: center;
            padding: 26px 32px;
            border-radius: 30px;

        }
        
        /* Navigation */
        .navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-top: 1px solid #e6e6e6;
            border-bottom: 1px solid #e6e6e6;
            margin-top: 15px;
        }
        
        .back-btn, .next-btn {
            color: var(--text-gray);
            border: none;
            background: none;
            font-size: 20px;
        }
        
        .details-label {
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Bottom Navigation */
        .bottom-nav {
            display: flex;
            justify-content: space-around;
            padding: 15px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid #e6e6e6;
        }
        
        .nav-icon {
            color: var(--text-gray);
            font-size: 20px;
        }
        
        .active {
            color: var(--primary-purple);
        }
        
        /* Media Query for smaller phones */
        @media (max-width: 350px) {
            .product-image-container {
                padding-top: 100%; /* Maintain aspect ratio */
            }
            
            .price {
                font-size: 16px;
            }
            
            .product-title {
                font-size: 14px;
            }
        }

        .auth-img img{
            width: 47px;
            height: 47px;

        }

        .slider-container {
      position: relative;
      max-width: 500px;
      margin: 0 auto;
      overflow: hidden;
    }
    
    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    
    .slide {
      min-width: 100%;
      overflow: hidden;
    }
    .slide-row h2{
      font-family: Poppins;
      font-weight: 500;
      font-size: 22px;
      line-height: 100%;
      letter-spacing: 1px;
      color: #27272A;
    }
    
    .slide-img {
      height: 150px;
      width: 180px;
      border-radius: 20px;
      object-fit: cover;
    }
    
    .original-price {
      font-family: Poppins;
      font-weight: 500;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 1px;
      text-decoration: line-through;
      color: #9E9DA6;
    }
    
    .sale-price {
      font-family: Poppins;
      font-weight: 500;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 1px;
      color: #8677EE;
    }
    

    .indicators {
      display: flex;
      justify-content: center;
      margin-top: 15px;
    }
    
    .indicator {
      width: 12px;
      height: 12px;
      background-color: #ccc;
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
    }
    
    .indicator.active {
      background-color: #8677EE;
    }
    
    @media (max-width: 768px) {
      .slide-row {
        display: flex;
      }
      .header-curve{
        height: auto;
      }
        .slide-row .col-md-6{
        width: 50%;
        float: left;
      }
    }

    .price-table h1{
      font-family: Poppins;
      font-weight: 700;
      font-size: 48px;
      line-height: 60px;
      letter-spacing: 0px;
      text-align: left;
      color: #003E4F;

    }
    #prevBtn, #nextBtn{
      display: none;
    }


    /* catogary */

        :root {
            --primary-purple: #8677EE;
            --text-gray: #9E9DA6;
            --light-gray: #f0f0f0;
        }
        
        body {
           font-family: 'Poppins', sans-serif;
            background-color: #F3F3F3;
            padding: 0;
            margin: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
       .header-curve-catogary {
            background-color: #fff;
            height: 100%;;
            width: 100%;
            margin-top: 600px;
            position: absolute;
            border-radius: 20px 20px 0px 0px;
        }
         .content-container {
            max-width: 500px;
            margin: -20px auto 0;
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

          @media (max-width: 767px) {
                     .content-container {
                        
                        padding-bottom: 150px;
                    
                    }
        }
        
        /* Product Info */
        .product-info {
            padding: 10px 15px;
        }
        
        .rating-container {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }
        
        .star-icon {
            color: #ffc107;
            font-size: 12px;
        }
        
        .review-count {
            color: var(--text-gray);
            font-size: 12px;
            margin-left: 5px;
        }
        
        .delivery-info {
            color: var(--text-gray);
            gap: 10px;
            display: flex;
            align-items: center;
            font-weight: 400;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 1px;
            padding-left: 20px;

        }
        
        .price {
            color: var(--primary-purple);
            font-weight: 500;
            font-size: 18px;
            margin-left: 8px;
        }
        
        .price-label {
            color: var(--text-gray);
            font-size: 12px;
            vertical-align: middle;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 500;
            margin: 12px 0 5px 0;
        }
        
        .product-subtitle {
            color: var(--text-gray);
            font-size: 12px;
            margin-bottom: 15px;
        }
        
        /* More Details Section */
        .more-details {
            font-family: Poppins;
            font-weight: 500;
            font-size: 16px;
            line-height: 100%;
            letter-spacing: 1px;
            color: #27272A;
            margin: 10px 0;
        }
        
        .product-description {
            color: var(--text-gray);
            font-size: 12px;
            margin-bottom: 20px;
        }
        
       /* Request Button */
        .request-btn {
            background-color: var(--primary-purple);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 500;
            width: 100%;
            display: block;
            margin: 20px auto;
            text-transform: uppercase;
        }
        
        /* Navigation */
        .navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-top: 1px solid #e6e6e6;
            border-bottom: 1px solid #e6e6e6;
            margin-top: 15px;
        }
        
        .back-btn, .next-btn {
            color: var(--text-gray);
            border: none;
            background: none;
            font-size: 20px;
        }
        
        .details-label {
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Bottom Navigation */
        .bottom-nav {
            display: flex;
            justify-content: space-around;
            padding: 15px 0;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            border-top: 1px solid #e6e6e6;
        }
        
        .nav-icon {
            color: var(--text-gray);
            font-size: 20px;
        }
        
        .active {
            color: var(--primary-purple);
        }
        
        /* Media Query for smaller phones */
        @media (max-width: 350px) {
            .product-image-container {
                padding-top: 100%; /* Maintain aspect ratio */
            }
            
            .price {
                font-size: 16px;
            }
            
            .product-title {
                font-size: 14px;
            }
        }

        .auth-img img{
            width: 47px;
            height: 47px;

        }

        .slider-container {
      position: relative;
      max-width: 500px;
      margin: 0 auto;
      overflow: hidden;
    }
    
    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    
    .slide {
      min-width: 100%;
      overflow: hidden;
    }
    .slide-row h2{
      font-family: Poppins;
      font-weight: 500;
      font-size: 22px;
      line-height: 100%;
      letter-spacing: 1px;
      color: #27272A;
    }
    
    .slide-img {
      height: 150px;
      width: 180px;
      border-radius: 20px;
      object-fit: cover;
    }
    
    .original-price {
      font-family: Poppins;
      font-weight: 500;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 1px;
      text-decoration: line-through;
      color: #9E9DA6;
    }
    
    .sale-price {
      font-family: Poppins;
      font-weight: 500;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 1px;
      color: #8677EE;
    }
    

    .indicators {
      display: flex;
      justify-content: center;
      margin-top: 15px;
    }
    
    .indicator {
      width: 12px;
      height: 12px;
      background-color: #ccc;
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
    }
    
    .indicator.active {
      background-color: #8677EE;
    }
    
    @media (max-width: 768px) {
      .slide-row {
        display: flex;
      }
      .header-curve{
        height: auto;
      }
        .slide-row .col-md-6{
        width: 50%;
        float: left;
      }
    }

    .main-heading h1{
      font-family: Poppins;
      font-weight: 500;
      font-size: 17px;
      line-height: 60px;
      letter-spacing: 0px;
      text-align: left;
      color: #003E4F;

    }
    #prevBtn, #nextBtn{
      display: none;
    }
     .palce-unlimitid h1{
      color: #9E9DA6;
      font-family: "Poppins";
      font-weight: 400;
      font-size: 12px;
      line-height: 100%;
      letter-spacing: 1px;


    }

    .palce-unlimitid h2{
      color: #27272A;
      font-family: "Poppins";
      font-weight: 500;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 1px;
      text-align: right;

    }



    .dropdown-container {
            max-width: 500px;
                width: -webkit-fill-available !important;
                align-self: center;
            padding: 20px 0px;
        }
        
        .custom-dropdown {
            position: relative;
        }
        
        .dropdown-button {
            background-color: #7455F7;
            color: white;
            border: none;
            padding: 10px 10px;
            border-radius: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .dropdown-button:hover {
            background-color: #5d53e6;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin-top: 5px;
            padding: 10px 0;
            z-index: 1000;
            display: none;
        }
        
        .dropdown-menu.show {
            display: block;
        }
        
        .dropdown-item-catogory .dropdown-item {
            padding: 12px 20px;
            cursor: pointer;
            text-align: center;
            color: #666;
            transition: background-color 0.2s;
        }
        
        .dropdown-item-catogory .dropdown-item:hover {
            background-color: #f9f9f9;
        }
        
        .dropdown-item-catogory .dropdown-item.active {
            background-color: #7066F0;
            color: white;
        }
        
        .dropdown-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .dropdown-row {
                flex-direction: column;
            }
        }