@import url('https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&amp;display=swap');


/* ════════════ BODY ════════════ */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6fa !important;
}

/* ════════════ SECTION ════════════ */
.gard-bg {
    background: linear-gradient(135deg, #dde4f7 0%, #eef2ff 50%, #f8f9ff 100%);
}

section {
    padding: 50px 0px;
}

.sec-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary);
}

.sec-title span {
    color: var(--danger);
}

.sec-title-line {
    width: 50px;
    height: 3px;
    background: var(--danger);
    border-radius: 4px;
    margin: 10px auto 0;
}

.sec-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 560px;
    margin: 0 auto
}


:root {
    --primary: #1B2D6B;
    /* blue */
    --primary-dark: #142252;
    /* blue dark */
    --accent: #F5A800;
    /* yellow */
    --accent-dark: #d99200;
    /* yellow dark */
    --danger: #C0392B;
    /* red */
    --light-bg: #EEF2FF;
    /* light bg */
    --text: #2c2c2c;
    /* text */
    --transition: 0.2s ease;
}

/* ════════════ OFFER STRIP ════════════ */
.offer_strip_nwe.alert {
    background: var(--primary) !important;
    border: none !important;
    border-bottom: 2px solid var(--accent) !important;
    padding: 0;
    margin: 0;
}

.offr_strp {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.offr_strp .ribbon1 {
    background: linear-gradient(135deg, var(--danger), #e74c3c) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-right: 15px;
    animation: ahec-pulse 2s infinite;
    flex-shrink: 0;
}

.offr_strp marquee {
    width: 100%;
}

.offr_strp .d-flex {
    align-items: center;
    gap: 50px;
}

.offr_strp .d-flex p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.offr_strp .d-flex p a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.offr_strp .d-flex p a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

@keyframes ahec-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

/* ════════════ TOP BAR ════════════ */
.ahec-tb {
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ahec-tb__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}

.ahec-tb__left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ahec-tb__right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ahec-tb__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    padding: 0 6px;
    text-decoration: none;
    transition: color var(--transition);
}

.ahec-tb__link i {
    color: var(--accent);
    font-size: 13px;
}

.ahec-tb__link:hover {
    color: #fff;
    text-decoration: none;
}

.ahec-tb__div {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

.ahec-tb__social {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    text-decoration: none;
    transition: all var(--transition);
}

.ahec-tb__social:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    text-decoration: none;
}

.ahec-tb__social--wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

/* ════════════ MAIN HEADER ════════════ */
.ahec-hdr {
    background: #fff;
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 2px 16px rgba(27, 45, 107, 0.09);
    position: relative;
    z-index: 500;
}

.ahec-hdr.ahec-hdr--sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 24px rgba(27, 45, 107, 0.14) !important;
    animation: ahec-slide-down 0.3s ease forwards;
}

@keyframes ahec-slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.ahec-hdr__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

/* ── Logo ── */
.ahec-hdr__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.ahec-hdr__logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.ahec-hdr__logo:hover {
    opacity: 0.88;
    text-decoration: none;
}

/* ── Desktop Nav ── */
.ahec-hdr__nav {
    display: flex;
    align-items: center;
}

.ahec-hdr__menu {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ahec-hdr__link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text) !important;
    padding: 8px 11px;
    border-radius: 7px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.ahec-hdr__link:hover,
.ahec-hdr__link--active {
    color: var(--primary) !important;
    background: var(--light-bg) !important;
    text-decoration: none;
}

/* Place Order CTA */
.ahec-hdr__link--cta {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
}

.ahec-hdr__link--cta:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* Dropdown arrow rotate */
.ahec-hdr__arrow {
    font-size: 11px;
    transition: transform var(--transition);
    display: inline-block;
    margin-left: 3px;
}

.ahec-hdr__item--drop:hover .ahec-hdr__arrow {
    transform: rotate(180deg);
}

/* ── Dropdown ── */
.ahec-hdr__item--drop {
    position: relative;
}

.ahec-hdr__drop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border-top: 3px solid var(--accent);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 32px rgba(27, 45, 107, 0.13);
    list-style: none;
    margin: 0;
    padding: 6px 0 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.22s ease;
    z-index: 999;
    pointer-events: none;
}

