/* ============================================
   INNER PAGES - Modern Design
   ASI Jodhpur Circle
   ============================================ */

/* --- Related Monuments Section --- */
.related-monuments {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0ebe6;
}
.related-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.related-header i {
    font-size: 22px;
    color: #A0023D;
}
.related-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #A0023D;
    margin: 0;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.related-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #ede8e3;
    transition: all 0.3s ease;
    display: block;
}
.related-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(160,2,61,0.15);
    border-color: #A0023D;
}
.related-img {
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f4e4dd, #ede8e3);
}
.related-img img {
    width: 100% !important;
    height: 120px !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.related-item:hover .related-img img {
    transform: scale(1.08);
}
.related-name {
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
    background: #fff;
    border-top: 2px solid #A0023D;
    line-height: 1.3;
}
@media (max-width: 991px) {
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .related-img, .related-img img { height: 100px !important; }
    .related-header h3 { font-size: 17px; }
}
@media (max-width: 480px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- About Stats Bar --- */
.about-stats-bar {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
}
.about-stat {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #ede8e3;
    border-top: 4px solid #A0023D;
    transition: all 0.3s ease;
}
.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(160,2,61,0.15);
}
.about-stat i {
    font-size: 24px;
    color: #A0023D;
    display: block;
    margin-bottom: 8px;
}
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #A0023D;
    line-height: 1;
}
.stat-text {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
@media (max-width: 767px) {
    .about-stats-bar { flex-wrap: wrap; gap: 10px; }
    .about-stat { flex: 0 0 calc(50% - 5px); padding: 15px 10px; }
    .stat-number { font-size: 24px; }
    .about-stat i { font-size: 20px; }
}
@media (max-width: 480px) {
    .about-stat { flex: 0 0 calc(50% - 5px); }
    .stat-number { font-size: 20px; }
}

/* --- Page Banner --- */
.page-banner {
    background: linear-gradient(135deg, #8B1A1A 0%, #A0023D 50%, #b5134a 100%);
    padding: 30px 0 25px;
    margin-bottom: 0;
}
.page-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    text-align: left !important;
}
.page-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.page-breadcrumb a {
    color: #FFD700 !important;
    font-weight: 500;
}
.page-breadcrumb a:hover {
    color: #fff !important;
}
.page-breadcrumb span {
    margin: 0 6px;
    color: rgba(255,255,255,0.4);
}

/* --- Inner Page Content Area --- */
.inner-content-section {
    padding: 30px 0;
    background: #faf8f6;
}

/* --- Content Card (main content wrapper) --- */
.content-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #ede8e3;
    margin-bottom: 20px;
}
.content-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #A0023D !important;
    text-align: left !important;
    margin: 0 0 20px !important;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0ebe6;
}
.content-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #A0023D;
    margin: 25px 0 12px;
}
.content-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px;
}
.content-card p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #444 !important;
    text-align: justify;
}
.content-card a {
    color: #A0023D;
    font-weight: 500;
}
.content-card a:hover {
    color: #8B1A1A;
}
.content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* --- Tables inside content (Premium) --- */
.content-card .table-bordered,
.content-card table {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    margin: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.content-card .table-bordered > thead > tr > th,
.content-card table thead th {
    background: linear-gradient(135deg, #8B1A1A 0%, #A0023D 100%) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 14px 12px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center !important;
    white-space: nowrap;
}
.content-card .table-bordered > tbody > tr > td,
.content-card table tbody td {
    background: #fff !important;
    font-size: 13px !important;
    color: #444 !important;
    padding: 12px 10px !important;
    border: none !important;
    border-bottom: 1px solid #f0ebe6 !important;
    vertical-align: middle !important;
}
.content-card .table-bordered > tbody > tr:nth-child(even) > td,
.content-card table tbody tr:nth-child(even) td {
    background: #faf8f6 !important;
}
.content-card .table-bordered > tbody > tr:hover > td,
.content-card table tbody tr:hover td {
    background: #fdf0e8 !important;
    color: #A0023D !important;
}
.content-card .table-bordered > tbody > tr > td:first-child,
.content-card table tbody td:first-child {
    font-weight: 600;
    color: #A0023D !important;
}
/* Table images */
.content-card table img {
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    transition: transform 0.3s ease;
    max-width: 100%;
}
.content-card table img:hover {
    transform: scale(1.03);
}
/* Table footer */
.content-card .table-bordered > tfoot > tr > th,
.content-card table tfoot th {
    background: linear-gradient(135deg, #8B1A1A, #A0023D) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 12px !important;
    border: none !important;
}
/* Adarsh Smarak section */
.aadarsh-heading {
    text-align: center;
    margin: 30px 0 15px !important;
}
.aadarsh-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #A0023D;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid #A0023D;
}
.tbody-adarsh {
    background: #fff !important;
}
.tbody-adarsh td {
    font-size: 13px !important;
    background: #fff !important;
}
/* Table scroll on mobile */
.content-card .row[style*="overflow-x"] {
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 767px) {
    .content-card table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .content-card table thead th {
        font-size: 11px !important;
        padding: 10px 8px !important;
    }
    .content-card table tbody td {
        font-size: 12px !important;
        padding: 8px 6px !important;
    }
}

/* --- Monument Tiles (sub-circle listing) --- */
.monument-grid { margin-top: 10px; }
.monument-tile {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #ede8e3;
    height: 260px;
}
.monument-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(160,2,61,0.2);
    text-decoration: none !important;
}
.monument-tile-img {
    overflow: hidden;
    height: 190px;
    position: relative;
    background: #f0ebe6;
}
.monument-tile-img img {
    width: 100% !important;
    height: 190px !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: none !important;
}
.monument-tile:hover .monument-tile-img img {
    transform: scale(1.08);
}
.monument-tile-name {
    background: #fff;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
    border-top: 3px solid #A0023D;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.monument-tile-name small {
    display: block;
    font-size: 10px;
    color: #A0023D;
    font-weight: 600;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive tiles */
@media (max-width: 767px) {
    .monument-tile { height: 230px; }
    .monument-tile-img, .monument-tile-img img { height: 160px !important; }
    .monument-tile-name { height: 70px; font-size: 12px; }
}

/* --- Monument Detail Cards --- */
.monument-card {
    background: #faf8f6;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: none;
    overflow: hidden;
}
.monument-card .monument-image {
    padding: 0;
    position: relative;
}
.monument-card .monument-image img {
    border-radius: 0 !important;
    width: 100% !important;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    box-shadow: none !important;
    display: block;
    transition: transform 0.5s ease;
}
.monument-card:hover .monument-image img {
    transform: scale(1.02);
}
.monument-card .monument-sub-h {
    background: linear-gradient(135deg, #8B1A1A 0%, #A0023D 100%) !important;
    border-radius: 0;
    padding: 14px 22px !important;
    margin: 0;
    position: relative;
}
.monument-card .monument-sub-h::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #A0023D;
}
.monument-card .monument-sub-h h3 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.monument-card .monument-sub-h h3 i {
    margin-right: 10px;
    opacity: 0.8;
}

/* Monument Text Card */
.monument-text-card {
    margin-top: 25px;
    position: relative;
}
.monument-text-card::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #A0023D, #FFD700);
    margin-bottom: 20px;
    border-radius: 3px;
}
.monument-text-card p {
    font-size: 15px !important;
    line-height: 1.85 !important;
    color: #444 !important;
    text-align: justify;
    margin-bottom: 18px !important;
}
.monument-text-card p:first-of-type::first-letter {
    font-size: 42px;
    font-weight: 700;
    color: #A0023D;
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 4px;
    font-family: 'Playfair Display', serif;
}

/* Highlight boxes inside monument pages */
.content-card .about-highlight-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #fdf5f0, #fef9f5);
    border-left: 4px solid #A0023D;
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin: 22px 0;
    font-size: 15px;
    color: #333;
    box-shadow: 0 2px 10px rgba(160,2,61,0.06);
}
.content-card .highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #A0023D, #c9325e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(160,2,61,0.25);
}

