
            /* Base Section Styling */
.industries-section {
    padding: 100px 20px;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .sub-title {
    color: #148687;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    color: #082424;
    font-size: 44px;
    margin: 0 0 16px 0;
    font-weight: 700;
}

.section-header p {
    color: #4a6161;
    max-width: 650px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
    font-size: 16px;
}

.header-line {
    width: 70px;
    height: 3px;
    background-color: #148687;
    margin: 0 auto;
}

/* Grid Layout (Perfect for 8 elements across all screen dimensions) */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

/* Card Core styling */
.industry-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(8, 36, 36, 0.03);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                background-color 0.4s ease;
    cursor: pointer;
}

.industry-card h3 {
    color: #082424;
    font-size: 21px;
    margin: 24px 0 12px 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.industry-card p {
    color: #607575;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

/* Icon Design Elements */
.icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #f0f5f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.icon-wrapper svg {
    width: 26px;
    height: 26px;
    stroke: #148687;
    transition: stroke 0.4s ease;
}

/* Smooth Interactive Hover Animations */
.industry-card:hover {
    transform: translateY(-8px);
    background-color: #148687;
    box-shadow: 0 20px 35px rgba(20, 134, 135, 0.2);
}

.industry-card:hover h3 {
    color: #ffffff;
}

.industry-card:hover p {
    color: #e2f3f3;
}

.industry-card:hover .icon-wrapper {
    background-color: rgb(255 255 255);
    transform: scale(1.05);
}

.industry-card:hover .icon-wrapper svg {
    stroke: #ffffff;
}

/* --- Core Scroll Animation Setup --- */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* This class gets added smoothly by JavaScript when visible */
.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Calculates staggered entry speeds sequentially dynamically */
.industry-card.scroll-animate.show {
    transition-delay: calc(var(--order) * 0.1s);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h2 { font-size: 32px; }
    .industries-section { padding: 70px 15px; }
}


/* Base Layout Settings */
.deliverables-section {
    padding: 100px 20px;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section Custom Matching */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .sub-title {
    color: #148687;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-header h2 {
    color: #082424;
    font-size: 42px;
    margin: 0 0 16px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #4a6161;
    max-width: 620px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
    font-size: 16px;
}

.header-line {
    width: 70px;
    height: 3px;
    background-color: #148687;
    margin: 0 auto;
}

/* Grid Framework - Balanced 4 Columns */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

/* Luxury White Card Overlays */
.deliverable-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(8, 36, 36, 0.02);
    border: 1px solid rgba(20, 134, 135, 0.06);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.4s ease;
}

.deliverable-card h3 {
    color: #082424;
    font-size: 20px;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.deliverable-card p {
    color: #556b6b;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* Diamond / Custom Accent Icons */
.card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(20, 134, 135, 0.07);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #148687;
    transition: stroke 0.3s ease;
}

/* Interactive Card Hovers */
.deliverable-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(8, 36, 36, 0.07);
    border-color: rgba(20, 134, 135, 0.3);
}

.deliverable-card:hover .card-icon {
    background-color: #148687;
    transform: scale(1.05);
}

.deliverable-card:hover .card-icon svg {
    stroke: #ffffff;
}

/* Action Center Button (Matches UI reference shape) */
.action-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-primary {
    background-color: #148687;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 8px 6px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-arrow {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #148687;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #082424;
}

.btn-primary:hover .btn-arrow {
    transform: rotate(45deg);
}

/* --- Core Intersection Observer Scroll Animation Setup --- */
.scroll-trigger {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-trigger.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Generates consecutive staggered entrance timing delay values */
.deliverable-card.scroll-trigger.is-visible {
    transition-delay: calc(var(--anim-order) * 0.08s);
}

/* Responsive Scaling Overrides */
@media (max-width: 768px) {
    .section-header h2 { font-size: 32px; }
    .deliverables-section { padding: 70px 15px; }
    .deliverables-grid { gap: 16px; }
}



/* Base Section Layout Setup */
.solution-section {
    background-color: #ECF0F0;
    padding: 100px 20px;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Two-Column Responsive Grid */
.solution-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Typography Hierarchy Styling */
.content-side .sub-title {
    color: #148687;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.content-side h2 {
    color: #082424;
    font-size: 46px;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.content-side .main-desc {
    color: #4a6161;
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* 3 Pillars Layout Structure */
.pillars-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.4);
    padding: 16px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.pillar-item:hover {
    background: #ffffff;
}

.pillar-number {
    font-size: 28px;
    font-weight: 700;
    color: #148687;
    line-height: 1;
    min-width: 45px;
}

.pillar-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #082424;
    font-weight: 600;
}

.pillar-text p {
    margin: 0;
    font-size: 14px;
    color: #556b6b;
}

/* Interactive Right Column Cards Layout */
.visual-side {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.matrix-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(8, 36, 36, 0.03);
    border: 1px solid rgba(8, 36, 36, 0.05);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.matrix-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(8, 36, 36, 0.06);
}

/* Custom Component Badges */
.card-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.badge-replaces {
    background: #fde8e8;
    color: #e02424;
}

.badge-includes {
    background: rgb(20 134 135);
    color: #ffffff;
}

/* List Framework Inside Cards */
.matrix-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.matrix-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.replaces-card .matrix-list li {
    color: #889898;
    text-decoration: line-through;
}

.includes-card .matrix-list li {
    color: #082424;
    font-weight: 600;
}

/* Vector SVG Indicator Icons */
.icon-close {
    width: 18px;
    height: 18px;
    color: #e02424;
    flex-shrink: 0;
}

.icon-check {
    width: 18px;
    height: 18px;
    color: #148687;
    flex-shrink: 0;
}

/* Featured Action Button Setup */
.includes-card .btn-primary {
    background-color: #148687;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 6px 6px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.includes-card .btn-arrow {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #148687;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.includes-card .btn-primary:hover {
    background-color: #082424;
}

.includes-card .btn-primary:hover .btn-arrow {
    transform: rotate(45deg);
}

/* --- Core Intersection Observer Scroll Animation Setup --- */
.scroll-trigger {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-trigger.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sequence dynamic scaling delay */
.pillar-item.scroll-trigger.is-visible {
    transition-delay: calc(var(--anim-order) * 0.1s);
}

.matrix-card.scroll-trigger.is-visible {
    transition-delay: calc(var(--anim-order) * 0.12s);
}

/* Responsive Scaling Viewport Rules */
@media (max-width: 991px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .content-side h2 { font-size: 36px; }
}


button, input, optgroup, select, textarea {
        border: 1px solid #1d8b8a !important;
}

.header-main img {
    height: auto;
    width: 130px;
}

.widget-head img {
    height: auto;
    width: 240px;
}

.hero-content span {
    font-size: 90px;
}

/* Base Layout Settings */
.structured-why-section {
    background-color: #ECF0F0; /* Requested theme background */
    padding: 100px 20px;
    font-family: 'DM Sans', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Unified Top Typography Layout Styling */
.section-top-content {
    text-align: center;
    margin-bottom: 65px;
}

.section-top-content .sub-heading {
    color: #148687;
    background: rgba(20, 134, 135, 0.08);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.section-top-content h2 {
    color: #082424;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.section-top-content p {
    color: #556b6b;
    max-width: 700px;
    margin: 0 auto;
    font-size: 16.5px;
    line-height: 1.65;
}

.accent-bar {
    width: 60px;
    height: 3px;
    background-color: #148687;
    margin: 24px auto 0 auto;
}

/* 3-Column Grid Rows Framework */
.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.row-margin {
    margin-bottom: 30px;
}

/* Premium White Card UI Design */
.column-card {
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(8, 36, 36, 0.02);
    border: 1px solid rgba(8, 36, 36, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-body {
    padding: 40px 35px;
    position: relative;
    z-index: 2;
}

/* Inner Vector Sphere Styling */
.vector-shape {
    width: 52px;
    height: 52px;
    background: #f0f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.vector-shape svg {
    width: 24px;
    height: 24px;
    stroke: #082424;
    transition: stroke 0.4s ease;
}

.column-card h3 {
    margin: 0 0 12px 0;
    font-size: 21px;
    color: #082424;
    font-weight: 600;
}

.column-card p {
    margin: 0;
    font-size: 14.5px;
    color: #607575;
    line-height: 1.6;
}

/* Underlay Teal Glow Strip Reveal */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #148687;
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Advanced Card Hover State Interactions */
.column-card:not(.transparent-card):hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 36, 36, 0.06);
}

.column-card:not(.transparent-card):hover .card-glow {
    height: 4px; /* Unveils a sleek top accent line */
}

.column-card:not(.transparent-card):hover .vector-shape {
    background: #148687;
    transform: scale(1.05);
}

.column-card:not(.transparent-card):hover .vector-shape svg {
    stroke: #ffffff;
}

/* Transparent Row Balance Utility */
.transparent-card {
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
}

/* --- Core Intersection Observer Scroll Animation Configurations --- */
.scroll-trigger {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-trigger.active-view {
    opacity: 1;
    transform: translateY(0);
}

/* Generates sequential layout cascading entry delays */
.column-card.scroll-trigger.active-view {
    transition-delay: calc(var(--card-idx) * 0.1s);
}

/* Responsive Grid Adaptation Rules */
@media (max-width: 991px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .transparent-card {
        display: none;
    }
    .section-top-content h2 { font-size: 36px; }
}

@media (max-width: 768px) {
    .cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .row-margin {
        margin-bottom: 20px;
    }
    .structured-why-section {
        padding: 70px 15px;
    }
}


/* Base Layout & Theme Background */
.challenges-section {
    padding: 100px 20px;
    font-family: 'DM Sans', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Element Styles */
.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-header .sub-heading {
    color: #148687; /* Matches previous teal tag accents */
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.section-header h2 {
    color: #082424; /* Deep dark teal/navy for headings */
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.accent-bar {
    width: 60px;
    height: 3px;
    background-color: #148687;
    margin: 20px 0 0 0;
}

/* Clean 2-Column Responsive Grid Structure */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px; /* Precise vertical and horizontal layout padding */
}

/* Premium White Card UI Design */
.challenge-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 28px 35px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 15px rgba(8, 36, 36, 0.02);
    border: 1px solid rgba(8, 36, 36, 0.03);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease;
}

.challenge-card p {
    margin: 0;
    color: #082424;
    font-size: 18px;
    font-weight: 500;
}

/* Red "X" Marker Icon Mechanics */
.cross-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: #fceeed; /* Gentle soft crimson/red underlay */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cross-icon-wrapper svg {
    width: 20px;
    height: 20px;
    stroke: #b93c3c; /* Professional dark ruby challenge text color */
    transition: stroke 0.3s ease;
}

/* Modern Card Micro-Interactions on Hover */
.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(8, 36, 36, 0.06);
    border-color: rgba(20, 134, 135, 0.2); /* Soft highlight with your signature teal */
}

.challenge-card:hover .cross-icon-wrapper {
    background-color: #b93c3c;
    transform: scale(1.05) rotate(90deg); /* Modern smooth rotation hint */
}

.challenge-card:hover .cross-icon-wrapper svg {
    stroke: #ffffff;
}

/* --- Core Intersection Observer Scroll Animation Configurations --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay calculations row by row */
.challenge-card.scroll-reveal.visible {
    transition-delay: calc(var(--card-order) * 0.06s);
}

/* Responsive Grid Adaptation Rules */
@media (max-width: 991px) {
    .section-header h2 { font-size: 34px; }
    .challenges-grid {
        grid-template-columns: 1fr; /* Cascades into a single column layout beautifully on smaller devices */
        gap: 16px;
    }
    .challenge-card {
        padding: 22px 26px;
    }
}

.social-icon{
    gap:15px;
    margin-top:25px;
}

.social-icon a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#0F8B8D;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:.4s ease;
}

.social-icon a:hover{
    background:#143642;
    transform:translateY(-5px);
}

.footer-contact-items .widget-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact-list li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
    color:#fff;
    line-height:1.6;
}

.footer-contact-list li i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0F8B8D;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:16px;
    flex-shrink:0;
}

.footer-contact-list li a,
.footer-contact-list li span{
    color:#0F8B8D;
    text-decoration:none;
    transition:.3s;
}

.footer-contact-list li a:hover{
    color:#0F8B8D;
}


.floating-buttons {
    position: fixed !important;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

.floating-buttons img {
    width: 30px;
    height: 30px;
}
a.whatsapp-btn {
    background-color: #1bd741;
}
a.call-btn {
    background-color: #2196f3;
}


.post-content h1 {
    font-size: 38px !important;
}

.blog-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Section */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.sub-title {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.main-title {
  color: var(--text-dark);
  font-size: 36px;
  margin: 10px 0 15px;
  font-weight: 700;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1-fraction);
  gap: 30px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1-fraction);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1-fraction;
  }
}

/* Individual Cards */
.blog-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Card Visuals */
.blog-image {
  position: relative;
  overflow: hidden;
  padding-top: 66.67%; /* 3:2 Aspect Ratio */
}

.blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

/* Card Typography & Layout */
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more-btn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.read-more-btn:hover {
  gap: 8px;
}

/* Bottom CTA Button */
.view-all-container {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.view-all-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fixed: Changed 1-fraction to 1fr */
  gap: 30px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr); /* Fixed: Changed 1-fraction to 1fr */
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr; /* Fixed: Changed 1-fraction to 1fr */
  }
}


.cm-blogs {
    margin-top: 30px;
}