@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");


:root {
    --primary: #2a8b3c;
    --primary-dark: #104b1b;
    --secondary: #e2b441;
    --secondary-dark: #c79a2f;
    --text: #000;
    --muted: #5f6d88;
    --bg: #eef3ff;
    --line: #d7ffde;
    --white: #ffffff;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

p {
    text-align: justify !important;
}

/* logo  */

.logo a {
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo img {
    max-width: 240px;
    width: 100%;
}

.evc-bottom {
    padding: 60px 0 70px;
}

.evc-section-tag {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.evc-about-h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.12;
    margin-bottom: 12px;
}


/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f8faff, #e8f2ff);
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #30aab1, #1d606a);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #1d606a, #30aab1);
}

/* nav  */

.nav-topbar {
    display: flex;

    justify-content: end;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--secondary);
}

.nav-contact-item {
    display: flex;
    align-items: center;
}

.nav-contact-item a {
    font-size: 15px;
    color: var(--secondary);
}

.nav-contact-item a i {
    font-size: 18px;
    margin-right: 5px;
}

.custom-navbar {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    position: relative;
    font-family: "Montserrat", sans-serif;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
}

.custom-navbar .container {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .custom-navbar {
        padding: 0;
    }
}

.nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}

ul.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    padding: 10px 0;
}

ul.nav-links li {
    position: relative;
}

ul.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    font-size: 16px;
    padding: 10px 12px;
    display: block;
}

ul.nav-links {
    display: flex;
}

ul.nav-links a:hover {
    color: #fff;
    background-color: var(--secondary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #076261;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 0;
    flex-direction: column;
    min-width: 300px;
    width: max-content;
    z-index: 999;
    border-radius: 0;
}

.dropdown-menu a {
    padding: 8px 10px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 20px;
    color: #fff !important;
    border-bottom: 1px solid #fff;
}

.dropdown-menu a:hover {
    background-color: #fff !important;
    color: var(--secondary) !important;
    font-weight: 500 !important;
}

@media (min-width: 992px) {
    .has-dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .desktop-menu {
        display: none !important;
    }

    ul.nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        display: none;
        width: 100%;
        gap: 0;
        z-index: 100;
        height: 100vh;
        overflow-y: auto;
        background-color: #fff;
        padding: 0;
    }

    ul.nav-links.show {
        display: flex;
    }

    ul.nav-links li {
        width: 100%;
    }

    ul.nav-links a {
        padding: 12px 10px;
        border-bottom: 1px solid #ccc;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        border: none;
    }

    .dropdown-menu a {
        padding: 8px 8px 8px 23px !important;
        font-size: 16px !important;
    }

    .has-dropdown .dropdown-menu {
        display: none;
    }

    .has-dropdown.show .dropdown-menu {
        display: flex;
    }
}

@media (min-width: 992px) {
    .nav-theme-btn {
        padding: 10px 25px !important;
        background-color: var(--secondary);
        border: none;
        margin-left: 5px;
        border-radius: 5px;
        font-weight: 600 !important;
        color: #fff !important;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}


.hs-hero {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 0;
    padding: 50px 0 50px;
}

.hs-hero-img-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    /* soft fade on the left edge */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 1) 32%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 1) 32%);
}

/* Blue abstract circle behind image */
.hs-hero-circle {
    position: absolute;
    top: -80px;
    right: 14%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 58, 112, 0.12) 0%, transparent 70%);
    z-index: 0;
}

.hs-hero-body {
    position: relative;
    z-index: 2;
}

.hs-title {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.18;
    margin-bottom: 6px;
}

.hs-title .hs-title-accent {
    color: var(--primary);
    display: block;
}

.hs-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin: 16px 0 28px;
}

/* ── Stats row ── */
.hs-stats {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}


/* ── CTA buttons ── */
.hs-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hs-btn-main {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 7px;
    padding: 13px 26px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(0, 58, 112, 0.22);
}