.ahec-hdr__item--drop:hover .ahec-hdr__drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ahec-hdr__drop-item {
    display: block;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333 !important;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.ahec-hdr__drop-item:hover {
    background: var(--primary) !important;
    color: #fff !important;
    text-decoration: none;
}

/* ── Right Actions ── */
.ahec-hdr__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ahec-hdr__signin {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background var(--transition);
}

.ahec-hdr__signin:hover {
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
}

.ahec-hdr__signout {
    background: var(--primary) !important;
    color: #fff !important;
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
}

.ahec-hdr__signout:hover {
    background: var(--accent) !important;
    color: var(--primary) !important;
    text-decoration: none;
}

/* ── Hamburger ── */
.ahec-hdr__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}

.ahec-hdr__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ahec-hdr__burger:hover {
    background: var(--primary);
}

.ahec-hdr__burger:hover span {
    background: #fff;
}

/* Burger → X animation */
.ahec-hdr__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ahec-hdr__burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ahec-hdr__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ════════════ SEARCH ════════════ */
.ahec-srch {
    position: relative;
}

.ahec-srch__btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f0f2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.ahec-srch__btn i {
    font-size: 17px;
    color: var(--primary);
}

.ahec-srch__btn:hover {
    background: var(--primary);
}

.ahec-srch__btn:hover i {
    color: #fff;
}

.ahec-srch__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 360px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 9999;
}

.ahec-srch__panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ahec-srch__row {
    display: flex;
    align-items: center;
    border: 1.5px solid #e4e4e4;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #fafafa;
}

.ahec-srch__input {
    flex: 1;
    height: 48px;
    border: none;
    background: transparent;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    color: var(--text);
}

.ahec-srch__go {
    width: 46px;
    height: 48px;
    border: none;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
}

.ahec-srch__go:hover {
    background: var(--accent);
    color: var(--primary);
}

.ahec-srch__heading {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    margin: 0 0 10px;
}

.ahec-srch__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 2px;
}

.ahec-srch__list::-webkit-scrollbar {
    width: 4px;
}

.ahec-srch__list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 20px;
}

.ahec-srch__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    background: #f8f9fc;
    transition: all 0.2s ease;
}

.ahec-srch__item:hover {
    background: var(--light-bg);
    transform: translateX(3px);
    text-decoration: none;
}

.ahec-srch__img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.ahec-srch__item span {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}

/* ════════════ MOBILE MENU ════════════ */
.ahec-mob {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 3px solid var(--accent);
    box-shadow: 0 10px 32px rgba(27, 45, 107, 0.14);
    border-radius: 0 0 12px 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 498;
}

.ahec-mob.is-open {
    max-height: 520px;
    overflow-y: auto;
}

.ahec-mob__menu {
    list-style: none;
    margin: 0;
    padding: 8px 12px 14px;
}

.ahec-mob__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 14px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.ahec-mob__link:hover,
.ahec-mob__link--active {
    background: var(--light-bg);
    color: var(--primary);
    text-decoration: none;
}

.ahec-mob__link--cta {
    background: var(--accent) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    justify-content: center !important;
    margin-top: 6px;
}

.ahec-mob__link--cta:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* Mobile submenu */
.ahec-mob__submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 4px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ahec-mob__item--drop.is-open .ahec-mob__submenu {
    max-height: 400px;
}

.ahec-mob__item--drop.is-open .ahec-mob__link i {
    transform: rotate(180deg);
}

.ahec-mob__link i {
    transition: transform 0.25s ease;
}

.ahec-mob__sublink {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
    border-radius: 7px;
    transition: background var(--transition), color var(--transition);
    border-left: 3px solid transparent;
}

.ahec-mob__sublink:hover {
    background: var(--light-bg);
    color: var(--primary);
    border-left-color: var(--accent);
    text-decoration: none;
}

/* ════════════ GLOBAL OVERRIDES ════════════ */
/* a { color:var(--primary); } */
/* a:hover { color:var(--accent); text-decoration:none; } */
/* h1,h2,h3,h4,h5,h6 { color:var(--primary); } */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--primary) !important;
}