/* Black divider line - modernized */
.black-line {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, #A0023D, transparent) !important;
    margin: 30px 0 !important;
    border-radius: 0 !important;
}

/* Monument content old class override */
.monument-content {
    margin: 0 !important;
}
.monument-text {
    padding: 15px 0 !important;
}
.monument-text p {
    font-size: 15px !important;
    line-height: 1.85 !important;
    color: #444 !important;
    text-align: justify;
}
.monument-defination h3 {
    font-size: 15px !important;
    color: #555 !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
}

/* Monument image hover on detail pages */
.monument-image {
    border-radius: 8px;
    overflow: hidden;
    margin: 10px 0;
}
.monument-image img {
    transition: transform 0.5s ease;
    display: block;
}
.monument-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .monument-text-card p:first-of-type::first-letter {
        font-size: 32px;
    }
    .content-card .about-highlight-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive tiles */
@media (max-width: 767px) {
    .monument-tile-img, .monument-tile-img img { height: 160px; }
}

/* --- Gallery Grid (inner page) --- */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}
.gallery-item-new {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ede8e3;
}
.gallery-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.gallery-item-new img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item-new:hover img {
    transform: scale(1.05);
}
.gallery-item-caption {
    background: #fff;
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

/* --- Contact Cards --- */
.contact-card-new {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #ede8e3;
    border-top: 4px solid #A0023D;
}
.contact-card-new h3 {
    font-size: 18px;
    font-weight: 700;
    color: #A0023D;
    margin: 0 0 12px;
}
.contact-card-new p {
    font-size: 14px !important;
    margin: 4px 0 !important;
}
.contact-card-new i {
    color: #A0023D;
    width: 20px;
    margin-right: 6px;
}

/* --- RTI / CAPIO Sidebar --- */
.inner-sidelink {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #ede8e3;
}
.inner-sidelink h4 {
    background: linear-gradient(135deg, #8B1A1A, #A0023D);
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.inner-sidelink ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.inner-sidelink ul li {
    border-bottom: 1px solid #f0ebe6;
}
.inner-sidelink ul li a {
    display: block;
    padding: 10px 16px;
    color: #444;
    font-size: 13px;
    transition: all 0.2s;
}
.inner-sidelink ul li a:hover {
    background: #fdf5f0;
    color: #A0023D;
    padding-left: 22px;
}

/* --- Conservation District Cards --- */
.district-card-new {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #ede8e3;
    margin-bottom: 20px;
}
.district-card-new .districthead {
    background: linear-gradient(135deg, #A0023D, #c9325e) !important;
    color: #fff !important;
    font-weight: 700;
    padding: 10px;
}
.district-card-new .districtlist ul li a {
    border-color: #f0ebe6 !important;
    transition: all 0.2s;
}
.district-card-new .districtlist ul li a:hover {
    background: #fdf5f0;
    color: #A0023D !important;
    padding-left: 14px;
}

/* --- Panels/Accordion Modern --- */
.content-card .panel {
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #ede8e3 !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    margin-bottom: 10px;
}
.content-card .panel-heading {
    background: linear-gradient(135deg, #f4e4dd, #fdf5f0) !important;
    border: none !important;
    color: #A0023D !important;
    font-weight: 600;
}
.content-card .panel-heading:hover {
    background: linear-gradient(135deg, #A0023D, #c9325e) !important;
    color: #fff !important;
}
.content-card .list-group-item {
    border-color: #f0ebe6;
}
.content-card .list-group-item > a {
    color: #444;
    transition: all 0.2s;
}
.content-card .list-group-item > a:hover {
    color: #A0023D;
}

/* --- Notification / Tender inner page cards --- */
.notice-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-left: 4px solid #A0023D;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: all 0.2s;
}
.notice-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateX(3px);
}

/* --- Duties Section (Monuments page) --- */
.duties-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0ebe6;
}
.duties-header {
    text-align: center;
    margin-bottom: 25px;
}
.duties-header i {
    font-size: 30px;
    color: #A0023D;
    display: block;
    margin-bottom: 8px;
}
.duties-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #A0023D;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid #A0023D;
}
.duty-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.duty-card-header {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.duty-card-header i {
    margin-right: 8px;
}
.do-header {
    background: linear-gradient(135deg, #1b7a3d, #27ae60);
}
.dont-header {
    background: linear-gradient(135deg, #b71c1c, #e53935);
}
.duty-card ul {
    list-style: none;
    margin: 0;
    padding: 15px 20px;
    background: #fff;
}
.duty-card ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    border-bottom: 1px solid #f5f0eb;
}
.duty-card ul li:last-child {
    border-bottom: none;
}
.duty-do ul li::before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 11px;
    color: #27ae60;
    font-size: 14px;
}
.duty-dont ul li::before {
    content: "\f00d";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 11px;
    color: #e53935;
    font-size: 14px;
}

/* --- Act/Rule Download Cards --- */
.act-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ede8e3;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.act-card:hover {
    box-shadow: 0 4px 20px rgba(160,2,61,0.12);
    border-color: #A0023D;
}
.act-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fdf5f0, #fef9f5);
    border-bottom: 1px solid #f0ebe6;
    flex-wrap: wrap;
}
.act-card-header > i {
    font-size: 28px;
    color: #A0023D;
    flex-shrink: 0;
}
.act-card-header > div {
    flex: 1;
    min-width: 200px;
}
.act-card-header strong {
    display: block;
    font-size: 15px;
    color: #333;
    line-height: 1.3;
}
.act-card-header span {
    font-size: 12px;
    color: #888;
}
.act-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #A0023D;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
    flex-shrink: 0;
}
.act-download:hover {
    background: #8B1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(160,2,61,0.3);
    color: #fff !important;
}
.act-card > p {
    padding: 14px 20px !important;
    font-size: 14px !important;
    color: #555 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}
@media (max-width: 767px) {
    .act-card-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .act-download { width: 100%; justify-content: center; }
}

/* --- Museum Page Premium --- */
.museum-detail {
    margin: 20px 0;
}
.museum-detail p {
    font-size: 15px !important;
    line-height: 1.85 !important;
    color: #444 !important;
    text-align: justify;
}
.museum-s-info {
    background: linear-gradient(135deg, #fdf5f0, #fef9f5);
    border-left: 4px solid #A0023D;
    border-radius: 0 10px 10px 0;
    padding: 20px 25px !important;
    margin: 20px 0 25px !important;
}
.museum-s-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #A0023D !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    text-align: left !important;
}
.museum-s-info ol {
    margin: 0;
    padding-left: 20px;
}
.museum-s-info ol li {
    font-size: 14px;
    color: #444;
    padding: 6px 0;
    border-bottom: 1px solid rgba(160,2,61,0.1);
    list-style: none;
    position: relative;
    padding-left: 10px;
}
.museum-s-info ol li::before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: -10px;
    color: #A0023D;
}
.museum-s-info ol li span {
    font-weight: 700 !important;
    color: #A0023D !important;
}
.museum-s-info ol li:last-child {
    border-bottom: none;
}

/* Museum gallery grid */
.content-card .gridview.museum-image {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}
.content-card .gridview.museum-image .col-sm-6 {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    padding: 0;
}
.content-card .gridview.museum-image .img-cusvip-box {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.content-card .gridview.museum-image .img-cusvip-box img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    transition: transform 0.4s ease;
}
.content-card .gridview.museum-image .img-cusvip-box:hover img {
    transform: scale(1.05);
}
.content-card .asi-monument-heading {
    padding: 8px 5px !important;
    background: transparent !important;
    border-radius: 0 !important;
}
.content-card .asi-monument-heading h4 {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #555 !important;
}

/* Museum text sections */
.museum-text {
    padding: 15px 0 !important;
}
.museum-text p,
.monument-text p {
    font-size: 15px !important;
    line-height: 1.85 !important;
    color: #444 !important;
    text-align: justify;
}

/* Monument sub headings in museum */
.content-card .monument-sub-h {
    background: linear-gradient(135deg, #8B1A1A 0%, #A0023D 100%) !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    margin: 25px 0 15px !important;
    position: relative;
}
.content-card .monument-sub-h::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 25px;
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #A0023D;
}
.content-card .monument-sub-h h3 {
    color: #fff !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .content-card .gridview.museum-image .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .content-card .gridview.museum-image .img-cusvip-box,
    .content-card .gridview.museum-image .img-cusvip-box img {
        height: 180px !important;
    }
}

/* --- Gallery/Publication Cards Premium Override --- */
.content-card .gallerycaption {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin: 10px !important;
    height: auto !important;
    transition: all 0.3s ease;
    background: #fff;
}
.content-card .gallerycaption:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(160,2,61,0.18);
    border: none !important;
}
.content-card .gallerycaption .galleryimg {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    transition: transform 0.4s ease;
}
.content-card .gallerycaption:hover .galleryimg {
    transform: scale(1.05);
}
.content-card .gallerycontent {
    background: linear-gradient(135deg, #8B1A1A, #A0023D) !important;
    color: #fff !important;
    opacity: 1 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    height: auto !important;
    min-height: auto !important;
    padding: 12px 10px !important;
    text-align: center;
}
.content-card .nopadding {
    display: flex;
    flex-wrap: wrap;
}
.content-card .nopadding .col-lg-4 {
    padding: 5px !important;
}

/* Gridview images premium */
.content-card .gridview .grid-img {
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12) !important;
    margin-bottom: 15px !important;
    display: block;
}
.content-card .gridview .grid-img img {
    transition: transform 0.4s ease;
}
.content-card .gridview .grid-img:hover img {
    transform: scale(1.05);
}

/* --- Publication Cards --- */
.pub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.pub-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ede8e3;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    position: relative;
}
.pub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(160,2,61,0.18);
    border-color: #A0023D;
}
.pub-img {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f4e4dd, #ede8e3);
}
.pub-img img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.pub-card:hover .pub-img img {
    transform: scale(1.05);
}
.pub-info {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pub-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}
.pub-year {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pub-download {
    background: linear-gradient(135deg, #8B1A1A, #A0023D);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    transition: background 0.3s;
}
.pub-card:hover .pub-download {
    background: linear-gradient(135deg, #A0023D, #c9325e);
}
@media (max-width: 991px) {
    .pub-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}
@media (max-width: 480px) {
    .pub-grid { grid-template-columns: 1fr; gap: 12px; }
    .pub-img, .pub-img img { height: 180px !important; }
}

/* --- RTI List Styling --- */
.rti-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.rti-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid #f0ebe6;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.rti-list li::before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 13px;
    color: #A0023D;
    font-size: 14px;
}
.rti-list li:last-child { border-bottom: none; }

/* --- News List Premium --- */
.news-list-premium {
    margin-top: 10px;
}
.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #f0ebe6;
    transition: all 0.2s ease;
}
.news-list-item:hover {
    background: #fdf5f0;
    padding-left: 10px;
    margin-left: -10px;
    margin-right: -10px;
    padding-right: 10px;
    border-radius: 8px;
}
.news-list-item:last-child { border-bottom: none; }
.news-new { border-left: 4px solid #A0023D; padding-left: 14px !important; }
.news-date-badge {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    background: linear-gradient(135deg, #8B1A1A, #A0023D);
    border-radius: 8px;
    padding: 8px 6px;
    color: #fff;
}
.news-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.news-month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
.news-yr {
    display: block;
    font-size: 10px;
    opacity: 0.6;
}
.news-content-text p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #444 !important;
    margin: 0 !important;
}

/* --- Contact Page Premium --- */
.content-card .contact {
    background: linear-gradient(135deg, #fdf5f0, #fff) !important;
    border: 1px solid #ede8e3 !important;
    border-radius: 12px !important;
    border-top: 4px solid #A0023D !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.content-card .contact .heading h1,
.content-card .subcircle .heading h1 {
    font-family: 'Playfair Display', serif;
    font-size: 22px !important;
    color: #A0023D !important;
    text-align: left !important;
    margin-bottom: 15px !important;
    padding-bottom: 12px;
    border-bottom: 3px solid #A0023D;
    display: inline-block;
}
.content-card .subcircle {
    background: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0 !important;
    margin: 25px 0 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.content-card .subcircle .heading {
    background: linear-gradient(135deg, #8B1A1A, #A0023D) !important;
    padding: 16px 25px !important;
    margin: 0 !important;
}
.content-card .subcircle .heading h1 {
    color: #fff !important;
    font-size: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
}
.content-card .subcircle .address {
    padding: 20px 25px 10px !important;
}
.content-card .subcircle .mapimage {
    padding: 0 25px 15px !important;
}
.content-card .subcircle .mapimage iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100% !important;
    max-width: 100%;
}
.content-card .para {
    padding: 10px 15px !important;
    font-size: 14px !important;
}
.content-card .para p, .content-card .detail1 p, .content-card .detail1 {
    font-size: 14px !important;
    color: #444 !important;
    line-height: 1.6 !important;
}
.content-card .detail1 a {
    color: #A0023D !important;
    font-weight: 600;
}
.content-card .elements, .content-card .elements1 {
    padding: 6px 15px !important;
}
.content-card .detail span {
    color: #A0023D !important;
    font-weight: 700 !important;
}
.content-card .subtable {
    margin: 15px 0 25px !important;
    padding: 0 !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    width: 100% !important;
}
.content-card .subtable1 {
    margin: 15px 0 25px !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    width: 100% !important;
}
.content-card .td1, .content-card .td2, .content-card .td3 {
    box-sizing: border-box;
}
.content-card .subtable .td1 { width: 30% !important; }
.content-card .subtable .td2 { width: 45% !important; }
.content-card .subtable .td3 { width: 25% !important; }
/* Contact subcircle tables ONLY */
.subcircle .thead {
    background: linear-gradient(135deg, #8B1A1A, #A0023D) !important;
    border-radius: 8px 8px 0 0;
    border: none !important;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}
.subcircle .thead .td1,
.subcircle .thead .td2,
.subcircle .thead .td3 {
    color: #fff !important;
    font-weight: 700 !important;
    padding: 12px 10px !important;
    text-align: center;
    border: none !important;
}
.subcircle .tbody {
    border-bottom: 1px solid #f0ebe6;
    background: #fff;
}
.subcircle .tbody:nth-child(odd) {
    background: #faf8f6;
}
.subcircle .tbody:hover {
    background: #fdf0e8 !important;
}
.subcircle .tbody .td1 {
    font-weight: 700;
    color: #A0023D !important;
    padding: 10px !important;
}
.subcircle .tbody .td2 {
    color: #444;
    padding: 10px !important;
}
.subcircle .tbody .td3 {
    color: #666;
    font-size: 13px;
    padding: 10px !important;
}
.subcircle .subtable {
    border: 1px solid #ede8e3;
    border-radius: 8px;
    overflow: hidden;
}

/* --- Gallery Premium Override --- */
.content-card .gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* --- Notification Timeline --- */
.notif-timeline {
    position: relative;
    padding-left: 30px;
}
.notif-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #A0023D, #f4e4dd);
    border-radius: 3px;
}
.notif-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #f5f0eb;
    position: relative;
    transition: all 0.2s ease;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover {
    background: #fdf5f0;
    margin-left: -15px;
    padding-left: 15px;
    margin-right: -15px;
    padding-right: 15px;
    border-radius: 8px;
}
.notif-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #A0023D, #c9325e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(160,2,61,0.25);
    position: relative;
    z-index: 2;
}
.notif-body {
    flex: 1;
}
.notif-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
    line-height: 1.4;
}
.notif-body p {
    font-size: 13px !important;
    color: #777 !important;
    margin: 0 0 8px !important;
    line-height: 1.4 !important;
}
.notif-body .act-download {
    margin-top: 6px;
}

@media (max-width: 767px) {
    .notif-timeline { padding-left: 20px; }
    .notif-timeline::before { left: 8px; }
    .notif-icon { width: 30px; height: 30px; font-size: 12px; }
    .notif-body h4 { font-size: 14px; }
}

/* --- Fix gridview images (monuments sub-circle) --- */
.content-card .gridview .img-cusvip-box {
    height: 200px !important;
    overflow: hidden;
    display: block !important;
    background: linear-gradient(135deg, #f4e4dd, #ede8e3);
}
.content-card .gridview .img-cusvip-box img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    max-width: 100% !important;
    display: block !important;
}
.content-card .gridview .grid-img {
    border-radius: 10px !important;
    overflow: hidden;
    display: block;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.content-card .gridview .grid-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(160,2,61,0.15);
}
.content-card .asi-monument-heading {
    background: #fff !important;
    padding: 10px !important;
    border-radius: 0 !important;
    border-top: 3px solid #A0023D;
}
.content-card .asi-monument-heading h4 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #333 !important;
    text-transform: uppercase;
}

/* --- Broken Image Placeholder --- */
.gallery-grid-new img,
.gallery-item-new img,
.monument-tile-img img,
.content-card .gallerycaption .galleryimg {
    background: linear-gradient(135deg, #f4e4dd, #ede8e3);
    min-height: 120px;
}

/* --- Breadcrumb Row1 Override --- */
.row1 {
    float: none !important;
    background: transparent;
    margin-bottom: 15px !important;
}
.row1 h4 a {
    color: #A0023D !important;
    font-size: 13px !important;
}

/* --- Override old styles for inner pages --- */
.right-sidebar {
    padding: 0 15px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .page-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .content-card { padding: 20px; }
    .gallery-grid-new { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .page-banner h1 { font-size: 22px !important; text-align: center !important; }
    .content-card { padding: 15px; border-radius: 8px; }
    .content-card h1 { font-size: 20px !important; }
    .gallery-grid-new { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-item-new img { height: 140px; }
}
@media (max-width: 480px) {
    .gallery-grid-new { grid-template-columns: 1fr; }
}
