
#loader-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.7);

    /* Semi-transparent black background */

    display: none;

    /* Initially hidden */

    z-index: 9999;

    /* High z-index to cover everything */

}



#loader-overlay .loader-content {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    color: white;

}



#loader-overlay .spinner-border {

    width: 3rem;

    height: 3rem;

    margin-bottom: 10px;

}



.modal-content {

    background-color: #ffffff;

    /* Dark background */

    border-radius: 10px;

    /* Rounded corners */

    padding: 20px;

}



.spinner-border {

    width: 3rem;

    height: 3rem;

}



.modal-body p {

    font-size: 1.2rem;

}



.image-preview {

    margin-bottom: 20px;

    /* Adds space between each preview */

}



.preview-img {

    transition: transform 0.3s ease;

    /* Adds a smooth zoom effect */

}



.preview-img:hover {

    transform: scale(1.05);

    /* Slightly zooms the image on hover */

}



.remove-btn {

    display: block;

    width: 100%;

    /* Makes the button take full width below the image */

    font-size: 14px;

    /* Slightly smaller font size */

}



.remove-btn:hover {

    background-color: #dc3545;

    color: white;

}



/* Loader overlay to block the page */

.loader-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    /* Semi-transparent background */

    z-index: 9999;

    /* Ensure it's on top of all content */

    display: flex;

    justify-content: center;

    align-items: center;

}



/* Loader content (text and spinner) */

.loader-content {

    text-align: center;

    color: #fff;

}



/* Basic spinner styling */

.spinner {

    border: 4px solid rgba(255, 255, 255, 0.3);

    border-top: 4px solid #fff;

    border-radius: 50%;

    width: 40px;

    height: 40px;

    animation: spin 1s linear infinite;

}



/* Animation for spinner */

@keyframes spin {

    0% {

        transform: rotate(0deg);

    }



    100% {

        transform: rotate(360deg);

    }

}



#loader {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 1050;

    /* Above Bootstrap modal backdrop */

    display: flex;

    justify-content: center;

    align-items: center;

}



#loader .modal-dialog {

    max-width: 300px;

}



#loader .spinner-border {

    width: 4rem;

    height: 4rem;

}



