:root {
    --teal: #126A3B;        /* Dark Green - AGRO TRADING text */
    --teal-dark: #0B4F2A;   /* Deep Green */

    --teal-light: #EEF8E9;  /* Light Green Background */

    --gold: #E4AD36;        /* Golden Leaf */
    --gold-light: #F8EBC7;  /* Light Gold */

    --ivory: #FFFFFF;       /* White */
    --ivory2: #F7FAF4;      /* Very Light Greenish White */
}
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ───── FONTS ───── */
.font-playfair em {
       font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
}


/* ── PAGE HERO BANNER ── */

.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-image: url('my-img/subbanner.webp');
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 46, 46, 0.88) 0%, rgba(15, 46, 46, 0.5) 60%, rgba(15, 46, 46, 0.1) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 80px 0;
}

.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
}

.breadcrumb-item.active {
    color: #fff;
    font-size: 13px;
  
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #aaa;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
}

.page-title em {
    font-style: italic;
    color: var(--gold);
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.bg-ivory {
    background: var(--ivory);
}

.bg-ivory2 {
    background: var(--ivory2);
}

/* ── Service Cards (icon-based, no images) ── */
.svc-card {
    border: 1px solid #e8e8e8;
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    background: #fff;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.25s;
    height: 100%;
}

.svc-card:hover {
    border-left-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(58, 73, 106, 0.11);
}

.svc-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--gold-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.25s;
}

.svc-card:hover .svc-icon-wrap {
    background: var(--teal-light);
}

.svc-icon-wrap i {
    font-size: 26px;
    color: var(--teal);
    transition: color 0.25s;
}

.svc-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--teal);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid #fff;
}

.svc-body {
    flex: 1;
}

.svc-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.svc-text {
    font-size: 13.5px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 12px;
}

.svc-tags span {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 2px 2px 0 0;
}

.process-step {
    text-align: center;
    padding: 20px 10px;
}

.process-icon {
    width: 72px;
    height: 72px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-icon i {
    font-size: 28px;
    color: var(--teal);
}

.process-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 32px 28px;
    background: #fff;
    height: 100%;
    transition: all 0.25s;
    position: relative;
}

.price-card:hover {
    border-color: var(--teal);
    box-shadow: 0 12px 32px rgba(29, 106, 106, 0.12);
}

.price-card.featured {
    border-color: var(--teal);
    background: var(--teal);
}

.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.price-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.price-amt {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-feature {
    font-size: 14px;
    color: #555;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-feature:last-of-type {
    border-bottom: none;
}

.price-feature i {
    color: var(--teal);
    font-size: 15px;
}

.accordion-button {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a !important;
    background: #fff !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--teal) !important;
}

.accordion-item {
    border: 1px solid #e8e8e8 !important;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.cta-strip {
    background: var(--teal);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    padding: 13px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    border: none;
}

.btn-gold:hover {
    background: #b8923e;
    color: #fff;
}

.btn-outline-w {
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}



/* Contact Section */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.7;
}

/* Contact Icons */
.footer-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.30);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon i {
    font-size: 16px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.30);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: #0F2E2E;
    transform: translateY(-3px);
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Mobile */
@media (max-width: 767px) {

    footer .col-lg-2,
    footer .col-lg-4 {
        margin-bottom: 30px;
    }
}

/*--arrow code fior index page*/
.cat-name-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cat-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.cat-arrow {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.cat-arrow i {
    color: white;
    font-size: 14px;
}

.cat-card:hover .cat-arrow {
    transform: translateX(5px);
}