/* fixed container at bottom site */
      .suggest-prop-marquee {
        position: fixed;
        bottom: 30px;
        left: 0;
        right: 0;
        z-index: 999;
        display: flex;
        justify-content: center;
        pointer-events: none;
      }

      .suggestion-marquee {
        pointer-events: auto;
        white-space: nowrap;
      }
      
      .marquee-note {
        display: inline-flex;
        align-items: center;
        background: #00b98e;
        color: white;
        padding: 10px 25px;
        border-radius: 50px;
        margin: 0 15px;
        font-weight: bold;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(0,185,142,0.4);
        border: 2px solid white;
      }
      
      .suggest-circle {
        background-color: #ffffff;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0,185,142,0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        border: 3px solid #00b98e;
        margin: 0 8px;
        overflow: hidden;
        padding: 5px;
      }
      
      .suggest-circle:hover {
        box-shadow: 0 15px 30px rgba(0,185,142,0.5);
        transform: scale(1.1) translateY(-5px);
        background-color: #00b98e;
        border-color: white;
      }
      
      .suggest-circle span {
        font-size: 12px;
        font-weight: bold;
        color: #333;
        text-align: center;
        transition: all 0.3s ease;
        display: block;
        line-height: 1.2;
      }
      
      .suggest-circle:hover span {
        color: white;
      }
      
      .company-name {
        font-size: 11px !important;
        font-weight: bold !important;
        margin-bottom: 2px;
      }
      
      .company-profile {
        font-size: 8px !important;
        color: #666;
        display: block;
        text-align: center;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        transition: all 0.3s ease;
      }
      
      .suggest-circle:hover .company-profile {
        color: rgba(255,255,255,0.9);
      }
      
      .suggest-circle[title="Suggest flat"] {
        background-color: #ffffff;
      }
      .suggest-circle[title="Suggest house"] {
        background-color: #ffffff;
      }
      .suggest-circle[title="Suggest plot"] {
        background-color: #ffffff;
      }
      .suggest-circle[title="Suggest shop"] {
        background-color: #ffffff;
      }
      .suggest-circle[title="Suggest office"] {
        background-color: #ffffff;
      }
      .suggest-circle[title="Suggest land"] {
        background-color: #ffffff;
      }
      .suggest-circle[title="Suggest villa"] {
        background-color: #ffffff;
      }

      @media (max-width: 600px) {
        .suggest-prop-marquee {
          bottom: 15px;
        }
        .suggest-circle {
          width: 70px;
          height: 70px;
          margin: 0 4px;
        }
        .company-name {
          font-size: 9px !important;
        }
        .company-profile {
          font-size: 7px !important;
        }
        .marquee-note {
          padding: 6px 15px;
          font-size: 14px;
        }
      }
      
      /* Carousel styles */
      .owl-carousel-item {
        height: 400px;
        overflow: hidden;
        position: relative;
      }
      
      .owl-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease;
      }
      
      .image-container:hover img {
        transform: scale(1.05);
      }
      
      /* PHOTO COUNTER - Shows which photo number and total */
      .photo-counter {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #00b98e;
        color: white;
        padding: 8px 15px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: bold;
        z-index: 25;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        backdrop-filter: blur(5px);
        border: 2px solid rgba(255,255,255,0.3);
        transition: all 0.2s ease;
        pointer-events: none;
        letter-spacing: 0.5px;
      }
      
      .photo-counter::before {
        content: "";
        margin-right: 5px;
        font-size: 14px;
      }
      
      /* Price badge at bottom-left of image */
      .price-badge {
        position: absolute;
        bottom: 15px;
        left: 15px;
        background: rgba(0, 185, 142, 0.9);
        color: white;
        padding: 8px 15px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: bold;
        z-index: 20;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        backdrop-filter: blur(5px);
        border: 2px solid rgba(255,255,255,0.3);
        transition: transform 0.2s ease;
        pointer-events: none;
      }
      
      /* Property type badge at bottom-right of image */
      .property-type-badge {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: rgba(0, 185, 142, 0.9);
        color: white;
        padding: 8px 15px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: bold;
        z-index: 20;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        backdrop-filter: blur(5px);
        border: 2px solid rgba(255,255,255,0.3);
        transition: transform 0.2s ease;
        pointer-events: none;
        text-transform: capitalize;
      }
      
      .owl-carousel-item:hover .photo-counter,
      .owl-carousel-item:hover .price-badge,
      .owl-carousel-item:hover .property-type-badge {
        transform: scale(1.05);
      }
      
      /* Link hint */
      .link-hint {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0,185,142,0.9);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
        z-index: 10;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
      }
      
      .owl-carousel-item:hover .link-hint {
        opacity: 1;
      }
      
      /* Image overlay for better UX */
      .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        color: white;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
      }
      
      .owl-carousel-item:hover .image-overlay {
        opacity: 1;
      }
      
      /* Loading state */
      .image-loading {
        position: relative;
        min-height: 100px;
        background: #f8f9fa;
      }
      
      .image-loading::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #00b98e;
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }
      
      @keyframes spin {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
      }
      
      /* Currency symbol styling */
      .price-badge::before {
        content: "₹";
        margin-right: 4px;
        font-size: 14px;
      }

      /* Custom Navigation Arrows */
      .custom-owl-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
        z-index: 50;
        pointer-events: none;
      }

      .custom-nav-btn {
        pointer-events: auto;
        background: rgba(0, 185, 142, 0.85);
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        font-size: 20px;
        user-select: none;
      }

      .custom-nav-btn:hover {
        background: rgba(0, 185, 142, 1);
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0,0,0,0.3);
      }

      .custom-nav-btn:active {
        transform: scale(0.95);
      }

      /* Hide default owl nav */
      .owl-nav {
        display: none !important;
      }

      /* Dots styling */
      .owl-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 30;
        pointer-events: auto !important;
      }

      .owl-dot {
        pointer-events: auto !important;
        cursor: pointer !important;
      }

      .owl-dot span {
        background: rgba(255,255,255,0.5) !important;
        width: 12px !important;
        height: 12px !important;
        margin: 5px !important;
        transition: all 0.3s ease;
      }

      .owl-dot.active span {
        background: #00b98e !important;
      }

      /* Image container clickable area */
      .image-container {
        height: 100%;
        width: 100%;
        position: relative;
        overflow: hidden;
      }

      .image-link {
        display: block;
        height: 100%;
        width: 100%;
        position: relative;
        text-decoration: none;
        color: inherit;
      }

      .image-link:hover::after {
        background: rgba(0,0,0,0.1);
      }

      /* Wrapper for carousel */
      .carousel-wrapper {
        position: relative;
        width: 100%;
      }
      
      /* Total photos indicator at bottom */
      .total-photos-indicator {
        position: absolute;
        bottom: 60px;
        right: 15px;
        background: rgba(0,0,0,0.6);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 30;
        pointer-events: none;
        backdrop-filter: blur(3px);
        border: 1px solid rgba(255,255,255,0.2);
      }
      
      /* Current photo indicator in nav area */
      .photo-nav-indicator {
        text-align: center;
        margin-top: 5px;
        font-size: 14px;
        color: #666;
        font-weight: 500;
      }
      
      .photo-nav-indicator span {
        background: #00b98e;
        color: white;
        padding: 3px 10px;
        border-radius: 20px;
        display: inline-block;
      }

      /* Login Icon Styles - Added for the new login icon */
      .login-icon-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 15px;
        transition: all 0.3s ease;
      }
      
      .login-icon-link i {
        font-size: 22px;
        color: #00b98e;
        transition: all 0.3s ease;
      }
      
      .login-icon-link:hover i {
        color: #0e2e50;
        transform: scale(1.1);
      }
      
      .login-icon-link span {
        font-size: 14px;
        font-weight: 500;
        color: #00b98e;
        margin-left: 5px;
        transition: all 0.3s ease;
      }
      
      .login-icon-link:hover span {
        color: #0e2e50;
      }
      
      /* Responsive adjustments for login icon */
      @media (max-width: 991.98px) {
        .login-icon-link {
          margin: 10px 0;
          justify-content: flex-start;
          padding: 8px 0;
        }
        
        .login-icon-link i {
          font-size: 20px;
        }
        
        .navbar-nav.ms-auto {
          display: flex;
          flex-direction: column;
        }
        
        /* Add login icon to mobile menu */
        .mobile-login-item {
          order: 10;
          border-top: 1px solid #eee;
          margin-top: 5px;
          padding-top: 8px;
        }
      }
      
      /* Desktop specific adjustments */
      @media (min-width: 992px) {
        .navbar-nav.ms-auto {
          align-items: center;
        }
        
        .login-icon-link {
          margin-left: 20px;
          padding: 8px 12px;
          border-radius: 30px;
          background: rgba(0, 185, 142, 0.1);
        }
        
        .login-icon-link:hover {
          background: rgba(0, 185, 142, 0.2);
        }
      }





