@charset "UTF-8";

/* =========================
   HERO SECTION
========================= */

.blog-hero {
    padding: 70px 0 60px;
    background:
        linear-gradient(rgba(0,167,157,0.08),
        rgba(0,167,157,0.04)),
        #f8fcfc;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0,167,157,0.06);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0,167,157,0.12);
    color: #00a79d;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 18px;
}

.blog-hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 18px;
    line-height: 1.2;
}

.blog-hero p {
    max-width: 850px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

/* =========================
   BLOG GRID
========================= */

.blog-grid-wrapper {
    margin-top: 20px;
}



/* =====================================
   HORIZONTAL BLOG CARD
===================================== */

.horizontal-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid #edf1f1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all .3s ease;

    height: 260px; /* FIXED CARD HEIGHT */
}

.horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

/* IMAGE SIDE */



/* IMAGE SIDE */

.horizontal-card .blog-image-wrap {

    width:320px;

    min-width:320px;

    height:260px;

    background:#f8fcfc;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:18px;

    overflow:hidden;
}

/* BLOG IMAGE */

.horizontal-card .blog-thumb {

    width:100%;

    height:100%;

    object-fit:contain;

    transition:transform .4s ease;

    display:block;
}

/* HOVER */

.horizontal-card:hover .blog-thumb {

    transform:scale(1.03);
}

.horizontal-card:hover .blog-thumb {
    transform: scale(1.05);
}

/* CONTENT */

.horizontal-card .blog-card-content {
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    overflow: hidden;
}

/* META */

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-category {
    display: inline-block;
    background: rgba(0,167,157,0.1);
    color: #00a79d;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.blog-date {
    font-size: 13px;
    color: #777;
}

/* TITLE */

.blog-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 2; /* MAX 2 LINES */
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 62px;
}

.blog-title a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.blog-title a:hover {
    color: #00a79d;
}

/* DESCRIPTION */

.blog-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 3; /* MAX 3 LINES */
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 76px;
}

/* BUTTON */

.read-more-btn {
    color: #00a79d;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;

    margin-top: auto;
}

.read-more-btn:hover {
    color: #008e85;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:991px){

    .horizontal-card {
        flex-direction: column;
        height: auto;
    }

    .horizontal-card .blog-image-wrap {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }

    .blog-title {
        font-size: 20px;
        min-height: auto;
    }

    .blog-desc {
        min-height: auto;
    }

}

@media(max-width:576px){

    .horizontal-card .blog-card-content {
        padding: 18px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-desc {
        font-size: 14px;
    }

}


}
.blog-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 10px;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    background: rgba(0,167,157,0.1);
    color: #00a79d;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.blog-category:hover {
    background: #00a79d;
    color: #fff;
}

.blog-date {
    color: #888;
    font-size: 13px;
}

.blog-title {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 14px;
}

.blog-title a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.blog-title a:hover {
    color: #00a79d;
}

.blog-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a79d;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.read-more-btn span {
    transition: .3s;
}

.read-more-btn:hover span {
    transform: translateX(4px);
}

/* =========================
   PAGINATION
========================= */

.pagination-wrapper {
    margin-top: 60px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 4px;
    border-radius: 12px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #e5e5e5;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #00a79d;
    color: #fff;
    border-color: #00a79d;
}

/* =========================
   CATEGORY SECTION
========================= */

.category-links {
    margin-top: 70px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #edf1f1;
}

.category-links h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #222;
}

.category-links a {
    display: inline-block;
    margin: 6px;
    padding: 10px 18px;
    background: #f7fafa;
    border-radius: 40px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    border: 1px solid #e3eeee;
    transition: .3s;
    font-weight: 600;
}

.category-links a:hover {
    background: #00a79d;
    color: #fff;
    border-color: #00a79d;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .blog-hero h1{
        font-size:36px;
    }

}

@media(max-width:767px){

    .blog-hero{
        padding:50px 0;
    }

    .blog-hero h1{
        font-size:30px;
    }

    .blog-thumb{
        height:220px;
    }

    .blog-card-content{
        padding:20px;
    }

}

.no-blog-found{
    padding:60px 20px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.blog-grid-wrapper > div {
    display: flex;
}

/* =========================
FAQ SECTION
========================= */

.faq-section{
    background:#f8fcfc;
}

.faq-header{
    max-width:850px;
    margin:auto;
}

.faq-badge{
    display:inline-block;
    background:rgba(0,167,157,0.12);
    color:#00a79d;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.faq-title{
    font-size:42px;
    font-weight:700;
    color:#12263a;
    margin-bottom:18px;
}

.faq-subtitle{
    font-size:17px;
    line-height:1.9;
    color:#667085;
}

.faq-accordion{
    max-width:950px;
    margin:auto;
}

.faq-card{
    background:#fff;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 8px 26px rgba(0,0,0,0.05);
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    padding:24px 28px;
    text-align:left;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:18px;
    font-weight:600;
    color:#12263a;
    cursor:pointer;
}

.faq-answer{
    padding:0 28px 24px;
    color:#667085;
    line-height:1.9;
    font-size:16px;
}

.faq-icon{
    font-style:normal;
    color:#00a79d;
    font-size:22px;
    font-weight:700;
}

@media(max-width:768px){

.faq-title{
    font-size:30px;
}

.faq-subtitle{
    font-size:15px;
}

.faq-question{
    font-size:16px;
    padding:20px;
}

.faq-answer{
    padding:0 20px 20px;
    font-size:15px;
}

}


/* =========================
SEO SECTION
========================= */

.premium-seo-section{
    background:#fff;
}

.premium-seo-box{
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fcfc 100%
    );

    border-radius:32px;

    padding:60px;

    border:1px solid rgba(0,167,157,0.08);

    box-shadow:
    0 14px 40px rgba(16,24,40,0.06);

    text-align:center;
}

.seo-badge{
    display:inline-block;
    background:rgba(0,167,157,0.12);
    color:#00a79d;
    padding:10px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

.premium-seo-title{
    font-size:46px;
    font-weight:700;
    line-height:1.3;
    color:#12263a;
    margin-bottom:22px;
}

.premium-seo-subtitle{
    max-width:950px;
    margin:auto;
    color:#667085;
    font-size:18px;
    line-height:1.9;
    margin-bottom:30px;
}

.premium-seo-content{
    max-width:1050px;
    margin:auto;
    text-align:left;
}

.premium-seo-content p{
    color:#667085;
    font-size:17px;
    line-height:2;
    margin-bottom:18px;
}

.premium-seo-content a{
    color:#00a79d;
    font-weight:600;
    text-decoration:none;
}

.premium-seo-content a:hover{
    text-decoration:underline;
}

.seo-features{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-top:35px;
}

.seo-feature-item{
    background:#fff;
    border:1px solid rgba(0,167,157,0.10);
    padding:14px 22px;
    border-radius:40px;
    font-size:15px;
    font-weight:500;
    color:#344054;
    box-shadow:0 4px 12px rgba(0,0,0,0.04);
}

.seo-feature-item span{
    color:#00a79d;
    font-weight:700;
    margin-right:6px;
}

@media(max-width:768px){

.premium-seo-box{
    padding:40px 24px;
}

.premium-seo-title{
    font-size:30px;
}

.premium-seo-subtitle{
    font-size:15px;
}

.premium-seo-content p{
    font-size:15px;
    line-height:1.9;
}

}