/* Vithu Trust Fund Homepage Styles - Matching vithu.org */

/* ========== Global Variables ========== */
:root {
    --color-navy: #1a1a2e;
    --color-orange: #ff6b35;
    --color-white: #ffffff;
    --color-dark: #333333;
    --color-light: #666666;
    --color-bg-light: #f8f9fa;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== Hero Section ========== */
.vithu-hero-section {
    position: relative;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align to the left side */
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--color-white);
    padding: 0 20px;
    max-width: 800px;
    margin-left: max(20px, calc((100vw - 1200px) / 2 + 20px)); /* Align with the site container/logo */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ffffff;
    color: #0e75c0;
    border: 2px solid transparent;
    border-radius: 30px;
}

.btn-primary:hover {
    background: #0e75c0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 117, 192, 0.4);
    text-decoration: none !important;
}

.btn-secondary {
    background: #0e75c0;
    color: #ffffff;
    border: 2px solid #0e75c0;
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 25px;
}

.btn-secondary:hover {
    background: #0c5fa0;
    color: #ffffff;
    border-color: #0c5fa0;
    text-decoration: none !important;
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

/* ========== About Section ========== */
.vithu-about-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-col img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.about-image-col img:hover {
    transform: translateY(-5px);
}

.about-content-col {
    padding-right: 20px;
}

.about-content .section-title {
    text-align: left;
}

.about-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-funds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns for funds */
    gap: 20px;
    margin-bottom: 40px;
}

.fund-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 600;
}