#loader .modal-body {

    text-align: center;

}
/* Base dropdown panel */
.notify-dropdown {
  width: 350px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Scrollable notifications */
.notify-scroll {
  max-height: 400px;
  overflow-y: auto;
}

/* Each notification row */
.notify-row {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-left: 4px solid transparent;
  text-decoration: none;
  transition: background 0.3s ease;
  border-bottom: 1px solid #f1f1f1;
}

.notify-row:hover {
  background-color: #fdf5f9;
      text-decoration: none;

}


/* Avatar styling */
.notify-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

/* Content beside avatar */
.notify-content {
  margin-left: 12px;
  flex: 1;
}

.notify-content .fw-semibold {
  font-weight: 600;
  font-size: 15px;
}

.notify-content .small {
  font-size: 13px;
}

.tiny-time {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

/* Colorful left borders */
.border-left-pink { border-color: #ff4da6; }
.border-left-blue { border-color: #3399ff; }
.border-left-green { border-color: #33cc99; }
.border-left-purple { border-color: #9966ff; }
.border-left-orange { border-color: #ff9933; }

/* Header + Footer */
.notify-top {
  background: linear-gradient(to right, #ff66a6, #ffb347);
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.notify-top a {
  color: #fff !important;
  font-size: 13px;
  text-decoration: underline;
}

.notify-dropdown .text-center a {
  font-weight: 600;
  font-size: 13px;
}

/* Scrollbar for Webkit (Chrome) */
.notify-scroll::-webkit-scrollbar {
  width: 6px;
}

.notify-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 400px) {
  .notify-dropdown {
    width: 100%;
    max-width: 95vw;
    border-radius: 8px;
  }

  .notify-avatar img {
    width: 38px;
    height: 38px;
  }

  .notify-content .fw-semibold {
    font-size: 14px;
  }

  .notify-content .small {
    font-size: 12px;
  }
}

 .intro-inn {
    background: rgb(255, 255, 255);
    position: relative;
    margin: 0px auto;
    display: table;
    box-shadow: rgb(51, 51, 51) 0px 1px 19px -17px;
    border-radius: 10px;
    /* width: 950px; */
    padding: 0;
}

.tab-box {
  border-radius: 15px;
  border: 1px solid #ccc;
  padding: 20px 10px;
  text-align: center;
  position: relative;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}

.tab-box:hover {
  transform: translateY(-3px);
}

.tab-label {
  position: absolute;
  top: -14px;
  left: 10px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: 20px;
}

.tab-value {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}

/* Color Variants */
.tab-yellow { border-color: #fdd835; box-shadow: 0 0 8px #fff9c4; }
.tab-yellow .tab-label { background-color: #fdd835; }

.tab-purple { border-color: #673ab7; box-shadow: 0 0 8px #ede7f6; }
.tab-purple .tab-label { background-color: #673ab7; }

.tab-pink { border-color: #e91e63; box-shadow: 0 0 8px #fce4ec; }
.tab-pink .tab-label { background-color: #e91e63; }

.tab-blue { border-color: #03a9f4; box-shadow: 0 0 8px #e1f5fe; }
.tab-blue .tab-label { background-color: #03a9f4; }



.tab-green { border-color: #4caf50; box-shadow: 0 0 8px #c8e6c9; }
.tab-green .tab-label { background-color: #4caf50; }

.tab-red { border-color: #f44336; box-shadow: 0 0 8px #ffcdd2; }
.tab-red .tab-label { background-color: #f44336; }


/* Responsive */
@media (max-width: 576px) {
  .tab-label {
    font-size: 10px;
    padding: 2px 6px;
  }
  .tab-value {
    font-size: 20px;
  }
}
.tab-label i {
  margin-right: 5px;
}

 .card-shaadi-theme {
                    background: linear-gradient(to bottom, #f9a825, #e84a28);
                    border-radius: 16px;
                    color: #fff;
                    overflow: hidden;
                    position: relative;
                    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
                    font-family: 'Segoe UI', sans-serif;
                    border: 3px solid transparent;
                }

                /* Verified Glow Border */
                .card-shaadi-theme.verified-profile {
                    border-image: linear-gradient(45deg, gold, #ffcc00, orange) 1;
                    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
                }

                .verified-ribbon {
                    position: absolute;
                    top: 10px;
                    left: -30px;
                    transform: rotate(-45deg);
                    background: gold;
                    color: #fff;
                    padding: 5px 50px;
                    font-size: 12px;
                    font-weight: bold;
                    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
                    /* z-index: 10; */
                }

                .verified-ribbon i {
                    margin-right: 5px;
                }

                .profile-img-container {
                    height: 260px;
                    overflow: hidden;
                    display: flex;
                    justify-content: center;
                    align-items: start;
                    background: #fff;
                }

                .profile-img-container img {
                    width: 100%;
                    height: auto;
                    object-fit: cover;
                    object-position: top center;
                    border-bottom: 4px solid #fff3e0;
                    pointer-events: none;
    user-select: none;
                }

                .card-body-custom {
                    padding: 15px;
                    text-align: center;
                    background: #eb623d66;
                }

                .card-body-custom h5 {
                    margin-bottom: 5px;
                    font-weight: bold;
                    font-size: 18px;
                    color:#ffffff;
                }

                .badges-indian span {
                    display: inline-block;
                    background: rgba(255, 255, 255, 0.15);
                    padding: 6px 10px;
                    border-radius: 15px;
                    font-size: 13px;
                    margin: 3px;
                    color:#ffffff;
                }

                .profile-actions {
                    display: flex;
                    justify-content: space-between;
                    padding: 10px 15px;
                    border-top: 1px dashed rgba(255, 255, 255, 0.3);
                    background: rgba(255, 255, 255, 0.1);
                }

                .profile-actions button,
                .profile-actions a button {
                    background: #fff;
                    color: #c62828;
                    border: none;
                    border-radius: 50%;
                    padding: 10px;
                    width: 42px;
                    height: 42px;
                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
                    transition: transform 0.2s;
                }

                .profile-actions button:hover {
                    transform: scale(1.1);
                    background: #fff9c4;
                }

                .profile-id-badge {
                    position: absolute;
                        top: 230px;
    right: 0px;
                    background: rgba(0, 0, 0, 0.4);
                    /* darker background */
                    color: #fff;
                    font-size: 13px;
                    font-weight: 500;
                    padding: 5px 12px;
                    border-radius: 15px;
                    border: 1px solid rgba(255, 255, 255, 0.3);
                    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
                    /* z-index: 10; */
                }




                 .custom-footer {
        padding: 0.75rem 1rem;
        background-color: #f8f9fa;
        border-top: 1px solid #e0e0e0;
        transition: background-color 0.3s ease;
    }

    .custom-footer:hover {
        background-color: #eaf5ea;
    }

    /* View button hover effect */
    .custom-view-btn {
        transition: all 0.3s ease;
    }

    .custom-view-btn:hover {
        background-color: #198754;
        color: #fff;
        border-color: #198754;
    }

    /* Heart/save button style */
    .custom-heart-btn {
        border: none;
        background: none;
        color: rgb(113, 112, 112);
        font-size: 1.2rem;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .custom-heart-btn:hover {
        color: #b02a37;
        transform: scale(1.2);
    }

    .footer-location {
        font-size: 0.875rem;
        font-weight: 500;
    }


    /* profile details css */
     .info-card {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .info-block {
        margin-bottom: 20px;
        padding: 15px;
        background-color: #ffffff;
        border-left: 5px solid #198754;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .info-block:hover {
        background-color: #e9f7ef;
    }

    .info-icon {
        font-size: 1.2rem;
        margin-right: 10px;
        min-width: 25px;
    }

    .info-label {
        font-weight: 600;
        font-size: 0.9rem;

        color: #6c757d;
    }

    .info-value {
        font-size: 1.1rem;
        font-weight: bold;
        color: #212529;
    }

    .toggle-header {
        cursor: pointer;
        user-select: none;
    }

    .toggle-header:hover {
        color: #0d6efd;
    }

    .rotate-icon {
        transition: transform 0.3s ease;
    }

    .rotate-icon.rotate {
        transform: rotate(90deg);
    }

     .watermarked-image {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Styling for the image */
    .watermarked-image img {
        display: block;
        width: 100%;
        /* Ensure image fits the container */
        height: auto;
    }

    /* Watermark styling using SVG */
    .watermarked-image .watermark {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        /* Prevent interaction with watermark */
        z-index: 10;
        /* Ensure watermark is above image */
    }

    /* Media Queries for additional responsiveness */
    @media (max-width: 768px) {
        .watermarked-image .watermark svg text {
            font-size: 36px;
            /* Adjust for smaller screens */
        }
    }

    @media (max-width: 480px) {
        .watermarked-image .watermark svg text {
            font-size: 24px;
            /* Further adjustment for very small screens */
        }
    }



    .gallery {
        display: flex;
        flex-wrap: wrap;
    }

    .gallery img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        margin: 10px;
        position: relative;
    }

    .gallery-item {
        position: relative;
        display: inline-block;
    }

    .remove-icon {
        position: absolute;
        top: 5px;
        right: 10px;
        background: red;
        color: white;
        cursor: pointer;
        border-radius: 50%;
        padding: 3px 6px;
    }

    .modal-close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        color: white;
        background-color: rgba(0, 0, 0, 0.6);
        /* Semi-transparent dark background */
        border: none;
        padding: 8px 12px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        /* Ensures the button stays on top of the image */
        transition: background-color 0.3s ease-in-out;
    }

    /* Close button hover effect */
    .modal-close-btn:hover {
        background-color: rgba(255, 0, 0, 0.8);
        /* Changes to red on hover */
    }

    /* Responsive touch for smaller screens */
    @media (max-width: 576px) {
        .modal-close-btn {
            font-size: 1.25rem;
            /* Slightly smaller on mobile */
            padding: 6px 10px;
        }
    }



    #loader-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        /* Semi-transparent black background */
        display: none;
        /* Initially hidden */
        z-index: 9999;
        /* High z-index to cover everything */
    }

    #loader-overlay .loader-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
    }

    #loader-overlay .spinner-border {
        width: 3rem;
        height: 3rem;
        margin-bottom: 10px;
    }

    .modal-content {
        /* background-color: #343a40; */
        /* Dark background */
        border-radius: 10px;
        /* Rounded corners */
        padding: 20px;
    }

    .spinner-border {
        width: 3rem;
        height: 3rem;
    }

    .modal-body p {
        font-size: 1.2rem;
    }

    .modal-header {
        background-color: #28a745;
        color: white;
    }

    .progress-bar {
        background-color: #dc3545;
        /* Red for less completion */
    }

    .modal-body {
        text-align: center;
    }

    .modal-body .fa-exclamation-circle {
        font-size: 48px;
        color: #ffc107;
        margin-bottom: 20px;
    }

    .btn-complete {
        background: linear-gradient(45deg, #28a745, #218838);
        color: white;
        border: none;
        transition: background-color 0.3s ease;
    }

    .btn-complete:hover {
        background-color: #218838;
        color: #fff;
    }

    .profile-action-box button {
        min-width: 180px;
        transition: 0.3s ease;
    }

    .profile-action-box button:hover {
        transform: scale(1.05);
    }

    /* end profile css ... */

    /* loader css */
     .matrimony-loader-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        background-color: #fffdf7;
        font-family: 'Segoe UI', sans-serif;
    }

    .matrimony-loader-wrapper {
        position: relative;
        width: 64px;
        height: 64px;
    }

    /* Heart perfectly centered */
    .matrimony-heart {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 28px;
        line-height: 1;
        /* Make sure line height is tight */
        transform: translate(-50%, -50%);
        animation: heart-beat 1s infinite ease-in-out;
        z-index: 2;
        user-select: none;
    }

    /* Rotating ring behind heart */
    .matrimony-loader-ring {
        position: absolute;
        width: 64px;
        height: 64px;
        border: 6px solid #f2d479;
        border-top-color: #a83232;
        border-radius: 50%;
        animation: matrimony-spin 1.2s linear infinite;
        box-shadow: 0 0 0 4px #fff0e1;
        z-index: 1;
    }

    .matrimony-loader-text {
        margin-top: 15px;
        font-size: 18px;
        font-weight: bold;
        color: #a83232;
        letter-spacing: 1px;
        text-shadow: 0 1px 1px #f2d479;
    }

    @keyframes matrimony-spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes heart-beat {

        0%,
        100% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        50% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0.8;
        }
    }

    /* end laoder css */

    .matrimony-load-more-btn {
    background-color: #fffdf7;
    color: #a83232;
    border: 2px dashed #a83232;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-family: 'Segoe UI', sans-serif;
    margin: 20px auto;
    display: block;
}

.matrimony-load-more-btn:hover {
                        background: linear-gradient(to bottom, #f9a825, #e84a28);

    color: #fffdf7;
    border-style: solid;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(168, 50, 50, 0.2);
}

.matrimony-loader-container-please-wait {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fffdf7;
    font-family: 'Segoe UI', sans-serif;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.pro-info-status {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    font-family: 'Segoe UI', sans-serif;
}

.status-badge {
    background-color: #fff5e6;
    color: #a83232;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.status-badge b {
    margin-left: 5px;
    margin-right: 3px;
    font-weight: 600;
}

.status-badge.online {
    background-color: #e8fbe9;
    color: #2c7a3f;
}

.status-badge:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
