:root {
    --Black: #000000;
    --White: #ffffff;
    --body-text: #6e7673;
    --Primary: #0d401c;
    --Secondary: #f8c32c;
    --Third: #8a9b8e;
    --Text: #6e7673;
    --Text-2: #072010;
    --Text-3: #eeeeee;
    --Text-4: #278d45;
    --Text-5: #222222;
    --Text-6: #ededed;
    --Text-7: #093416;
    --Bg: #235130;
    --Bg-1: rgb(13, 64, 28, 0.1);
    --Bg-2: rgb(4, 18, 8, 0.4);
    --Bg-3: rgb(13, 64, 28, 0.05);
    --Bg-4: #6c512f;
    --Bg-5: #3d6649;
    --Bg-6: #52320a;
    --Bg-7: rgb(13, 64, 28, 0.12);
    --Bg-8: #f3f0eb;
    --Bg-9: rgb(13, 64, 28, 0.13);
    --Bg-10: rgb(13, 64, 28, 0.05);
    --Bg-11: #1c6932;
    --Bg-12: rgba(255, 255, 255, 0.07);
    --Bg-13: rgb(13, 64, 28, 0.7);
    --Bg-14: rgb(4, 18, 8, 0.3);
    --Bg-15: rgb(255, 255, 255, 0.25);
    --Bg-16: #e9e0ce;
    --Bg-17: rgb(13, 64, 28, 0.07);
    --Border: rgb(13, 64, 28, 0.15);
    --Border-2: #6a5030;
    --Border-3: rgb(255, 255, 255, 0.2);
    --Border-4: #dbe3dd;
    --Border-5: rgba(255, 255, 255, 0.15);
    --Border-6: #e9e4df;
    --Border-7: rgba(255, 255, 255, 0.5);
    --Border-8: rgb(243, 240, 235, 0.25);
    --Border-9: rgb(4, 18, 8, 0.25);
    --Border-10: rgba(255, 255, 255, 0.3);
    --Border-11: #d1d6cc;
    --Border-12: rgb(13, 64, 28, 0.2);
    --Border-13: rgb(82, 50, 10, 0.23);
    --Border-14: #3b6345;
    --Border-15: rgb(13, 64, 28, 0.5);
    --Color-1: #d11b1b;
    --Color-2: #acd373;
    --Color-3: #f26522;
    --Color-4: #8560a8;
    --Color-5: #95bfa1;
    --Color-6: rgb(255, 255, 255, 0.4);
    --Color-7: #156b2f;
    --Color-8: #1cbbb4;
    --Color-9: #bd8cbf;
    --Color-10: #f26c4f;
    --Color-11: #ed1c24;
    --Color-12: #00aeef;
    --Color-13: #39b54a;
}

.contact-card {
    background-color: var(--Secondary);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
}

.contact-inner {
    border: 1px dashed rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.contact-list {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background-color: var(--Bg-11);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h6 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
}

.contact-btn {
    width: fit-content;
}

.map {
    border: 2px dashed var(--Bg-11);
    overflow: hidden;
    border-radius: 25px;
}

/* product card */

.product-card {
    background: var(--White);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--Border);
    box-shadow: 0 6px 20px rgba(13, 64, 28, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--Secondary);
    box-shadow: 0 15px 35px rgba(13, 64, 28, 0.15);
}

.card-image {
    background: var(--Bg-3);
    width: 100%;
    height: 230px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--Border);
    border-radius: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 22px 18px;
    text-align: center;
}

.card-content h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--Primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.product-card:hover .card-content h5 {
    color: var(--Text-4);
}

.card-content p {
    font-size: 15px;
    color: var(--Text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Optional Badge Style */
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--Secondary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
}

.product-card:hover::before {
    transform: scaleY(1);
}

/* Responsive */
@media (max-width: 768px) {
    .card-image {
        padding: 20px;
    }

    .card-image img {
        height: 180px;
    }

    .card-content {
        padding: 18px 15px;
    }

    .card-content h5 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }
}

/* Blogs */
.blog-card {
    background: var(--White);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--Border);
    box-shadow: 0 6px 20px rgba(13, 64, 28, 0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(13, 64, 28, 0.15);
    border-color: var(--Secondary);
}

.blog-img {
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--Primary);
    line-height: 1.5;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h4 {
    color: var(--Text-4);
}

.blog-content p {
    font-size: 15px;
    color: var(--Text);
    line-height: 1.8;
    margin-bottom: 20px;

    /* Optional line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content a {
    margin-top: auto;
    text-decoration: none;
}

.blog-btn {
    background: var(--Primary);
    color: var(--White);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-btn:hover {
    background: var(--Secondary);
    color: var(--Text-2);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-img img {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h4 {
        font-size: 20px;
    }

    .blog-content p {
        font-size: 14px;
    }

    .blog-btn {
        width: 100%;
    }
}
