:root {
    /* Color Palette - LIGHT THEME */
    --primary-color: #ffffff;
    --secondary-color: #f8f9fa;
    --accent-color: #6aa84f;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --heading-color: #2c3e50;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Transitions */
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #5d9643;
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    background-color: var(--primary-color);
    padding: 15px 0;
    /* Increased padding */
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading-color);
}

.logo span {
    color: var(--accent-color);
}

/* =========================================
   HERO CAROUSEL
   ========================================= */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    /* Fixed height for consistency */
    background-color: var(--accent-color);
    /* Fallback */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    /* Inherit flex layout from hero-split logic */
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Inherit content styles but ensure they animate nicely */
.hero-slide .hero-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.3s;
    /* Delay content animation */
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .hero-mockup {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.8s ease-out 0.5s;
    /* Delay image animation */
}

.hero-slide.active .hero-mockup {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Controls (Dots) */
.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Ensure inner layout matches old .hero-split */
/* Restore inner layout for Split Screen inside Slide */
.hero-left {
    position: relative;
    width: 60%;
    height: 100%;
    background-color: var(--primary-color);
    /* White background */
    /* Diagonal Cut */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: calc((100% - 1200px) / 2 + 20px);
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, #f5f5f5 0, #f5f5f5 1px, transparent 1px, transparent 10px);
    pointer-events: none;
    z-index: -1;
}

.hero-right {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Pattern Background for Right Side */
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0, rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 20px);
}

.hero-content {
    max-width: 600px;
    padding: 40px;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-mockup {
    position: relative;
    width: 90%;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

.hero-mockup img {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}
@media (max-width: 768px) {
  .nav-links a.btn, .hero-buttons a.btn {
      display: inline-block;
      padding: 5px 10px;
      background-color: var(--accent-color);
      color: #fff;
      border-radius: 3px;
      font-size:0.5rem
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0px;
      transition: transform 0.2s, background-color 0.2s;
      border: none;
      cursor: pointer;
  }

  .nav-links a.btn:hover, .hero-buttons a.btn:hover {
      background-color: #5d9643;
      transform: translateY(-2px);
  } 
 
.nav-links a.btn, .hero-buttons a.btn{
    display:inline-block;
    padding: 8px 12px;
    background-color: var(--accent-color);
    color:#fff;
    border-radius: 6px;
    font-size: 0.75rem;  
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0px;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    cursor: pointer;
  }
  
  .hero-carousel-wrapper{
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }
 
  .hero-carousel-wrapper .hero-slide{
    display: none !important;
 
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    inset: auto !important;
    transform: none !important;

    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
 
    flex-direction: column !important;
  }
  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--heading-color);
}
  .hero-carousel-wrapper .hero-slide.active{
    display: flex !important;
  }
 
  .hero-left{
    width: 100% !important;
    height: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important; 
    margin-bottom: 0 !important; 
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .hero-right{
    width: 100% !important;
    height: auto !important;
    padding: 10px 10px 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .hero-mockup{
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  .hero-mockup img{
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
}
/* =========================================
   CAROUSEL CATALOG GRID
   ========================================= */
.catalog-section {
    padding: 60px 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
    /* Prevent horizontal scrollbar on body */
}

/* Full Width Container */
.container-fluid {
    width: 100%;
    padding: 0 20px;
    /* Space for arrows */
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Carousel Layout */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 60px;
    /* Space for shadows/shelf */
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    /* Gap is handled by padding inside card-wrapper or margin */
}

/* Carousel Item (Wrapper around card) */
.carousel-item {
    flex: 0 0 12.5%;
    /* 100% / 8 items = 12.5% */
    padding: 0 15px;
    /* Horizontal spacing */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align to bottom for shelf effect */
    position: relative;
}

/* Catalog Card Styles (Refined for Carousel) */
.catalog-card {
    width: 100%;
    /* Fill the wrapper */
    max-width: 180px;
    /* Limit max size */
    aspect-ratio: 1 / 1.414;
    /* A4 aspect */
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 10;
}

.card-image {
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform-style: preserve-3d;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    transform: rotateY(-12deg);
    transform-origin: left bottom;
}

.catalog-card:hover .card-image {
    transform: rotateY(0deg) scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px 4px 4px 2px;
}

/* Continuous Shelf Under Track */
/* Shelf removed by user request */
.carousel-track::after {
    display: none;
}

.carousel-container::after {
    display: none;
}

/* Shadow for book on shelf */
/* Shadow for book on shelf - REMOVED */
.catalog-card::before {
    display: none;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--heading-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--heading-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Columns */
/* Default is 8 columns (flex: 0 0 12.5%) defined above */

@media (max-width: 1600px) {
    .carousel-item {
        flex: 0 0 16.666%;
    }

    /* 6 items */
}

@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 25%;
    }

    /* 4 items */
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 50%;
    }

    /* 2 items */
    .catalog-card {
        max-width: 140px;
    }
}

/* =========================================
   SUSTAINABILITY SECTION (Bento Grid)
   ========================================= */
.sustain-section {
    padding: 80px 0 40px;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 250px 250px;
    gap: 20px;
    margin-bottom: 60px;
}

.bento-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
}

/* Specific Grid Areas */
.grid-area-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* Chem */
.grid-area-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

/* Solar (Tall) */
.grid-area-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* Lab */
.grid-area-4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Fabric */
.grid-area-5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Waste */

/* Card Types */
.card-text-light {
    background-color: #f0f2f5;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text-green {
    background-color: #3d6b28;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text-green h3 {
    color: #fff;
}

.card-image,
.card-image-tall {
    background-size: cover;
    background-position: center;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.card-overlay h3 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Typography in Cards */
.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Arrow Buttons in Cards */
.arrow-btn-white,
.arrow-btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-top: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s;
}

.arrow-btn-white {
    background: #fff;
    color: #3d6b28;
}

.arrow-btn-small {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(5px);
}

.arrow-btn-white:hover,
.arrow-btn-small:hover {
    transform: rotate(45deg);
}

/* Marquee Decoration */
.marquee-wrapper {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    white-space: nowrap;
    opacity: 0.05;
    font-size: 4rem;
    font-weight: 800;
    pointer-events: none;
    z-index: 0;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* =========================================
   ABOUT US & SOLUTION SECTION
   ========================================= */
.about-section {
    padding: 100px 0;
    background-color: #fff;
    color: #333;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-decor-text {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 255, 0.05);
    /* Very faint blue */
    z-index: -1;
    white-space: nowrap;
}

.about-content {
    flex: 1;
}

.section-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #e6f0ff;
    color: #0066cc;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::before {
    content: '—';
    margin-right: 8px;
    color: #0066cc;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: var(--heading-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
}

.circle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-left: 15px;
    transition: all 0.3s;
}