/* Base style - no animation initially */
        .nk-group-badge {
    font-size: 13px;
    vertical-align: super;
    margin-right: 2px;
    font-weight: bold;
    
    /* Animated Gradient */
    background: linear-gradient(45deg, #7ad1f1, #da1313, #4cbbca, #d30f9f);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


       
       .free-badge {
    font-size: 13px;
    vertical-align: super;
    margin-right: 2px;
    color: #ff0202;
    text-transform: lowercase;
    font-weight: bold;
    animation: blink 1s infinite;  /* blink animation add karein */
    background-color: yellow;  /* आप अपनी पसंद का कोई भी color दे सकते हैं */
    padding: 2px 5px;  /* background color को अच्छा दिखाने के लिए padding */
    border-radius: 100px;  /* कोनों को गोल करने के लिए */
}

.free-search {
    font-size: 13px;
    vertical-align: super;
    margin-right: 2px;
    color: hwb(158 49% 12%);
    text-transform: lowercase;
    font-weight: bold;
    animation: blink 1s infinite;  /* blink animation add karein */
    background-color: rgb(219, 18, 18);  /* आप अपनी पसंद का कोई भी color दे सकते हैं */
    padding: 2px 5px;  /* background color को अच्छा दिखाने के लिए padding */
    border-radius: 100px;  /* कोनों को गोल करने के लिए */
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}