:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --dark-bg: rgb(15 23 42);
    --dark-bg-light: #1e293b;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;
    --swiper-navigation-size: 30px;
    
    /* Product Page Variables */
    --bg-primary: #0a0a0b;
    --bg-secondary: #0f1111;
    --bg-card: #18181b;
    --color-primary: #10b981;
    --color-text: #e4e4e7;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(15, 23, 42, 0.37) !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
    position: fixed;
}

.navbar.fixed-top {
    position: fixed !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-scrolled {
    background-color: rgba(15, 23, 42, 0.37) !important;
}

/* Prevent content jump when navbar becomes fixed */
main {
    transition: margin-top 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-collapse {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Desktop Menu Styles */
.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-item {
    margin: 0 0.75rem;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    /* background-color: rgba(16, 185, 129, 0.1); */
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .current-menu-item .nav-link,
.navbar-nav .current_page_item .nav-link {
    color: var(--primary-color);
    /* background-color: rgba(16, 185, 129, 0.15); */
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .current-menu-item .nav-link::after,
.navbar-nav .current_page_item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* Mobile Menu Overlay */
.r1bbit-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.r1bbit-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Sidebar */
.r1bbit-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    -webkit-overflow-scrolling: touch;
}

.r1bbit-mobile-menu.active {
    right: 0;
}

/* Mobile Menu Header */
.r1bbit-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.r1bbit-mobile-menu-logo {
    text-decoration: none;
    color: #ffffff;
}

.r1bbit-mobile-menu-logo img {
    height: 36px;
    width: auto;
}

.r1bbit-mobile-menu-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.r1bbit-mobile-menu-close:hover {
    color: #10b981;
    transform: rotate(90deg);
}

.r1bbit-mobile-menu-close:focus {
    outline: none;
    box-shadow: none;
}

/* Mobile Menu Navigation */
.r1bbit-mobile-menu-nav {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.r1bbit-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.r1bbit-mobile-nav-list li {
    margin: 0;
}

.r1bbit-mobile-nav-list a {
    display: block;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.r1bbit-mobile-nav-list a:hover,
.r1bbit-mobile-nav-list a:focus {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding-left: 1.5rem;
}

.r1bbit-mobile-nav-list .current-menu-item > a,
.r1bbit-mobile-nav-list .current_page_item > a {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Mobile Menu Submenu */
.r1bbit-mobile-nav-list .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin-top: 0.5rem;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 0.5rem;
    box-shadow: none;
}

.r1bbit-mobile-nav-list .dropdown-menu li {
    margin: 0;
}

.r1bbit-mobile-nav-list .dropdown-menu a {
    padding-left: 2rem;
    font-size: 0.9375rem;
}

.r1bbit-mobile-nav-list .dropdown-menu a:hover {
    padding-left: 2.5rem;
}

/* Mobile Menu Footer */
.r1bbit-mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop Menu - Hide on mobile */
@media (max-width: 991.98px) {
    .navbar .d-none.d-md-block {
        display: none !important;
    }
    
    .navbar .navbar-collapse {
        display: none !important;
    }
    
    .navbar-toggler {
        display: block !important;
    }
}

/* Desktop - Hide mobile menu toggle */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
    
    .r1bbit-mobile-menu-overlay,
    .r1bbit-mobile-menu {
        display: none !important;
    }
}

.hero-slider {
    height: 600px;
    min-height: 600px;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.5));
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
}

.hero-visual-elements {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    opacity: 0.8;
}

.hero-visual-elements img {
    max-width: 400px;
    height: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-dark-custom {
    background-color: var(--dark-bg) !important;
}

.bg-dark-light {
    background-color: var(--dark-bg-light) !important;
}

.section-padding {
    padding: 6rem 0;
    overflow-x: hidden;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hide swiper navigation arrows on mobile */
@media (max-width: 767.98px) {
    .swiper-button-next,
    .swiper-button-prev,
    .bg-light .swiper-button-next,
    .bg-white .swiper-button-next,
    .bg-light .swiper-button-prev,
    .bg-white .swiper-button-prev {
        display: none !important;
    }
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* About Section Image */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
}

.about-image-wrapper img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image-decoration {
    position: absolute;
    z-index: -1;
}

.about-image-decoration-1 {
    bottom: -1.5rem;
    left: -1.5rem;
    width: 128px;
    height: 128px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 1rem;
}

.about-image-decoration-2 {
    top: -1.5rem;
    right: -1.5rem;
    width: 96px;
    height: 96px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 1rem;
}

/* Fix horizontal overflow on mobile */
@media (max-width: 991.98px) {
    .about-image-decoration-1 {
        left: 0;
        bottom: 0;
    }
    
    .about-image-decoration-2 {
        right: 0;
        top: 0;
    }
    
    .section-padding {
        overflow-x: hidden;
    }
    
    .container {
        overflow-x: hidden;
    }
}

/* Products Section */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

/* Modern Product Cards */
.product-card-modern {
    border-radius: 0.75rem;
    overflow: hidden;
}

.product-card-modern .card-body {
    background: white;
}

/* Use Cases Slider */
.use-case-card {
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
}

.use-case-card img {
    transition: transform 0.5s ease;
}

.use-case-card:hover img {
    transform: scale(1.05);
}

/* CTA Cards */
.cta-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(51, 65, 85, 1) !important;
}

.cta-card:hover {
    border-color: rgba(16, 185, 129, 0.5) !important;
    background-color: rgba(30, 41, 59, 1) !important;
}

/* Blog Post Cards - Modern Design */
.blog-post-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #f1f5f9;
}

.blog-post-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.blog-post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post-card:hover .blog-post-thumbnail {
    transform: scale(1.1);
}

.blog-post-card:hover .blog-post-overlay {
    opacity: 1;
}

.blog-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 2;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-category:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.blog-post-category-text {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-category-text:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.blog-post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-meta {
    margin-bottom: 0.75rem;
}

.blog-post-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-post-date i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.blog-post-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-post-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--primary-color);
}

.blog-post-excerpt {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.blog-post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-post-read-more i {
    transition: transform 0.3s ease;
}

.blog-post-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.blog-post-read-more:hover i {
    transform: translateX(4px);
}

/* News Cards (for backward compatibility) */
.news-card {
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card h3 {
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: var(--primary-color) !important;
}

.news-read-more {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.news-read-more:hover {
    color: var(--primary-dark) !important;
    transform: translateX(5px);
}

.news-read-more i {
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-color: #dee2e6;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
footer{
    background-color: rgb(2 6 23 )!important;
}
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}
.use-case-card h3 {
    min-height: 60px;
}
.bg-light .swiper-pagination, .bg-white .swiper-pagination {    
    bottom: 0 !important;
    position: relative!important;
}   
.bg-light .swiper-pagination-bullet, .bg-white .swiper-pagination-bullet {
    background: rgb(0 0 0);
}
.bg-light .swiper-pagination-bullet-active, .bg-white .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}
.bg-light .swiper-button-next, .bg-white .swiper-button-next, .bg-light  .swiper-button-prev, .bg-white  .swiper-button-prev {
    background: rgb(0 0 0 / 45%);
}
.bg-light .swiper-button-next:hover, .bg-white .swiper-button-next:hover, .bg-light .swiper-button-prev:hover, .bg-white .swiper-button-prev:hover {
    background: rgb(0 0 0 / 60%);
}
/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-visual-elements {
        display: none;
    }
    
    .hero-slider {
        min-height: 500px;
    }
}

/* ============================================
   Single Post Page Styles
   ============================================ */

/* Post Header Section */
.post-header-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.post-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(16,185,129,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.post-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.post-category-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.post-category-badge:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.post-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.post-meta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9375rem;
}

.post-meta-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.post-featured-image {
    position: relative;
    margin-top: 3rem;
}

.post-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.post-featured-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Content Section */
.post-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.post-content-wrapper {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.post-content-body {
    padding: 3rem;
    line-height: 1.8;
    color: #334155;
}

.post-content-body p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.post-content-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-content-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-content-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content-body ul,
.post-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content-body li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.post-content-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: #f1f5f9;
    border-radius: 0.5rem;
    font-style: italic;
    color: #475569;
    font-size: 1.125rem;
}

.post-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2.5rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.post-content-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.post-content-body a:hover {
    border-bottom-color: var(--primary-color);
}

.post-content-body code {
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: #e11d48;
}

.post-content-body pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.post-content-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.post-meta-footer {
    padding: 2rem 3rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-tags,
.post-categories {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.post-meta-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #475569;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.post-meta-label i {
    color: var(--primary-color);
}

.post-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tag-link {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    color: #475569;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tag-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.post-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-category-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.page-links-title {
    font-weight: 600;
    color: #475569;
    margin-right: 0.5rem;
}

.page-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Related Posts Section */
.related-posts-section {
    padding: 5rem 0;
    background: #ffffff;
}

.related-posts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-posts-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.related-posts-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

/* Single Post Responsive */
@media (max-width: 991.98px) {
    .post-header-section {
        padding: 6rem 0 3rem;
    }
    
    .post-title {
        font-size: 2.5rem;
    }
    
    .post-meta-header {
        gap: 1.5rem;
    }
    
    .post-content-body {
        padding: 2rem;
    }
    
    .post-meta-footer {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .post-title {
        font-size: 2rem;
    }
    
    .post-meta-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-content-body {
        padding: 1.5rem;
    }
    
    .post-content-body h2 {
        font-size: 1.75rem;
    }
    
    .post-content-body h3 {
        font-size: 1.375rem;
    }
    
    .related-posts-title {
        font-size: 2rem;
    }
    
    .blog-post-content {
        padding: 1.25rem;
    }
    
    .blog-post-title {
        font-size: 1.125rem;
    }
    
    .blog-post-excerpt {
        font-size: 0.875rem;
    }
}

/* ============================================
   Page Template Styles
   ============================================ */

/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(16,185,129,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-section-simple {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header-section-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(16,185,129,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.page-featured-image {
    position: relative;
    margin-top: 3rem;
}

.page-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.page-featured-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Page Content Section */
.page-content-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.page-content-wrapper {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-content-body {
    padding: 3rem;
    line-height: 1.8;
    color: #334155;
}

.page-content-body p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.page-content-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.page-content-body h2:first-child {
    margin-top: 0;
}

.page-content-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.page-content-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-body ul,
.page-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content-body li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.page-content-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: #f1f5f9;
    border-radius: 0.5rem;
    font-style: italic;
    color: #475569;
    font-size: 1.125rem;
}

.page-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2.5rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.page-content-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.page-content-body a:hover {
    border-bottom-color: var(--primary-color);
}

.page-content-body code {
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: #e11d48;
}

.page-content-body pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.page-content-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Container Template Styles */
.page-container-section {
    padding: 4rem 0;
}

.page-container-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.page-container-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.page-container-content {
    padding: 2rem 0;
    line-height: 1.8;
    color: #334155;
}

.page-container-content p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.page-container-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.page-container-content h2:first-of-type {
    margin-top: 0;
}

.page-container-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.page-container-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-container-content ul,
.page-container-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-container-content li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.page-container-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: #f1f5f9;
    border-radius: 0.5rem;
    font-style: italic;
    color: #475569;
    font-size: 1.125rem;
}

.page-container-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2.5rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.page-container-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.page-container-content a:hover {
    border-bottom-color: var(--primary-color);
}

.page-container-content code {
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: #e11d48;
    font-family: 'Courier New', monospace;
}

.page-container-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.page-container-content pre code {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
    color: inherit;
}

.page-container-content .page-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.page-container-content .page-links-title {
    font-weight: 600;
    margin-right: 1rem;
    color: #0f172a;
}

.page-container-content .page-link {
    margin: 0 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

.page-container-content .page-link:hover {
    text-decoration: underline;
}

.r1bbit-header-wrapper {
    min-height: 86px;
    background-color: rgba(15, 23, 42, 0.95) !important;
}
a.custom-logo-link {
    margin-bottom: 18px;
}
.header-button {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
}
.header-button i{
    font-size: 25px;
    line-height: 25px;
}
.header-mobile-button{
    width: 100%;
}
@media (max-width: 1200px) {
    .navbar-nav .nav-item {
        margin: 0 0rem;
    }
}
/* Page Responsive */
@media (max-width: 991.98px) {
    .page-header-section {
        padding: 6rem 0 3rem;
    }
    
    .page-header-section-simple {
        padding: 5rem 0 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-content-body {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-content-body {
        padding: 1.5rem;
    }
    
    .page-content-body h2 {
        font-size: 1.75rem;
    }
    
    .page-content-body h3 {
        font-size: 1.375rem;
    }
    
    .page-container-section {
        padding: 3rem 0;
    }
    
    .page-container-title {
        font-size: 2rem;
    }
    
    .page-container-content {
        padding: 1.5rem 0;
    }
    
    .page-container-content h2 {
        font-size: 1.75rem;
    }
    
    .page-container-content h3 {
        font-size: 1.375rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