.read-more-btn:hover .circle-arrow {
    background: var(--heading-color);
    color: #fff;
    border-color: var(--heading-color);
    transform: translateX(5px);
}

/* Solution Section */
.solution-section {
    padding: 80px 0 120px;
    background-color: #f9fbfd;
    /* Very light blue tint */
    position: relative;
    overflow: hidden;
}

.solution-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.solution-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    line-height: 1.1;
}

.solution-badge {
    color: #6c8caf;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.solution-badge::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #6c8caf;
    margin-right: 10px;
}

.solution-text {
    max-width: 500px;
    color: #555;
    border-left: 4px solid #ddd;
    padding-left: 20px;
}

.hex-bg {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#e0e7ef 15%, transparent 16%), radial-gradient(#e0e7ef 15%, transparent 16%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.5;
    z-index: 1;
    transform: rotate(30deg);
}

/* Responsive for New Sections */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .grid-area-1,
    .grid-area-2,
    .grid-area-3,
    .grid-area-4,
    .grid-area-5 {
        grid-column: auto;
        grid-row: auto;
    }

    .card-image-tall {
        height: 250px;
    }

    .about-container,
    .solution-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .about-image {
        width: 100%;
    }

    .solution-text {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid #ddd;
        padding-top: 20px;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-brand .footer-logo {
    height: 50px;
    /* Slightly smaller than header but visible */
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    /* Make logo white if it's black */
}

.footer-brand p {
    color: #b0bdc9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    color: #b0bdc9;
    font-size: 0.95rem;
}

.footer-links a {
    color: #b0bdc9;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    background-color: #233140;
    /* Darker shade */
    padding: 20px 0;
    text-align: center;
    color: #7f8fa4;
    font-size: 0.85rem;
}

/* =========================================
   CATALOG LIST PAGE
   ========================================= */
.page-header {
    background-color: #f0f4f8;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e1e8ed;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
}

.catalog-list-section {
    padding: 60px 0 100px;
    background-color: #fff;
    min-height: 80vh;
}

/* Filter Tabs (Updated for Anchor Links) */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    /* Ensure links look like buttons */
    display: inline-block;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--heading-color);
    color: #fff;
    border-color: var(--heading-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.2);
}

/* Controls */
.list-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.result-count {
    color: #888;
    font-size: 0.95rem;
}

.search-box input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
    font-size: 0.9rem;
}

/* Listing Grid */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.list-card {
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s;
}

.list-card:hover {
    transform: translateY(-5px);
}

.list-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.414;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
    cursor: pointer;
}

.list-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.list-card:hover .list-card-image img {
    transform: scale(1.05);
}

.list-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.list-card:hover .list-card-overlay {
    opacity: 1;
}

.view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
}

.list-card-info {
    padding: 15px 5px 0;
}

.category-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.list-card-info h3 {
    font-size: 0.9rem;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-weight:normal;
}

.list-card-info p {
    color: #999;
    font-size: 0.9rem;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    text-align: center;
    line-height: 40px;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--heading-color);
    color: var(--heading-color);
}

.page-btn.active {
    background: var(--heading-color);
    color: #fff;
    border-color: var(--heading-color);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

.page-dots {
    color: #999;
}