body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #4a3a5a;
    line-height: 1.7;
    background: #fbf7ff;
    padding-top: 70px;
}

h1, h2, h3, h4, h5 {
    color: #3a245c;
    font-weight: 600;
}

a {
    text-decoration: none;
}

/* alert message */

.alert-success {

    background: linear-gradient(135deg, #3fda7d, #79eecf) !important;
}
.alert-error {

    background: linear-gradient(135deg, #d63346, #df6983) !important;
}

.alert-error {

    background: linear-gradient(135deg, #f5e345, #f5e26b) !important;
}


/* --------- TOP BAR --------- */
.top-bar {
    background: linear-gradient(90deg, #d63384, #7b2cbf);
    font-size: 13px;
    color: #fff;
}

/* --------- NAVBAR --------- */
.navbar {
    background: linear-gradient(90deg, #c91878, #5f189a);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
}



.navbar-brand {
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 600;
}

.nav-link {
    color: #f1edff !important;
    font-size: 14px;
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: #e0b3ff !important;
    background: rgba(255,255,255,0.12);
}



/* --------- BANNER --------- */
.banner {
    height: 75vh;
    background: url('../images/banner.jpg') center center / cover no-repeat;
    position: relative;
    margin-top: 70px; /* fixed navbar space */
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(214,51,132,0.65),
        rgba(123,44,191,0.65)
    );
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
}

.banner p {
    font-size: 16px;
    margin-top: 10px;
    color: #f3dcff;
}

/* --------- DESCRIPTION TEXT --------- */
section p.text-muted {
    max-width: 750px;
    margin: auto;
    font-size: 14px;
    color: #7a6b8f;
}

/* --------- ICON STEPS --------- */
.icon-box {
    width: 70px;
    height: 70px;
    border: 1px solid #e2d6f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #d63384; /* pink */
    transition: 0.3s ease;
}

.icon-box:hover {
    background: linear-gradient(135deg, #d63384, #7b2cbf);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
}

/* Section titles */
section h5 {
    margin-top: 10px;
    font-size: 17px;
    color: #3a245c;
}

/* --------- FEATURED MEMBERS --------- */
.featured {
    background: #f7f3ff;
}

.featured h3 {
    font-weight: 500;
    color: #3a245c;
}

.featured img {
    width: 100%;
    border-radius: 6px;
    transition: 0.3s ease;
}

.featured img:hover {
    transform: scale(1.03);
}

.featured h6 {
    margin-top: 8px;
    font-weight: 500;
    color: #5a3d8a;
}

/* --------- ABOUT SECTION --------- */
section img {
    box-shadow: 0 8px 18px rgba(123,44,191,0.18);
}

/* --------- BUTTON --------- */
.btn-warning {
    background: linear-gradient(90deg, #d63384, #7b2cbf);
    border: none;
    color: #fff;
    border-radius: 6px;
}

.btn-warning:hover {
    background: linear-gradient(90deg, #c22572, #6920b8);
}

/* --------- FOOTER --------- */
footer {
    font-size: 13px;
    background: #1e1433;
    color: #cfc3e8;
}


/* --------- ANIMATION --------- */
.fade-in {
    animation: fadeUp 1.5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------- RESPONSIVE --------- */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 28px;
    }
    .banner {
        height: 60vh;
    }
}


/* -------- About us -------- */
.page-title {
    background: linear-gradient(90deg, #ff5fa2, #8e2de2),
                url('../images/pattern.png');

    padding: 20px 0 5px;   /* top increase */
    margin-top: 40px;       /* fixed navbar gap */
    color: #fff;
}


.page-title h2 {
    margin: 0;
    font-weight: 500;
    color: #fff;
}

.page-title .breadcrumb {
    font-size: 13px;
}

.page-title .breadcrumb a {
    color: #ffe1f1;
}

/* -------- ABOUT PAGE -------- */
.about-page {
    background: #f7f3ff;
}

.about-box {
    background: #fff;
    padding: 25px;
    border: 1px solid #e3d8f3;
    border-radius: 6px;
}

.about-box img {
    width: 100%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(123,44,191,0.18);
}

.small-text {
    font-size: 13px;
    color: #6d5b8a;
    text-align: justify;
}

/* -------- SIDEBAR -------- */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #e3d8f3;
    border-radius: 6px;
}

.sidebar-box h6 {
    margin-top: 15px;
    font-weight: 600;
    color: #7b2cbf;
}

.contact-box p {
    font-size: 13px;
    color: #5f4b7a;
}


/* -------- FOOTER FIX -------- */
footer {
    background: #2f2f2f;
}

/* -------- contact us -------- */
.contact-form h5 {
    font-weight: 500;
    color: #3a245c;
}

.contact-form .form-control {
    font-size: 13px;
    border-radius: 4px;
    border-color: #e3d8f3;
}

.contact-form textarea {
    resize: none;
}

/* -------- CONTACT INFO BAR -------- */
/* ===============================
   CONTACT INFO BAR
=================================*/
.contact-info {
    background: #ae6fe4;   /* single solid purple */
    color: #fff;
}

/* each column */
.info-box {
    padding: 5px 2px;
   /* height increase */
    border-right: 1px solid rgba(255,255,255,0.25);
    text-align: center;
}

.info-box:last-child {
    border-right: none;
}

/* heading */
.info-box h6 {
    margin-top: 18px;
    font-weight: 700;     /* bold */
    font-size: 16px;
    color: #fff;
}

/* text */
.info-box p {
    font-size: 14px;
    font-weight: 600;     /* bold text */
    line-height: 1.7;
    color: #f4eaff;
}

/* icon circle */
.icon-circle {
    width: 72px;
    height: 72px;
    background: #fff;
    color: #8e2de2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 768px) {
    .info-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding: 40px 15px;
    }
}


/* -------- MEMBERS Search PAGE -------- */
.members-page {
    background: #f7f3ff;
}

/* SEARCH BOX */
.search-box {
    background: #fff;
    padding: 25px;
    border: 1px solid #e3d8f3;
    border-radius: 6px;
}

.search-box .form-control {
    font-size: 13px;
    border-radius: 4px;
    border-color: #e3d8f3;
}

.search-box .btn-primary {
    background: linear-gradient(90deg, #5f97ff, #8e2de2);
    border: none;
}

.search-box .btn-light {
    background: #f1ecff;
    border: none;
}

.no-result {
    font-size: 13px;
    color: #6d5b8a;
    text-align: center;
    margin-top: 15px;
}

/* SIDEBAR (same as about page) */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #e3d8f3;
    border-radius: 6px;
}

.sidebar-box h6 {
    font-weight: 600;
    color: #7b2cbf;
    margin-bottom: 10px;
}

.sidebar-box p {
    font-size: 13px;
    color: #5f4b7a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .search-box {
        margin-bottom: 20px;
    }
}

.register-wrap {
    background: #fff;
    padding: 25px;
    margin-top: 20px;
    font-size: 13px;
    border: 1px solid #e3d8f3;
    border-radius: 6px;
}

.section-title {
    font-size: 17px;
    border-bottom: 2px solid #d9c7ff;
    margin-bottom: 20px;
    padding-bottom: 5px;
    color: #3a245c;
}

label {
    margin-top: 10px;
    font-weight: 500;
    color: #3a245c;
}

input, select, textarea {
    border-radius: 4px !important;
    border-color: #e3d8f3;
}


/* ===============================
   RADIO GROUP
=================================*/
.radio-group {
    margin-top: 6px;
}

.radio-group input {
    margin-left: 10px;
    margin-right: 4px;
    accent-color: #8e2de2; /* modern radio color */
}

/* ===============================
   FILE INPUT
=================================*/
input[type="file"] {
    font-size: 12px;
    color: #5f4b7a;
}

/* ===============================
   BUTTON
=================================*/
button.btn {
    padding: 8px 45px;
    font-size: 14px;
    border-radius: 6px;
}

/* ===============================
   HORIZONTAL RULE
=================================*/
hr {
    margin: 30px 0;
    border-color: #e3d8f3;
}

/* ===============================
   HOROSCOPE GRID (COMMON)
=================================*/
.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 80px);
    gap: 2px;
    border: 1px solid #d9c7ff;
    background: #f7f3ff;
}

/* Horoscope boxes */
/* .horoscope-grid textarea {
    border: 1px solid #d9c7ff;
    resize: none;
    font-size: 12px;
    text-align: center;
    padding-top: 22px;
    background: #fff;
    color: #5f4b7a;
} */

.horoscope-grid .select2-selection--multiple {
    padding-top: 10px !important;
}

/* 🔥 Fix Select2 inside horoscope grid */
.horoscope-grid .select2-container {
    width: 100% !important;
    height: 80px !important;
}

.horoscope-grid .select2-selection--single,
.horoscope-grid .select2-selection--multiple {
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #d9c7ff !important;
    background: #fff !important;
}

/* text center */
.horoscope-grid .select2-selection__rendered {
    text-align: center;
    width: 100%;
}



/* Center box */
.center-box {
    grid-column: 2 / span 2;
    grid-row: 2 / span 2;
    border: 1px solid #b69cff;
    background: #efe7ff;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    padding-top: 50px;
    color: #3a245c;
}

/* ===============================
   HOROSCOPE TITLE
=================================*/
.horoscope-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 8px;
    color: #3a245c;
}

/* ===============================
   DECLARATION
=================================*/
ul {
    padding-left: 18px;
}

ul li {
    margin-bottom: 6px;
    color: #5f4b7a;
}


/* ===============================
   RESPONSIVE – TABLET
=================================*/
@media (max-width: 991px) {

    .register-wrap {
        padding: 20px;
    }

    .section-title {
        font-size: 16px;
    }

    .horoscope-grid {
        grid-template-rows: repeat(4, 55px);
    }

    .center-box {
        padding-top: 28px;
        font-size: 13px;
    }
}

/* ===============================
   RESPONSIVE – MOBILE
=================================*/
@media (max-width: 767px) {

    .register-wrap {
        padding: 15px;
        font-size: 12px;
    }

    label {
        font-size: 12px;
    }

    input,
    select,
    textarea {
        font-size: 12px;
    }

    button.btn {
        width: 100%;
        padding: 10px;
    }

    /* Horoscope smaller for mobile */
    .horoscope-grid {
        grid-template-rows: repeat(4, 50px);
    }

    .horoscope-grid textarea {
        font-size: 11px;
        padding-top: 12px;
    }

    .center-box {
        padding-top: 22px;
        font-size: 12px;
    }
}

#registrationSubmit.disabled-btn {
    opacity: 0.4;
    cursor: not-allowed;
    transition: opacity 0.3s ease;
}

/* breadcrumbs / alerts */
.alert {
    border-radius: 8px;
    font-size: 15px;
    padding: 15px 50px 15px 20px;
    background: #f7f3ff;
    color: #3a245c;
    border: 1px solid #e3d8f3;
}

/* ===============================
   TABLE
=================================*/
.domain-table-section {
    padding: 30px 0;
}

.domain-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e3d8f3;
}

.domain-table thead {
    background: linear-gradient(90deg, #ff5fa2, #8e2de2);
    color: #fff;
}

.domain-table th,
.domain-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
    font-size: 13px;
}

.domain-table tbody tr:nth-child(even) {
    background: #faf7ff;
}

.domain-table tbody tr:hover {
    background: #f1ecff;
}

.profile-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.profile-cell img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d9c7ff;
}

/* View button */
.btn-view {
    background: linear-gradient(90deg, #ff5fa2, #8e2de2);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.btn-view:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .domain-table th,
    .domain-table td {
        font-size: 13px;
        padding: 10px;
    }
}














