/* Custom CSS for Bootstrap RJ Profile */

/* Light background gradients */
.bg-light-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.bg-white-glass {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient text effects */
.text-gradient-purple-pink {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-purple-blue {
    background: linear-gradient(135deg, #3a82f5, #07b2d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue-cyan {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-orange-red {
    background: linear-gradient(135deg, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient buttons */
.btn-gradient-purple {
    background: linear-gradient(135deg, #3a82f5, #07b2d2);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient-purple:hover {
    background: linear-gradient(135deg, #07b2d2, #3a82f5);
    transform: scale(1.05);
    color: white;
}

.btn-gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    transform: scale(1.05);
    color: white;
}

.btn-gradient-green {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient-green:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.05);
    color: white;
}

/* Icon backgrounds */
.icon-bg-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.icon-bg-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.icon-bg-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.icon-bg-purple {
    background: linear-gradient(135deg, #3a82f5, #07b2d2);
}

.icon-bg-orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.icon-bg-teal {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.icon-bg-yellow {
    background: linear-gradient(135deg, #eab308, #f97316);
}

.icon-bg-indigo {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

/* Social media specific colors */
.social-instagram {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}

.social-twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

/* Hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Live indicator */
.live-indicator {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Floating background decorations */
.bg-decoration {
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

.bg-decoration-1 {
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 50%;
    filter: blur(3rem);
}

.bg-decoration-2 {
    bottom: -10rem;
    left: -10rem;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    filter: blur(3rem);
}

.bg-decoration-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15rem;
    height: 15rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 50%;
    filter: blur(3rem);
}

/* Custom card styles */
.profile-card {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Tab styles */
.nav-tabs .nav-link {
    border: none;
    color: #6b7280;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    border-radius: 0.75rem;
}

.nav-tabs .nav-link:hover {
    background-color: #f3f4f6;
    border-radius: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-image-large {
        width: 150px !important;
        height: 150px !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }
}


.rohit::before {
    position: absolute;
    width: 100%;
    content: '';
    height: 500px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 0 0 50% 50%;
    z-index: -9;
}

.rj_inr_crd {
    background: linear-gradient(225deg, #14B8A6 0%, #1E40AF 100%);
}

/*===================== new rj css staer here ==========================*/

.new_rj_profile_card {
    perspective: 1000px;
    margin: 40px auto;
    margin-top: 0px;
}

.new_rj_profile_card-content {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.07);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    overflow: hidden;
}

.new_rj_profile_card:hover .new_rj_profile_card-content {
    transform: rotateY(5deg) rotateX(5deg);
}

.new_rj_profile_card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.new_rj_profile_card-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.new_rj_profile_card-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.new_rj_profile_card:hover .new_rj_profile_card-image img {
    transform: scale(1.05);
}

.new_rj_profile_card-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25), transparent 50%);
    pointer-events: none;
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.new_rj_profile_card:hover .new_rj_profile_card-glow {
    opacity: 1;
}

.new_rj_profile_card-info {
    padding: 15px;
    position: relative;
}

.new_rj_profile_card-name {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.new_rj_profile_card-title {
    margin-bottom: 10px;
    font-size: 14px;
    color: #5e60ce;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.new_rj_profile_card-bio {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.new_rj_profile_card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.new_rj_profile_card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
}

.new_rj_profile_card-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.new_rj_profile_card-stat-label {
    font-size: 12px;
    color: #777;
}

.new_rj_profile_card-actions {
    display: flex;
    gap: 6px;
}

.new_rj_profile_card-action-button {
    flex: 1;
    border: none;
    border-radius: 12px;
    padding: 8px 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new_rj_profile_card-action-button svg {
    transition: transform 0.3s ease;
}

.new_rj_profile_card-action-button.primary {
    background: linear-gradient(135deg, #5e60ce 0%, #4ea8de 100%);
    color: white;
}

.new_rj_profile_card-action-button.secondary {
    background: rgba(94, 96, 206, 0.1);
    color: #5e60ce;
}

.new_rj_profile_card-action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.new_rj_profile_card-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(94, 96, 206, 0.2);
}

.new_rj_profile_card-action-button:active {
    transform: translateY(-1px);
}

.new_rj_profile_card-action-button:hover::before {
    left: 100%;
}

.new_rj_profile_card-action-button:hover svg {
    transform: scale(1.1);
}

@media (max-width: 400px) {
    .new_rj_profile_card {
        width: 300px;
        height: 480px;
    }

    .new_rj_profile_card-image {
        height: 180px;
    }

    .new_rj_profile_card-info {
        padding: 20px;
    }

    .new_rj_profile_card-name {
        font-size: 20px;
    }

    .new_rj_profile_card-bio {
        font-size: 14px;
    }

    .new_rj_profile_card-stat-value {
        font-size: 16px;
    }

    .new_rj_profile_card-action-button {
        padding: 10px;
        font-size: 13px;
    }
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #1e40af 0%, #14b8a6 100%);
}

/* RJ Cards */
.rj-card-floating {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    /* animation: float 4s ease-in-out infinite; */
}

.rj-avatar img {
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-yellow);
    -o-object-fit: cover;
       object-fit: cover;
}

.rj-card-modern {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.rj-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rj-card-header {
    position: relative;
    text-align: center;
    padding: 1.5rem 2rem;
}

.rj-avatar-large {
    width: 120px;
    height: 120px;
    border: 4px solid var(--accent-yellow);
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    position: relative;
    z-index: 2;
}

.status-indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    top: 30px;
    right: 85px;
    z-index: 3;
}

.online-indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #10B981;
    border: 4px solid #fff;
    border-radius: 50%;
    top: 30px;
    right: 80px;
    animation: pulse 2s infinite;
    z-index: 999;
}

.status-indicator.live {
    background: #10B981;
    box-shadow: 0 0 15px rgb(16 185 129 / 50%);
    animation: pulse 2s infinite;
}

.status-indicator.offline {
    background: #6B7280;
}

.status-indicator.busy {
    background: #EF4444;
}

/* .rj-card-body {
    padding: 0 1rem 1rem;
} */
.rj-card-body h4{
    color: #1F2937;
}

.rj-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #1F2937;
}
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: all 0.3s ease;
}
.btn-warning {
    background: #F59E0B;
    border: none;
    color: #1F2937;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    z-index: -99;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: -4s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    right: 30%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.user-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.qa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.green{
  color: green;
}

.red{
  color: red;
}

.qa-actions button:focus{
    box-shadow: none;
}
.qa-actions button:hover{
    color: inherit;
}
.topind-trandingslide{
    padding-left: 0px;
}
.news-container-live .bx-viewport {
    height: 500px !important;
}

/* Design 1 - Glassmorphism */
.glassmorphism {
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.gradient-bg-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Design 2 - Neumorphism */
.neumorphism {
  background: #f0f0f3;
  border-radius: 20px;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.neumorphism-inset {
  background: #f0f0f3;
  border-radius: 15px;
  box-shadow: inset 8px 8px 16px #bebebe, inset -8px -8px 16px #ffffff;
}

/* Design 3 - Gradient Cards */
.gradient-card-1 {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.gradient-card-2 {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.gradient-card-3 {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Design 4 - Dark Mode with Neon */
.dark-bg {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
}

.neon-border {
  border: 2px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.neon-text {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
}

/* Design 5 - Minimalist */
.minimal-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.minimal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Design 6 - Colorful Blocks */
.color-block-1 { background: linear-gradient(45deg, #ff6b6b, #ee5a24); }
.color-block-2 { background: linear-gradient(45deg, #4ecdc4, #44a08d); }
.color-block-3 { background: linear-gradient(45deg, #a8e6cf, #7fcdcd); }
.color-block-4 { background: linear-gradient(45deg, #ffd93d, #ff6b6b); }
.color-block-5 { background: linear-gradient(45deg, #74b9ff, #0984e3); }

/* Design 7 - Retro Wave */
.retro-bg {
  background: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
}

.retro-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Common Animations */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translate(0, 0px); }
  50% { transform: translate(0, -15px); }
  100% { transform: translate(0, 0px); }
}

/* Custom Form Styles */
.form-control-modern {
  border: none;
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control-modern:focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  transform: translateY(-2px);
}

.btn-modern {
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Question Card Styles */
.question-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.question-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .glassmorphism, .neumorphism {
    margin: 10px;
  }
  
  .form-control-modern {
    font-size: 14px;
    padding: 12px 15px;
  }
	.login_modal-content{
		    width: 90% !important;
	}

}
.dflex{
	display: flex;
	gap: 30px;
}

.user_prof{
	width: 22%;
}
.user_detl{
	width: 78%;
}
.form-group.form-icon-left textarea, .form-group.form-icon-left select {
    padding-right: 20px;
    padding-left: 54px;
    height: 56px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .glassmorphism, .neumorphism {
    margin: 10px;
  }
  
  .form-control-modern {
    font-size: 14px;
    padding: 12px 15px;
  }
.cities {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}
.dflex{
	display: block;
}

.user_prof{
	width: 100%;
}
.user_detl{
	width: 100%;
	margin-top:20px;
}
.question-card {
    padding: 20px!important;
}
.question-card .footer-meta .social-wrap .th-social {
    top: -6px;
    left: 5px;
}

.dropdown-menu {
    transform: translateX(-10%) !important;
}
.dropdown-menu:before{
    left: 10%;
}
}
.main_hdng p {
    font-size: 15px;
}
.main_hdng h2 {
    margin-bottom: 5px;
}