.owl-dot.active span, .owl-dot:hover span {
    background: var(--primary) !important;
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 991.98px) {
    .ahec-hdr__nav {
        display: none;
    }

    .ahec-hdr__burger {
        display: flex;
    }

    .ahec-mob {
        display: block;
    }

    .ahec-tb__right {
        gap: 3px;
    }
}

@media (max-width: 575px) {
    .ahec-srch__panel {
        width: 300px;
        right: -10px;
    }

    .ahec-hdr__logo img {
        height: 38px;
    }

    .ahec-tb {
        display: none;
    }

    /* mobile pe top bar hide */
}

/* ════════════ CONTAINER CUSTOM ════════════ */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Breakpoints */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Wide container — agar kisi section mein full width chahiye */
.container-wide {
    width: 100%;
    max-width: 1480px;
    padding-right: 24px;
    padding-left: 24px;
    margin-right: auto;
    margin-left: auto;
}

/* Fluid — full width with padding only */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* ════════════ SCOPED — sirf header ke andar ════════════ */
.ahec-hdr a:not(.ahec-hdr__link):not(.ahec-hdr__logo):not(.ahec-hdr__signin):not(.ahec-hdr__signout),
.ahec-mob a {
    color: var(--primary);
}

.ahec-tb a:hover {
    color: var(--accent);
    text-decoration: none;
}

.ahec-mob a:hover {
    color: var(--primary);
    text-decoration: none;
}


/* Desktop Hero */
.ahec-hero__swiper {
    width: 100%;
    height: 580px;
}

.ahec-hero__slide {
    position: relative;
    overflow: hidden;
}

.ahec-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ahec-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 45, 107, 0.35) 0%, transparent 60%);
    pointer-events: none;
}

.ahec-hero__cta {
    position: absolute;
    bottom: 36px;
    right: 36px;
    z-index: 10;
}

.ahec-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ahec-hero__btn:hover {
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
}

.ahec-hero__prev, .ahec-hero__next {
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    border: none !important;
}

.ahec-hero__prev::after, .ahec-hero__next::after {
    font-size: 15px !important;
    color: #fff;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

@media (min-width:768px) and (max-width:991px) {
    .ahec-hero__swiper {
        height: 400px;
    }
}

/* Mobile Hero */
.ahec-mob-hero__slide {
    position: relative;
}

.ahec-mob-hero__img {
    width: 100%;
    height: auto;
    display: block;
}


/* ── TRENDING SERVICES ── */
.ahec-ts__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.ahec-ts__title span {
    color: var(--accent);
}

.ahec-ts__line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 4px;
    margin: 10px auto 0;
}

.ahec-ts__swiper {
    padding: 16px 4px 8px !important;
}

.ahec-ts__card {
    background: #fff;
    border: 1px solid #e8ecf8;
    border-radius: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(27, 45, 107, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ahec-ts__card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ahec-ts__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(27, 45, 107, 0.13);
    border-color: var(--primary);
}

.ahec-ts__card:hover::before {
    transform: scaleX(1);
}

.ahec-ts__icon {
    width: 72px;
    height: 72px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.3s ease;
}

.ahec-ts__card:hover .ahec-ts__icon {
    background: var(--primary);
}

.ahec-ts__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.ahec-ts__card:hover .ahec-ts__icon img {
    filter: brightness(0) invert(1);
}

.ahec-ts__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.ahec-ts__desc {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Nav arrows */
.ahec-ts__prev, .ahec-ts__next {
    width: 38px !important;
    height: 38px !important;
    background: var(--primary) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.ahec-ts__prev:hover, .ahec-ts__next:hover {
    background: var(--accent) !important;
}

.ahec-ts__prev::after, .ahec-ts__next::after {
    font-size: 14px !important;
    color: #fff;
    font-weight: 700;
}

@media (max-width:767px) {
    .ahec-ts__prev, .ahec-ts__next {
        display: none !important;
    }
}


/* about section  css */

.ahec-ls {
    position: relative;
    overflow: hidden
}

.ahec-ls::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 168, 0, .06);
    pointer-events: none
}

.ahec-ls::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(27, 45, 107, .05);
    pointer-events: none
}