.fund-item::before {
    content: "\ea9a"; /* Icofont check mark */
    font-family: IcoFont !important;
    color: var(--color-orange);
    font-size: 20px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ========== Action Cards Section ========== */
.vithu-action-cards-section {
    padding: 80px 0;
    background: var(--color-white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.action-card {
    background: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 50px;
    color: var(--color-orange);
    margin-bottom: 20px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.card-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========== Our Values Section (Benefit Area) ========== */
.benefit-area {
    padding: 100px 0 70px 0;
    background: #F9F9F9;
}

.benefit-area.three {
    background: #F9F9F9;
}

/* Ensure Elementor container and widget have light gray background */
.elementor-element-bb0cb9a {
    background-color: #F9F9F9 !important;
}

.elementor-element-014c8c5 {
    background-color: #F9F9F9 !important;
}

.pt-100 {
    padding-top: 100px;
}

.pb-70 {
    padding-bottom: 70px;
}

/* ========== Bootstrap Grid System for Values Section ========== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-sm-6,
.col-lg-3,
.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Mobile: 1 column (default) */
.col-sm-6,
.col-lg-3,
.col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Small screens and up: 2 columns */
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Large screens and up: 4 columns */
@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Large screens and up: 2 columns (50% width for How We Work section) */
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.text-center {
    text-align: center;
}

.section-title .sub-title {
    display: inline-block;
    color: #0e75c0;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-weight: 700;
}

.section-title p {
    margin-bottom: 0;
    max-width: 595px;
    margin-left: auto;
    margin-right: auto;
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Benefit Items */
.benefit-item {
    margin-bottom: 30px;
    text-align: center;
    border-radius: 30px;
    padding: 30px 15px;
    border: 1px dashed #0e75c0;
    transition: all 0.5s ease;
    background-color: #fff;
}

.benefit-item:hover {
    transform: translate(0, -10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #0e75c0;
    font-size: 35px;
    margin-bottom: 18px;
    transition: all 0.5s ease;
}

.benefit-item:hover i {
    color: #fff;
    background-color: #0c5fa0;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0e75c0;
    font-weight: 600;
}

.benefit-item p {
    margin-bottom: 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== Recent Projects / Donations Area ========== */

/* Section wrapper and padding utilities */
.donations-area {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

/* Ensure Elementor container has white background */
.elementor-element-a66edd9 {
    background-color: #ffffff !important;
}

.elementor-element-2284191 {
    background-color: #ffffff !important;
}

.pt-100 {
    padding-top: 100px;
}

.pb-70 {
    padding-bottom: 70px;
}

/* Responsive grid system - col-lg-4 (3 columns desktop) */
.col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-lg-4 {
        flex: 0 0 50%;      /* 2 columns tablet */
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;  /* 3 columns desktop */
        max-width: 33.333333%;
    }
}

/* Project card styling */
.donation-item {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.donation-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Project image */
.donation-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.donation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.donation-item:hover .donation-img img {
    transform: scale(1.05);
}

/* Status badge */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
    z-index: 2;
}

.status-badge.status-ongoing {
    background-color: #0e75c0;  /* Site primary blue */
}

.status-badge.status-completed {
    background-color: #28a745;  /* Green */
}

/* Project content */
.donation-content {
    padding: 25px 20px;
}

.donation-content h3 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.donation-content h3 a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.donation-content h3 a:hover {
    color: #0e75c0;
}

/* Project amount */
.donation-amount {
    font-size: 18px;
    font-weight: 700;
    color: #275b8f;  /* Site dark blue */
    margin-bottom: 20px;
}

/* View Project button */
.btn-view-project {
    display: inline-block;
    padding: 10px 24px;
    background-color: #0e75c0;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-view-project:hover {
    background-color: #275b8f;
    transform: translateY(-2px);
}

/* Comprehensive underline removal for all link states in donation-content */
.donation-content h3 a,
.donation-content h3 a:link,
.donation-content h3 a:visited,
.donation-content h3 a:hover,
.donation-content h3 a:active,
.donation-content h3 a:focus {
    text-decoration: none !important;
}

/* Ensure no underlines in all states for View Project button */
.btn-view-project,
.btn-view-project:link,
.btn-view-project:visited,
.btn-view-project:hover,
.btn-view-project:active,
.btn-view-project:focus {
    text-decoration: none !important;
}

/* Remove underlines from ALL links inside donation-content (catch-all) */
.donation-content a {
    text-decoration: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .donation-content h3 {
        font-size: 14px;
    }
    .donation-amount {
        font-size: 16px;
    }
}

/* ========== Stats Section ========== */
.vithu-stats-section {
    padding: 100px 0 70px 0;
    background: #f5f7fa;
    color: #666666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 50px;
    color: #4a6fa5;
    margin-bottom: 20px;
    line-height: 1;
}

.stat-icon i {
    display: inline-block;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    display: inline-block;
    color: #3d5a80;
}

.stat-suffix {
    font-size: 40px;
    display: inline-block;
    margin-left: 5px;
    color: #3d5a80;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 16px;
    margin-top: 10px;
    color: #6c757d;
}

/* ========== How We Work Section ========== */
.work-area {
    background: #ffffff;
}

.work-area.pt-100 {
    padding-top: 100px;
}

.work-area.pb-70 {
    padding-bottom: 70px;
}

.work-content .section-title {
    margin-bottom: 40px;
}

.work-content .section-title .sub-title {
    display: block;
    color: #0e75c0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.work-content .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0e75c0;
    line-height: 1.3;
    margin: 0;
}

.work-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-content ul li {
    margin-bottom: 30px;
}

.work-content ul li h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.work-content ul li h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #0e75c0;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.work-content ul li p {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
    padding-left: 65px;
}

/* Images Column - Overlapping Effect */
.work-area .work-img {
    text-align: right;
    margin-bottom: 30px;
}

.work-area .work-img img {
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
}

.work-area .work-img img:nth-child(1) {
    max-width: 405px;
}

.work-area .work-img img:nth-child(2) {
    max-width: 410px;
    transform: translateY(-150px);  /* Visual shift without affecting document flow */
    margin-right: 225px;            /* Shifts second image to the left */
}

/* Mobile Responsive for How We Work */
@media (max-width: 991px) {
    .work-area.pt-100 {
        padding-top: 60px;
    }

    .work-area.pb-70 {
        padding-bottom: 40px;
    }

    .work-content .section-title h2 {
        font-size: 28px;
        text-align: center;
    }

    .work-content .section-title .sub-title {
        text-align: center;
    }

    .work-content ul li h3 {
        font-size: 18px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .work-content ul li p {
        padding-left: 0;
        text-align: center;
    }

    .work-img {
        margin-top: 40px;
    }

    /* Mobile: Remove overlap, stack images normally */
    .work-area .work-img {
        text-align: center;
    }

    .work-area .work-img img:nth-child(1) {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .work-area .work-img img:nth-child(2) {
        max-width: 100%;
        margin-top: 0;           /* Remove overlap on mobile */
        margin-right: 0;         /* Remove horizontal shift */
    }
}

@media (max-width: 767px) {
    .work-content .section-title h2 {
        font-size: 24px;
    }

    .work-content ul li {
        margin-bottom: 25px;
    }
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Benefit Area Responsive */
    .benefit-area {
        padding: 80px 0 50px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

/* Values tiles: stack on mobile/tablet, 4-in-row on desktop */
@media (max-width: 991px) {
    .benefit-area .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 992px) {
    .benefit-area .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .vithu-hero-section {
        height: 500px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .cards-grid,
    .stats-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Benefit Area Mobile */
    .benefit-area {
        padding: 60px 0 30px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title .sub-title {
        font-size: 14px;
    }

    .benefit-item {
        margin-bottom: 20px;
    }

    /* Action Cards Tablet Optimization */
    .cards-grid {
        gap: 25px;
    }

    .action-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .vithu-hero-section {
        height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Action Cards Mobile Optimization */
    .vithu-action-cards-section {
        padding: 60px 0;
    }

    .cards-grid {
        gap: 20px;
    }

    .action-card {
        padding: 30px 20px;
    }

    .card-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .card-description {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .btn-outline {
        width: 100%;
        padding: 12px 20px;
        min-height: 44px;
        display: block;
        text-align: center;
    }

    /* Benefit Item Extra Small Screens */
    .benefit-item h3 {
        font-size: 20px;
    }

    .benefit-item i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 30px;
    }
}

/* ========================================
   Bootstrap-Style Grid System
   ======================================== */

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-sm-6, .col-md-4, .col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Mobile: 1 column */
.col-sm-6, .col-md-4, .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Tablet (≥576px): 2 columns */
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Medium screens (≥768px): 3 columns for col-md-4 */
@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Desktop (≥992px): 3 columns */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* ========================================
   Blog Section - Match vithu.org exactly
   ======================================== */

/* Section wrapper */
.blog-area {
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
}

.blog-area.three {
    background-color: #f9f9f9;
}

.blog-area.three .blog-item {
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd8c;
    box-shadow: 0px 0px 20px 0px #dddddd8c;
}

/* Blog card */
.blog-item {
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 30px 30px 0 30px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.blog-item:hover {
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
    border-radius: 0;
}

/* Image */
.blog-item .top a {
    display: block;
}

.blog-item .top a img {
    width: 100%;
    border-radius: 30px 30px 0 30px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.blog-item:hover .top a img {
    border-radius: 0;
}

/* Content */
.blog-item .bottom {
    padding: 25px 25px 28px;
}

/* Meta info (date, author) */
.blog-item .bottom ul {
    margin-bottom: 16px;
    padding: 0;
    list-style: none;
}

.blog-item .bottom ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px;
    font-size: 15px;
    color: #757575;
}

.blog-item .bottom ul li:last-child {
    margin-right: 0;
}

.blog-item .bottom ul li i {
    color: #0e75c0;
    display: inline-block;
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.blog-item .bottom ul li span {
    display: inline-block;
}

.blog-item .bottom ul li a {
    display: inline-block;
    color: #757575;
    text-decoration: none;
}

.blog-item .bottom ul li a:hover {
    color: #275b8f;
}

/* Title */
.blog-item .bottom h3 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-item .bottom h3 a {
    color: #275b8f;
    text-decoration: none;
}

.blog-item .bottom h3 a:hover {
    color: #0e75c0;
}

/* Description */
.blog-item .bottom p {
    color: #757575;
    margin-bottom: 12px;
}

/* Read More button */
.blog-item .bottom .blog-btn {
    display: inline-block;
    font-weight: 600;
    color: #0e75c0;
    text-decoration: none;
}

.blog-item .bottom .blog-btn:hover {
    color: #275b8f;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .blog-area {
        text-align: center;
    }
}

/* ========================================
   Fix for Work Area - Compensate for Transformed Image
   ======================================== */

.work-area {
    padding-bottom: 150px;  /* Compensate for the transformed second image */
}