.hs-btn-main:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color: var(--white);
    box-shadow: 0 6px 22px rgba(0, 38, 73, 0.28);
}

.hs-btn-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: gap 0.2s, color 0.2s;
}

.hs-btn-link:hover {
    gap: 11px;
    color: var(--secondary-dark);
}

/* ── Conditions card (right overlay) ── */
.hs-conditions {
    background: linear-gradient(228deg, var(--primary) 0%, var(--primary-dark) 100%);

    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 40px rgba(0, 38, 73, 0.35);
}

.hs-cond-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 7px;
}

.hs-cond-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: opacity 0.2s;
}

.hs-cond-item:last-of-type {
    border-bottom: none;
}

.hs-cond-item:hover {
    opacity: 0.78;
}

.hs-cond-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.hs-cond-name {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.hs-cond-arrow {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
}

.hs-cond-more {
    display: block;
    font-size: 12.5px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;
}

.hs-cond-more:hover {
    color: #0aafac;
}

@media(max-width:991px) {
    .hs-conditions {
        margin-top: 24px;
    }

    .hs-hero-img-bg {
        width: 100%;
        opacity: 0.12;
    }

}

/* ═══════════════════════════════════════
       BOTTOM SERVICES BAR
    ═══════════════════════════════════════ */
.hs-services {
    background: var(--primary-dark);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.hs-services-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.hs-svc {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 160px;
}

.hs-svc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--white);
    background: var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.hs-svc-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.hs-svc-text span {
    font-size: 12px;
    color: var(--white);
    line-height: 1.45;
}

.hs-svc-divider {
    width: 1px;
    height: 44px;
    background: var(--line);
    flex-shrink: 0;
    align-self: center;
}

@media(max-width:768px) {
    .hs-svc-divider {
        display: none;
    }

    .hs-svc {
        min-width: 46%;
    }
}

@media(max-width:480px) {
    .hs-svc {
        min-width: 100%;
    }
}






.pr-med-hero {
    padding: 50px 0;
    background: linear-gradient(to right, #f6f6f6 55%, transparent 70%), url(../images/right-ban.PNG) no-repeat right center;
    background-size: auto, contain;
}

.pr-med-content {
    position: relative;
}

.pr-med-title {
    color: var(--primary);
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 1.30;
    font-weight: 800;
    letter-spacing: -.04em;
    margin: 0 0 18px;
}

.pr-med-sub {
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
    color: #203d67;
    margin-bottom: 16px
}

.pr-med-hr {
    width: 100px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    margin: 16px 0 20px
}

.pr-med-copy {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.7;
    color: #304968;
    margin-bottom: 28px;
    margin-bottom: 28px;
}

.pr-med-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 640px;
    margin-bottom: 28px
}

.pr-med-icon-item {
    text-align: center
}

.pr-med-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 10px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 58, 112, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-dark);
    font-size: 1.6rem;
    border: 1px solid rgba(229, 236, 247, .9)
}

.pr-med-icon-text {
    font-size: 0.9rem;
    line-height: 1.25;
    color: #243b61;
    font-weight: 500
}

.pr-med-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.pr-med-btn {
    min-width: 250px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    text-decoration: none;
    padding: 0 20px
}

.pr-med-btn.primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(13, 118, 116, .22)
}

.pr-med-btn.secondary {
    background: #fff;
    color: var(--secondary-dark);
    border: 1px solid var(--secondary-dark);
    box-shadow: 0 10px 22px rgba(0, 58, 112, .06)
}

.pr-med-bottom {
    padding: 20px 0;
    background: #fff
}

.pr-med-about {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 15px 12px;
    min-height: 210px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.pr-med-about::before {
    content: "";
    position: absolute;
    left: -30px;
    top: -20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06)
}


.pr-med-about-icon img {
    aspect-ratio: 1/1.15;
    object-fit: contain;

}

.pr-med-about-title {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 10px;
}

.pr-med-about-copy {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px
}

.pr-med-about-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    font-weight: 500
}

