.gap-3 {
    gap: 1rem !important;
}
.custom-btn {
            background: none;
            border: none;
            cursor: pointer;
        }

        .custom-icon {
            background-color: #000;
            color: white;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: red;
            border-radius: 50%;
            text-decoration: none;
            color: white;
            font-size: 20px;
            transition: 0.3s ease-in-out;
        }

        .social-icons a:hover {
            transform: scale(1.1);
        }

        .facebook {
            background: #1877F2;
        }

        .instagram {
            background: #E4405F;
        }

        .linkedin {
            background: #0077B5;
        }

        .youtube {
            background: #FF0000;
        }

        .border-bottom-custom {
            padding-bottom: 10px;
            gap: 10px;
        }

        .nav-tabs {
            border: none !important;
        }

        .btn-tab {
            background-color: #e36416 !important;
            color: white !important;
        }

        .btn-tab:hover {
            background-color: #075192 !important;
            color: white !important;
        }


        .photo-upload-container {
            position: relative;
            width: 100%;
            height: 290px;
            background: url('./img/WhatsApp Image 2025-03-06 at 2.44.07 PM.jpeg') no-repeat center center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-family: Arial, sans-serif;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
            margin: auto;
        }

        .photo-upload-container:hover::before {
            opacity: 0.8;
        }

        .carousel-item img {
            width: 100%;
            height: 500px;
            /* Fixed height for consistency */
            object-fit: cover;
            /* Ensures images scale properly without distortion */
        }

        .photo-upload-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .photo-upload-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .photo-upload-content img {
            width: 150px;
            margin-bottom: 10px;
        }

        .video-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: auto;
            cursor: pointer;
        }

        .video-thumbnail {
            width: 100%;
            border-radius: 10px;
            display: block;
            height: 290px;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .play-button img {
            width: 40px;
            height: 40px;
        }

        .play-button:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .ratings {
            align-items: center;
            flex-direction: column;
            text-align: center;
        }
  .rating { display: flex; gap: 5px; margin-top: 20px; cursor: pointer; }
        .star { font-size: 30px; color: #ddd; }
        .star.filled { color: #f39c12; }

        .rating-badge {
            background-color: #28a745;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
        }

        .tab-content {
            border: 1px solid gray;
            border-radius: 10px;
        }

        .div-top {
            border-bottom: 1px solid gray;
            padding: 15px;
        }

        .div {
            border-bottom: 1px solid gray;
            border-top: 1px solid gray;
            padding: 15px;
        }

        .div-bottom-2 {
            border-bottom: 1px solid gray;
            border-top: 1px solid gray;
            padding: 10px;
        }

        .div-bottom {
            padding: 15px;
        }

        .cards {
            border: none;
            background: #f7f7f7;
            box-shadow: 2px 3px 5px 2px #00000057;
            padding: 20px 10px;
            border-radius: 20px;
        }

        .rating {
            background-color: #28a745;
            color: white;
            padding: 3px 7px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
        }

        .category {
            font-size: 14px;
            font-weight: bold;
            color: #666;
        }

        .location {
            font-size: 14px;
            color: #777;
            margin: 0;
        }

        .upload-btn {
            display: flex;
            align-items: center;
            background-color: #2196F3;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 5px;
        }

        .upload-btn svg {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        .upload-btn input {
            display: none;
        }

        .nav-tabs .nav-link {
            background: #075192;
            color: white;
        }

        .nav-tabs .nav-link:hover {
            background-color: #e36416 !important;
            color: white !important;
        }

        .nav-tabs .nav-item.show .nav-link,
        .nav-tabs .nav-link.active {
            background-color: #e36416 !important;
            color: white !important;
        }

        .dropdown {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .dropdown-btn {
            background-color: white;
            border: none;
            font-weight: 700;
        }

        .dropdown-content {
            display: none;
            position: relative;
            background-color: #fafafa;
            padding: 10px;
            border: 1px solid #ccc;
            border-top: none;
            border-radius: 0 0 4px 4px;
        }

        .dropdown-content p {
            margin: 5px 0;
        }

        /* Animation for smooth open/close */
        .dropdown-content.open {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }