/* Modern Design System - Premium Feel */
:root {
    /* Default to Dark Mode */
    --primary-color: #3b82f6;
    /* Bright Blue for Dark Mode */
    --secondary-color: #f59e0b;
    /* Gold/Amber */
    --accent-color: #60a5fa;
    /* Lighter Blue */
    --text-color: #f1f5f9;
    /* Slate 100 */
    --bg-color: #0f172a;
    /* Slate 900 */
    --card-bg: rgba(30, 41, 59, 0.7);
    /* Slate 800 with opacity */
    --glass-border: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(0, 0, 0, 0.2);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-text: #fff;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

[data-theme="light"] {
    /* Light Mode Overrides */
    --primary-color: #0f172a;
    /* Deep Blue */
    --secondary-color: #f59e0b;
    --accent-color: #3b82f6;
    --text-color: #334155;
    /* Slate 700 */
    --bg-color: #f8fafc;
    /* Slate 50 */
    --card-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --input-bg: #ffffff;
    --input-border: #cbd5e1;
    --input-text: #334155;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    transition: all var(--transition-speed) ease;
}

/* Login / Secure Page Layouts */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--bg-color);
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    margin: 0 auto;
}

.login-card {
    padding: 40px;
    width: 100%;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.glass-panel .login-header {
    text-align: center;
    margin-bottom: 30px;
}

.glass-panel .login-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.glass-panel .login-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.glass-panel .form-group {
    margin-bottom: 20px;
}

.glass-panel .form-control-modern {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: var(--input-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-panel .form-control-modern:focus {
    background: var(--input-bg);
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.glass-panel .btn-modern {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.glass-panel .btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
}

/* Footer */
.footer-main {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0;
}

.footer-main h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.25rem;
}

.footer-bottom {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

/* Modern Accordion (FAQ) */
.modern-accordion {
    margin-bottom: 20px;
}

.modern-accordion details {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-accordion details[open] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.modern-accordion summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
    color: var(--primary-color);
}

.modern-accordion summary::-webkit-details-marker {
    display: none;
}

.modern-accordion summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.modern-accordion details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.modern-accordion .accordion-content {
    padding: 0 20px 20px 20px;
    color: var(--text-color);
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    margin-top: 10px;
    padding-top: 20px;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.page-banner .overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(59, 130, 246, 0.6) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-banner h1 {
    position: relative;
    color: #fff;
    font-size: 3rem;
    z-index: 2;
    text-align: center;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper textarea.form-control-modern {
    min-height: 150px;
    resize: vertical;
}

/* Blog Grid */
.blog-grid .post-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.blog-grid .post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-grid .image-holder {
    height: 240px;
    overflow: hidden;
}

.blog-grid .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-grid .post-item:hover .image-holder img {
    transform: scale(1.05);
}

.blog-grid .text {
    padding: 25px;
}

.blog-grid .text h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-grid .text h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-grid .text h3 a:hover {
    color: var(--accent-color);
}

.blog-grid .status {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #64748b;
}

.blog-grid .status li {
    display: inline-block;
    margin-right: 15px;
}

.blog-grid .status li i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-grid .status li a {
    color: #64748b;
    text-decoration: none;
}

.blog-grid .status li a:hover {
    color: var(--accent-color);
}

.blog-grid .button a {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-grid .button a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Gallery */
.gallery-menu {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-menu li {
    display: inline-block;
    margin: 0 5px 10px;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.gallery-menu li:hover,
.gallery-menu li.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.gallery .mix {
    margin-bottom: 30px;
}

.gallery .inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery .photo {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.gallery .inner:hover .photo {
    transform: scale(1.1);
}

/* Premium Content Styling (for Certificates and other pages) */
.premium-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination span.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination span.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sidebar */
.sidebar-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
}

.sidebar-item h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.sidebar-item ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-item ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item ul li a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.sidebar-item ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Team Member V3 */
.team-member-v3 .item {
    margin-bottom: 30px;
}

.team-member-v3 .inner {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member-v3 .inner:hover {
    transform: translateY(-10px);
}

.team-member-v3 .thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-member-v3 .photo {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.team-member-v3 .inner:hover .photo {
    transform: scale(1.1);
}

.team-member-v3 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member-v3 .inner:hover .overlay {
    opacity: 1;
}

.team-member-v3 .social-icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}

.team-member-v3 .social-icons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-member-v3 .social-icons ul li a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.team-member-v3 .text {
    padding: 25px;
    text-align: center;
}

.team-member-v3 .text h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-member-v3 .text h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.team-member-v3 .text h4 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2rem;
    }

    .glass-panel {
        padding: 20px !important;
    }
}

/* --- RECONSTRUCTED STYLES --- */

/* Hero Slider (Swiper) */
.main-slider {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.main-slider .swiper-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.main-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.main-slider .content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
}

.main-slider .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.main-slider .inner.tac {
    text-align: center;
}

.main-slider .inner.tal {
    text-align: left;
}

.main-slider .inner.tar {
    text-align: right;
}

.main-slider h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-slider p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.main-slider .btn-flat {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.main-slider .btn-flat:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Welcome Section */
.home-welcome-compact {
    padding: 80px 0;
    background: var(--bg-color);
    text-align: center;
}

.home-welcome-compact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.home-welcome-compact .content {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Service Section */
.service-v1 {
    padding: 80px 0;
    background: var(--bg-color);
}

.service-v1 .heading {
    text-align: center;
    margin-bottom: 50px;
}

.service-v1 .heading h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-v1 .heading p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.service-v1 .item {
    transition: transform 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.service-v1 .item:hover {
    transform: translateY(-10px);
}

.service-v1 .photo {
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
}

.service-v1 .text {
    padding: 25px;
}

.service-v1 .text h3 {
    font-size: 1.25rem;
    margin: 0;
}

.service-v1 .text h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-v1 .text h3 a:hover {
    color: var(--accent-color);
}

/* Team Member V1 (Homepage) */
.team-member-v1 {
    padding: 80px 0;
    background: var(--bg-color) !important;
    /* Override inline style */
}

.team-member-v1 .heading {
    text-align: center;
    margin-bottom: 50px;
}

.team-member-v1 .item {
    margin: 15px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member-v1 .item:hover {
    transform: translateY(-10px);
}

.team-member-v1 .thumb {
    position: relative;
    overflow: hidden;
}

.team-member-v1 .photo {
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.team-member-v1 .item:hover .photo {
    transform: scale(1.1);
}

.team-member-v1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member-v1 .item:hover .overlay {
    opacity: 1;
}

.team-member-v1 .social-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.team-member-v1 .item:hover .social-icons {
    opacity: 1;
}

.team-member-v1 .social-icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}

.team-member-v1 .social-icons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-member-v1 .social-icons ul li a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.team-member-v1 .text {
    padding: 20px;
}

/* News V1 */
.news-v1 {
    padding: 80px 0;
    background: var(--bg-color);
}

.news-v1 .heading {
    text-align: center;
    margin-bottom: 50px;
}

.news-v1 .item {
    margin: 15px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-v1 .item:hover {
    transform: translateY(-5px);
}

.news-v1 .thumb {
    overflow: hidden;
}

.news-v1 .photo {
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.news-v1 .item:hover .photo {
    transform: scale(1.05);
}

.news-v1 .text {
    padding: 25px;
}

.news-v1 .text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-v1 .text h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.news-v1 .text h3 a:hover {
    color: var(--accent-color);
}

/* Partner */
.partner-v1 {
    padding: 60px 0;
    background: #fff !important;
    /* Override inline style */
}

[data-theme="dark"] .partner-v1 {
    background: var(--bg-color) !important;
}

.partner-v1 .item img {
    transition: all 0.3s ease;
    max-width: 100%;
}

.partner-v1 .item:hover img {
    filter: grayscale(0) !important;
    opacity: 1 !important;
    transform: scale(1.1);
}

/* Bond Table & Certificates */
.bond-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.bond-table thead th {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border: none;
}

.bond-table tbody td {
    padding: 15px;
    border-bottom: 1px solid var(--glass-border);
    background: var(--card-bg);
    color: var(--text-color);
}

.bond-table tbody tr:last-child td {
    border-bottom: none;
}

.bond-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .bond-table tbody tr:hover td {
    background: rgba(0, 0, 0, 0.02);
}

/* Certificates Table (Alias for Bond Table) */
.certificates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.certificates-table thead th {
    background: var(--primary-color);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.certificates-table tbody td {
    padding: 15px;
    border-bottom: 1px solid var(--glass-border);
    background: var(--card-bg);
    color: var(--text-color);
}

.certificates-table tbody tr:last-child td {
    border-bottom: none;
}

/* --- BOND LISTING SECTION (PREMIUM) --- */
.bond-listing-section {
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0f172a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Decorative background elements */
.bond-listing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.bond-listing-section .container {
    position: relative;
    z-index: 1;
}

.bond-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.bond-intro h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

[data-theme="light"] .bond-intro h2 {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bond-intro .lead-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.4;
}

.bond-intro .desc-text {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.8;
}

.bond-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .bond-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.bond-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .bond-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.bond-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.bond-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.bond-card p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.bond-card ul li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

.bond-card ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.bond-card strong {
    color: var(--secondary-color);
    font-weight: 600;
}

[data-theme="light"] .bond-card strong {
    color: var(--primary-color);
}