.pr-med-stats {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border: 1px solid #edf2f8;
    border-radius: 22px;
    padding: 15px 0;
}

.pr-med-stat {
    padding: 24px 12px;
    border-right: 1px solid #edf2f8;
    text-align: center;
    position: relative
}

.pr-med-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20px;
    width: 1px;
    height: calc(100% - 40px);
    background: #e6ecf4
}

.pr-med-stat-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 58, 112, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-dark);
    font-size: 1.45rem;
    border: 1px solid rgba(229, 236, 247, .9)
}

.pr-med-stat-num {
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -.04em;
    margin-bottom: 8px
}

.pr-med-stat-label {
    font-size: 1rem;
    line-height: 1.28;
    color: #233b61;
    font-weight: 600
}

.pr-med-stat-label span {
    color: var(--muted);
    font-weight: 500
}

@media (max-width: 1199.98px) {

    .pr-med-content {
        max-width: none;
        padding: 0
    }

    .pr-med-stat:nth-child(2)::after {
        display: none
    }

    .pr-med-stat:nth-child(-n+2) {
        border-bottom: 1px solid #e6ecf4
    }
}

@media (max-width: 767.98px) {

    .pr-med-hero {
        background: linear-gradient(180deg, var(--bg), var(--white));
        display: none;
    }

    .pr-med-kicker {
        font-size: .98rem
    }

    .pr-med-sub {
        font-size: 1.12rem
    }

    .pr-med-copy {
        font-size: 1rem
    }

    .pr-med-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px
    }

    .pr-med-btn {
        width: 100%;
        min-width: 0
    }

    .pr-med-actions {
        flex-direction: column
    }

    .pr-med-bottom {
        padding: 14px
    }

    .pr-med-about,
    .pr-med-stats {
        border-radius: 18px
    }

    .pr-med-stats {
        grid-template-columns: 1fr
    }

    .pr-med-stat {
        border-bottom: 1px solid #e6ecf4
    }

    .pr-med-stat:last-child {
        border-bottom: none
    }

    .pr-med-stat::after {
        display: none
    }

}


/* procedure */

/* procedure */

.service_section {
    position: relative;
    padding: 50px 0 50px;
}

.ser_row .col-md-2,
.videsrow .col-md-3 {
    padding: 0 10px;
}

.services_list {
    text-align: center;
    background: linear-gradient(to bottom, #e2b441b4, transparent);
    padding: 10px 0 52px;
    border-radius: 100px 100px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services_list:hover {
    background: linear-gradient(to bottom, var(--secondary), transparent);
}

.services_list::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 32px;
    border-right: 2px dashed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@media (max-width: 767px) {
    .services_list::before {
        height: 0;
        width: 0;
    }
}

.testimonials::after,
.testimonials::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    transform: skew(0deg, -5deg);
}

.services_pic {
    position: relative;
    width: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid #f2f1ff;
    box-shadow: 0 0 10px #a1a1a1;

    img {
        aspect-ratio: 1/1;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .services_pic {
        width: 150px;
    }
}

.services_pic img {
    border-radius: 50%;
    box-shadow: 0 0 10px #6c6c6c;
    transition: 0.8s ease-in-out;
}

.services_list:hover .services_pic img {
    transform: scale(1.3);
}

.services_info h3 {
    font-size: 14px;
    margin: 13px 0 0;
    height: 31.2px;
}

.services_info a {
    background: var(--secondary);
    color: #fff;
    padding: 4px 11px;
    border-radius: 6px;
    font-size: 13px;
    display: block;
    border: 1px solid transparent;
    margin-top: 8px;
}

.services_list:hover .services_info a {
    background: #fff;
    color: var(--secondary);
    border-color: var(--secondary);
}

.sershape {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -12px;
    background: var(--secondary);
    z-index: -1;
    border-radius: 100%;
    left: 0;
    right: 0;
    margin: auto;
}

.sere_bottom {
    text-align: center;
    font-size: 42px;
    color: #333;
    font-weight: 700;
    border-top: 2px dashed;
    padding: 20px 0 0;
}

.ser_row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 16px
}

@media (max-width: 767px) {
    .sere_bottom {
        font-size: 30px;
        line-height: 1.2;
    }

    .ser_row {

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

.ser-img {
    object-fit: cover;
    aspect-ratio: 16/8;
    border-radius: 10px;
    width: 100%;
    height: auto;
}

/* trusted section  */

.trust-table-section {
    padding: 30px 0;
    background: #e2b4412c;
}

.trust-list {
    list-style: none;
    padding: 20px;
    border: 1px solid #cfd9ea;
    border-radius: 20px;
    height: 100%;
    background: #f4fbfb;

}

.trust-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.trust-list li {
    margin-bottom: 20px;

}

.trust-list li strong {
    color: var(--primary);
}

@media(max-width:768px) {
    .trust-table td {
        display: block;
        width: 100%;
    }

    .trust-list {
        padding: 10px;
    }

    .trust-list li {
        margin-bottom: 10px;
    }
}




/* blogs */

/* product card  */

.pc-product-showcase {
    padding: 40px 0;
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.pc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(103, 161, 31, 0.10);
    color: var(--secondary);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .02em;
    margin-bottom: 18px;
}


.pc-product-grid {
    margin-top: 42px;
}

.pc-product-card {
    position: relative;
    height: 100%;
    background: var(--glass);
    border: 1px solid rgba(18, 48, 23, .08);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 18px 40px rgba(68, 104, 35, .10);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pc-product-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--bg) 0%, rgba(132, 198, 76, 0) 70%);
    top: -60px;
    right: -40px;
    pointer-events: none;
}

.pc-product-media {
    position: relative;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.pc-product-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;

    object-fit: cover;
    display: block;
    mix-blend-mode: multiply;
}

.pc-product-title {
    font-size: 1.25rem;
    line-height: 1.24;
    font-weight: 700;
    margin-bottom: 12px;
    /* height: 50px; */
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-product-copy {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pc-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(18, 48, 23, .08);
}

.pc-product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.pc-product-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 18px rgba(58, 110, 20, .22);
}

@media (max-width: 991.98px) {
    .pc-section-title {
        max-width: none;
    }

    .pc-product-copy,
    .pc-product-title {
        min-height: auto;
    }
}




/* about us */

.pr-hero-banner {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 130%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pr-hero-banner::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -180px;
    right: -120px;
}

.pr-hero-banner::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -60px;
}

.pr-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: var(--white);
}

.pr-eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    background: var(--bg);
}

.pr-hero-name {
    font-size: clamp(2rem, 2.5vw, 3rem);
    font-weight: 800;
    margin: 6px 0 10px;
    letter-spacing: -1px;
}

.pr-designation {
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.55;
    margin-bottom: 0;
    border-left: 3px solid var(--primary-dark);
    padding-left: 12px;
    margin-bottom: 15px;
}

.pr-hero-actions {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    /* flex-wrap: wrap; */
}

.pr-photo-frame {
    height: 100%;
    width: 100%;
}

.pr-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 20, 50, 0.35);
    display: block;
    margin: 0 auto;
}

.pr-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 118, 116, 0.1);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.pr-about-para {
    color: var(--text);
    line-height: 1.65;
    font-size: 1rem;
    margin-bottom: 12px;
}

.pr-divider-line {
    height: 3px;
    width: 60px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 22px;
}

.dp-btn-main,
.dp-btn-outline {
    min-width: 180px;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: .25s ease;
}

.dp-btn-main {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 18px rgba(23, 61, 132, .18);
}

.dp-btn-main:hover {
    background: var(--primary-dark);
    color: #fff;
}

.dp-btn-outline {
    border: 1.5px solid #cfd9ea;
    color: var(--text);
    background: #fff;
}

.dp-btn-outline:hover {
    background: #2a8b3c1b;
    color: var(--text);
}

@media(max-width:768px) {
    .pr-hero-banner {
        padding: 30px 0;
    }

    .pr-eyebrow {
        gap: 4px;
        font-weight: 500;
        letter-spacing: 1.5px;
        word-spacing: 0.1em;
    }

    .pr-hero-content {
        padding: 12px;
    }


    .pr-hero-role,
    .pr-hero-cred {
        font-size: 0.95rem;
    }

    .pr-hero-actions {
        gap: 5px;
        flex-wrap: wrap;
    }

}

/* â”€â”€â”€ METRICS ROW â”€â”€â”€ */
.metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--primary);
    border-radius: 14px;
    overflow: hidden;
    background: #f4f9fa;
}

.metric {
    flex: 1;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: background .2s;
}

.metric.bleft {
    border-right: 1px solid var(--primary);
}

.metric.bbottom {
    border-bottom: 1px solid var(--primary);
}

@media (max-width: 760px) {

    .mbleft {
        border-bottom: 1px solid var(--primary);
    }

    .metrics {
        grid-template-columns: repeat(1fr);
    }
}

.metric:hover {
    background: var(--bg);
}

.metric-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.metric-lbl {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #333;
}


@media(max-width:768px) {
    .metric-val {
        font-size: 1rem;
    }

    .metric-lbl {
        font-size: 11px;
    }

    .metric {
        padding: 7px;
    }
}


/* services */

.srv-service-page {
    padding: 28px 0 56px
}

.srv-main {
    margin-top: 22px
}

.srv-panel {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 236, 247, .95);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(0, 58, 112, .08)
}

.srv-section {
    padding: 30px 20px
}

.srv-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.srv-img {
    
    object-fit: cover;
    width: 100%;
    border: 3px solid #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0 0 0 /0.25);
}

.srv-section-head h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: -.02em;
}

p.lead {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0
}

.srv-content-group {
    margin-top: 18px;
    width: 100%;
}

.srv-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.04rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 14px
}

.srv-group-title i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e2b44137;
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srv-similar-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px
}

.srv-list-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 10px;
    display: flex;
    align-items: baseline;
    gap: 7px;
    box-shadow: 0 10px 20px rgba(0, 58, 112, .03)
}

.srv-list-item .ic {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: #e2b44137;
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: .82rem
}

.srv-list-item .tx {
    margin: 0;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
    font-size: 0.9rem;
}

.srv-side-card {
    padding: 20px 12px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(0, 58, 112, .06);
    margin-bottom: 18px
}

.srv-profile-top {
    display: flex;
    gap: 16px;
    align-items: center
}

.srv-profile-card {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    overflow: hidden
}

.srv-profile-card .srv-profile-head {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: center
}

.srv-profile-card .srv-avatar {
    box-shadow: 0 12px 24px rgba(13, 118, 116, .18)
}

.srv-profile-card h3,
.srv-profile-card .role,
.srv-profile-card .txt {
    color: var(--text)
}

.srv-profile-info {
    padding: 12px;
    border-radius: 12px;
    background: #fff;
}

.srv-profile-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px
}

.srv-profile-card .role {
    font-size: 14px;
    margin-bottom: 10px;
}

.srv-profile-card .txt {
    font-size: 14px;
    margin: 0;
}

.srv-avatar {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 3px solid #fff;
    box-shadow: 0 12px 24px rgba(13, 118, 116, .2)
}

.srv-avatar img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.srv-service-card h4,
.srv-contact-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 12px
}

.srv-service-list {
    display: grid;
    gap: 10px
}

.srv-service-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 10px;
    transition: all .2s ease;
    /* min-height: 48px */
}

.srv-service-list a:hover {
    border-color: rgba(13, 118, 116, .24);
    color: var(--white);
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 58, 112, .05)
}

.srv-contact-list {
    display: grid;
    gap: 12px
}

.srv-contact-item {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 9px
}

.srv-contact-item i {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #e2b44137;
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srv-contact-item .lbl {
    font-size: .75rem;
    color: var(--text);
    font-weight: 600;
    margin: 0 0 2px
}

.srv-contact-item .val {
    font-size: .92rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.45;
    margin: 0
}

.srv-form {
    padding: 20px 12px
}

.srv-form h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 14px
}

