
        .project-section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 38px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
        }

        .section-subtitle {
            text-align: center;
            color: #6c757d;
            max-width: 650px;
            margin: auto;
            margin-bottom: 50px;
        }

        .project-card {
            border: none;
            border-radius: 18px;
            overflow: hidden;
            transition: 0.35s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            background: #fff;
        }

        .project-card:hover {
            transform: translateY(-8px);
        }

        .project-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .project-card-body {
            padding: 22px;
        }

        .project-card h5 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .project-card p {
            color: #666;
            font-size: 15px;
        }

        .pagination .page-link {
            border: none;
            margin: 0 4px;
            border-radius: 10px;
            padding: 10px 16px;
            color: #000;
        }

        .pagination .active .page-link {
            background: #000;
            color: #fff;
        }



        /* internal page css */

        .blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.sidebar-card h4 {
    font-size: 28px;
    margin-bottom: 25px;
    font-family: Playfair Display;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    align-items: center;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 16px;
}

.recent-post a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin-bottom: 6px;
}

.recent-post span {
    font-size: 13px;
    color: #777;
}

@media(max-width:991px){

    .blog-sidebar{
        position: static;
        margin-top: 20px;
    }

}

.content{
    background:#fff;
    padding:70px;
    border-radius:32px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
    margin-bottom:70px;
    position:relative;
    overflow:hidden;
}

.content p{
    font-size:19px;
    line-height:1.95;
    color:#444;
    margin-bottom:26px;
    font-weight:400;
}

.content h2{
    font-size:38px;
    font-family:"Cormorant Garamond",serif;
    margin:55px 0 22px;
    color:#222;
    font-weight:700;
    position:relative;
    padding-bottom:12px;
}

.content h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:80px;
    height:2px;
    background:#b38b5d;
}

.content ul{
    padding-left:0;
    list-style:none;
}

.content ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:16px;
    font-size:17px;
    line-height:1.8;
    color:#444;
}

.content ul li::before{
    content:"✦";
    position:absolute;
    left:0;
    top:2px;
    color:#b38b5d;
    font-size:14px;
}

blockquote{
    background:#faf6ef;
    padding:42px;
    border-left:4px solid #b38b5d;
    border-radius:22px;
    font-size:24px;
    line-height:1.7;
    color:#2e2e2e;
    font-style:italic;
    margin:45px 0;
}

.author{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid #eee;
    font-size:18px;
    color:#222;
    display:flex;
    align-items:center;
    gap:12px;
}

.author::before{
    content:"";
    width:42px;
    height:42px;
    border-radius:50%;
    background:#e9ddcf;
}

@media(max-width:991px){

    .content{
        padding:45px;
    }

}

@media(max-width:767px){

    .content{
        padding:28px;
        border-radius:22px;
    }

    .content h2{
        font-size:30px;
    }

    .content p{
        font-size:17px;
        line-height:1.8;
    }

    blockquote{
        font-size:19px;
        padding:25px;
    }

}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin:55px 0;
}

.stat-box{
    background:linear-gradient(135deg,#faf6ef,#f4ece0);
    border:1px solid rgba(179,139,93,.12);
    padding:38px 30px;
    border-radius:24px;
    text-align:left;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.stat-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#b38b5d;
    border-radius:20px;
}

.stat-box:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.stat-box h3{
    font-size:52px;
    font-weight:700;
    margin-bottom:12px;
    color:#8b6b46;
    font-family:"Cormorant Garamond",serif;
    line-height:1;
}

.stat-box p{
    margin:0;
    font-size:15px;
    color:#555;
    line-height:1.7;
    max-width:220px;
}

@media(max-width:767px){

    .stats-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .stat-box{
        padding:28px 22px;
    }

    .stat-box h3{
        font-size:40px;
    }

}