.ahec-ls__img-wrap {
    text-align: center
}

.ahec-ls__img-wrap img {
    max-width: 100%;
    border-radius: 12px
}

.ahec-ls__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EEF2FF;
    border-radius: 8px;
    padding: 7px 14px;
    margin-bottom: 18px
}

.ahec-ls__badge-icon {
    width: 26px;
    height: 26px;
    object-fit: contain
}

.ahec-ls__badge span {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ahec-blue);
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.ahec-ls__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ahec-blue);
    line-height: 1.25;
    margin-bottom: 12px
}

.ahec-ls__title-accent {
    color: var(--ahec-yellow)
}

.ahec-ls__divider {
    width: 50px;
    height: 3px;
    background: var(--ahec-yellow);
    border-radius: 4px;
    margin-bottom: 16px
}

.ahec-ls__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 24px
}

.ahec-ls__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ahec-ls__item {
    display: flex;
    align-items: center;
    gap: 14px
}

.ahec-ls__item-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ahec-blue);
    transition: background .18s, color .18s
}

.ahec-ls__item-icon svg {
    width: 16px;
    height: 16px
}

.ahec-ls__item:hover .ahec-ls__item-icon {
    background: var(--ahec-blue);
    color: #fff
}

.ahec-ls__item span {
    font-size: 14.5px;
    font-weight: 500;
    color: #333;
    line-height: 1.4
}

.ahec-ls__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ahec-blue);
    color: #fff;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .18s, color .18s
}

.ahec-ls__btn svg {
    width: 16px;
    height: 16px;
    transition: transform .18s
}

.ahec-ls__btn:hover {
    background: var(--ahec-yellow);
    color: var(--ahec-blue);
    text-decoration: none
}

.ahec-ls__btn:hover svg {
    transform: translateX(3px)
}

@media(max-width:767px) {
    .ahec-ls {
        padding: 50px 0
    }

    .ahec-ls__title {
        font-size: 1.6rem
    }

    .ahec-ls__img-wrap {
        margin-bottom: 32px
    }

    .ahec-ls__item span {
        font-size: 14px
    }
}



/* book section css  */


/* Services Section */
.ahec-sv__label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(27, 45, 107, .10);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px
}

/* Swiper */
.ahec-sv__swiper {
    padding-bottom: 36px !important
}

.ahec-sv__swiper .swiper-pagination-bullet-active {
    background: var(--primary)
}

/* Card */
.ahec-sv__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 0.5px solid #dde6f0;
    transition: transform var(--transition)
}

.ahec-sv__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(27, 45, 107, .12)
}

.ahec-sv__card-img {
    position: relative;
    background: var(--light-bg);
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.ahec-sv__card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform var(--transition)
}

.ahec-sv__card:hover .ahec-sv__card-img img {
    transform: scale(1.04)
}

.ahec-sv__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 45, 107, .82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition)
}

.ahec-sv__card:hover .ahec-sv__card-overlay {
    opacity: 1
}

.ahec-sv__book-btn {
    background: var(--accent);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 7px;
    text-decoration: none
}

.ahec-sv__book-btn:hover {
    background: #fff;
    color: var(--primary);
    text-decoration: none
}

.ahec-sv__card-body {
    padding: 14px 16px 16px;
    border-top: 0.5px solid #eef2f8
}

.ahec-sv__card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    text-align: center
}

.ahec-sv__card-desc {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.55;
    margin-bottom: 0
}

.ahec-sv__download-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid #dde6f0;
    border-radius: 6px;
    padding: 5px 12px;
    margin-top: 10px;
    text-decoration: none;
    transition: all var(--transition)
}

.ahec-sv__download-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    text-decoration: none
}

/* View All */
.ahec-sv__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 11px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition)
}

.ahec-sv__view-btn:hover {
    background: var(--accent);
    color: var(--primary);
    text-decoration: none
}

/* Mobile */
@media(max-width:767px) {
    .ahec-sv {
        padding: 48px 0
    }

    .ahec-sv__card-img {
        height: 160px
    }

    .ahec-sv__title {
        font-size: 1.5rem
    }
}

/* project sec css */

.project-card {
    background: #fff;
    border: 1px solid #e7ecff;
    border-radius: 14px;
    overflow: hidden;
    transition: .3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(27, 45, 107, .12);
    border-color: var(--primary);
    margin-top: 10px;
}

/* Image */

.project-thumb {
    display: block;
    background: #fff;
    padding: 12px;
    border-bottom: 1px solid #edf1ff;
}

.project-thumb img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: .3s;
}

.project-card:hover .project-thumb img {
    transform: scale(1.02);
}

/* Content */

.project-content {
    padding: 18px;
}

.project-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
    min-height: 55px;
    margin-bottom: 14px;
}

/* Meta */

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.project-meta span {
    font-size: 12px;
    color: #666;
    background: #f4f6ff;
    padding: 6px 10px;
    border-radius: 30px;
}

/* Button */

.project-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    text-decoration: none;

    padding: 11px 22px;
    border-radius: 8px;

    font-weight: 600;
    transition: .3s;
}

.project-btn:hover {
    background: var(--accent);
    color: #fff;
}


/* services badge section css  */


.service-link {
    text-decoration: none;
    display: block;
}

/* Slider spacing */

.slide-1-img {
    padding: 6px;
}

/* Card */

.service-card {

    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 70px;
    /* 95 se 70 */

    padding: 12px 18px;
    /* kam padding */

    border-radius: 10px;
    /* 14 se 10 */

    background: #fff;

    border: 1px solid rgba(27, 45, 107, .08);

    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);

    transition: .3s;
}

/* Accent Line */

.service-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 4px;

    background: var(--accent);

    transition: .35s ease;
}

.service-card:hover::before {
    width: 100%;
}

/* Hover */

.service-card:hover {

    transform: translateY(-6px);

    border-color: rgba(27, 45, 107, .2);

    box-shadow: 0 15px 35px rgba(27, 45, 107, .12);
}

/* Icon */

.service-icon {

    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 8px;

    background: rgba(27, 45, 107, .06);
}

.service-icon img {
    width: 22px;
}

/* Title */

.service-card h3 {

    margin: 0;

    font-size: 16px;
    /* 20 se 16 */

    font-weight: 600;

    line-height: 1.3;

    color: var(--primary);
}

/* Slick */

.slider .slick-track,
.slider1 .slick-track {
    display: flex;
}

.slider .slick-slide,
.slider1 .slick-slide {
    height: inherit;
}

/* Responsive */

@media(max-width:991px) {

    .service-card {
        min-height: 85px;
        padding: 18px;
    }

    .service-card h3 {
        font-size: 18px;
    }
}

@media(max-width:767px) {

    .services-section {
        padding: 60px 0;
    }

    .service-card {
        gap: 12px;
        min-height: 80px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .service-icon img {
        width: 28px;
    }

    .service-card h3 {
        font-size: 16px;
    }
}



/* home faq section css  */


.faq-section{
    padding:80px 0;
    background:var(--primary);
}

.faq-desc{
    color:rgba(255,255,255,.75);
    margin-top:15px;
    line-height:1.8;
}

.faq-list{
    margin:0;
    padding:0;
}

.faq-list li{
    list-style:none;
}

/* Question */

.question{

    position:relative;

    background:#fff;

    color:var(--primary);

    padding:18px 60px 18px 20px;

    margin-bottom:10px;

    border-radius:12px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.question:hover{
    transform:translateY(-2px);
}

.question::after{

    content:"+";

    position:absolute;

    right:20px;
    top:50%;

    transform:translateY(-50%);

    font-size:24px;

    color:var(--accent);

    font-weight:700;
}

/* Active Question */

.question.active{
    background:var(--accent);
    color:#fff;
}

.question.active::after{
    content:"−";
    color:#fff;
}

/* Answer */

.answer{

    display:none;

    background:#fff;

    margin:-5px 0 10px;

    padding:0 20px 20px;

    border-radius:0 0 12px 12px;

    color:#555;

    line-height:1.8;
}

/* Mobile */

@media(max-width:991px){

    .faq-section{
        padding:60px 0;
    }

    .question{
        padding:15px 50px 15px 15px;
        font-size:15px;
    }
}