.srv-field .form-control,
.srv-field .form-select,
.srv-field textarea {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    background: #fff;
    box-shadow: none
}

.srv-field .form-control:focus,
.srv-field .form-select:focus,
.srv-field textarea:focus {
    border-color: rgba(13, 118, 116, .35);
    box-shadow: 0 0 0 .2rem rgba(13, 118, 116, .10)
}

.srv-submit {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    box-shadow: 0 14px 26px #e2b44137
}

.srv-submit:hover {
    color: #fff
}

@media (max-width:991.98px) {
    .srv-aside {
        position: static
    }

    .srv-similar-list {
        grid-template-columns: 1fr
    }

    .srv-section,
    .srv-side-card,
    .srv-form {
        padding: 20px 12px
    }
}

@media (max-width:767.98px) {
    .srv-service-page {
        padding: 18px 0 40px
    }
}



/* ══════════════════════════════════
       BREADCRUMB HERO
    ══════════════════════════════════ */
.sp-breadcrumb-hero {
    background:
        linear-gradient(90deg, #2a8b3cec 0%, #2a8b3cd3 55%, #2a8b3c96 100%),
        url('https://images.unsplash.com/photo-1581595219315-a187dd40c322?auto=format&fit=crop&w=1600&q=85') center / cover no-repeat;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.sp-breadcrumb-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.sp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd1d4;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.sp-hero-tag::before {
    content: "";
    width: 24px;
    height: 2px;
    background: #ffd1d4;
    border-radius: 2px;
}

.sp-hero-title {
    margin: 0 0 16px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    max-width: 740px;
}

.sp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sp-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, .80);
}

.sp-breadcrumb li a {
    color: rgba(255, 255, 255, .80);
    text-decoration: none;
    transition: .2s;
}

.sp-breadcrumb li a:hover {
    color: #fff;
}

.sp-breadcrumb li.active {
    color: #fff;
}

.sp-breadcrumb li i {
    font-size: 10px;
    color: rgba(255, 255, 255, .85);
}


/* gallery */

.evc-media-img {
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    background: #000;
    width: 100%;
    border-radius: 18px;

}


/* footer  */
.evc-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 24px;
    position: relative;
}

/* Brand / Logo */
.evc-footer-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.evc-footer-brand i {
    color: var(--secondary);
    font-size: 26px;
}

.evc-footer-text {
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
    color: var(--white);
}

/* Section Titles */
.evc-footer-title {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.evc-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Links Lists */
.evc-footer-links,
.evc-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evc-footer-links li {
    margin-bottom: 12px;
}

.evc-footer-links a {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.evc-footer-links a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.25s ease;
}

.evc-footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.evc-footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.evc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.evc-footer-contact i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.evc-footer-contact a,
.evc-footer-contact span {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.evc-footer-contact a:hover {
    color: var(--white);
}

/* Social Media */
.evc-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.evc-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.evc-social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(23, 61, 132, 0.18);
}

/* Divider */
.evc-footer-hr {
    border-color: rgba(255, 255, 255, 0.62);
    margin: 24px 0 20px;
}

/* Bottom Section */
.evc-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.evc-footer-copyright p {
    margin: 0;
    font-size: 16px;
    color: var(--white);
}

.evc-footer-copyright strong {
    color: var(--white);
    font-weight: 600;
}

.evc-footer-bottom-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.evc-footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.evc-footer-bottom-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .evc-footer {
        padding: 48px 0 20px;
    }

    .evc-footer-title::after {
        left: 0;
    }

    .evc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 10px;
    }

    .evc-footer-bottom-links {
        gap: 18px;
    }

    .evc-footer-text {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .evc-footer-brand {
        font-size: 19px;
    }

    .evc-footer-brand i {
        font-size: 22px;
    }

    .evc-social-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .evc-footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}