/* Tab Navigation Styles */



#search-form{
 

        .search-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 28px;
            color: white;
            cursor: pointer;
            z-index: 10;
            transition: transform 0.3s;
        }

        .search-icon:hover {
            transform: scale(1.1);
        }

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 3rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .nav-tabs-custom {
            border: none;
            margin-bottom: 0;
        }

        .nav-tabs-custom .nav-link {
            background-color: #17233ee3;
            color: #a67c00;
            border: none;
            padding: 7px 30px;
            font-size: 14px;
            border-radius: 0;
            transition: all 0.3s;
            /* font-weight: bold; */
        }

        .nav-tabs-custom .nav-link:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .nav-tabs-custom .nav-link.active {
            background-color: #a67c00;
            color: #000;
        }

        .search-form-container {
            background-color: white;
            padding: 17px;
            border-radius: 0 8px 8px 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            max-width: 1200px;
            width: 100%;
        }

        .form-group-custom {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 0;
        }

        .form-group-custom i {
            font-size: 24px;
            color: #666;
        }

        .form-group-custom label {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
            display: block;
        }

        .form-group-custom input,
        .form-group-custom select {
            border: none;
            padding: 8px 0;
            font-size: 1rem;
            width: 100%;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group-custom input:focus,
        .form-group-custom select:focus {
            border-bottom-color: #2196F3;
        }

        .form-group-custom input::placeholder {
            color: #999;
        }

        /* Marquee placeholder effect for mobile */

        .btn-search {
            background-color: #2196F3;
            color: white;
            padding: 15px 20px;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            /* font-weight: 600; */
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .btn-search:hover {
            background-color: #1976D2;
        }

        .advance-link {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 10px;
        }

        .advance-link:hover {
            color: #2196F3;
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .nav-tabs-custom .nav-link {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .search-form-container {
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }

            .nav-tabs-custom .nav-link {
                padding: 10px 20px;
                font-size: 0.95rem;
            }

            .search-form-container {
                padding: 15px;
            }

            .form-group-custom {
                flex-direction: column;
                align-items: flex-start;
                /* margin-bottom: 20px; */
            }

            .btn-search {
                padding: 12px 30px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 0.8rem;
            }

            .nav-tabs-custom {
                display: flex;
                /* justify-content: center; */
            }

            .nav-tabs-custom .nav-link {
                padding: 8px 15px;
                font-size: 0.85rem;
            }

            .search-icon {
                font-size: 24px;
                top: 15px;
                right: 20px;
            }

            .row > *{
                margin-top: 0px !important;
            }
        }

        .nav-tabs > li.nav-item {
             margin: 0 0;
        }
        .nav-tabs{
            background-color: transparent !important;
        }

        .nir-btn{
           padding: 14px 24px;
        }

        
    .border-radius-top-left {
        border-radius: 8px 0px 0px 0px !important;;
    }
    .border-radius-top-right {
        border-radius: 0px 8px 0px 0px !important;
    }
   

}