    .am-aboutlist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        padding-top: 25px;
    }

    .am-aboutlist li {
        list-style: none;
        display: flex;
        align-items: center;
        background: #EEF7F2;
        padding: 16px 20px;
        border-left: 4px solid #008718;
        border-radius: 14px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
        transition: all 0.35s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .am-aboutlist li::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(16, 20, 128, 0.08), transparent);
        transition: 0.5s;
    }

    .am-aboutlist li:hover::before {
        left: 100%;
    }

    .am-aboutlist li:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 28px rgba(16, 20, 128, 0.18);
        border-left: 4px solid #101480;
        background: linear-gradient(135deg, #ffffff, #f5fff7);
    }

    .am-aboutlist li i {
        font-size: 24px;
        color: #fff;
        background: linear-gradient(135deg, #101480, #008718);
        width: 55px;
        height: 55px;
        min-width: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 18px;
        font-weight: bold;
        box-shadow: 0 4px 12px rgba(16, 20, 128, 0.25);
        transition: all 0.35s ease;
    }

    .am-aboutlist li:hover i {
        transform: rotate(10deg) scale(1.12);
        background: linear-gradient(135deg, #008718, #101480);
    }

    .am-aboutlist li span {
        font-size: 17px;
        color: #101480;
        font-weight: 600;
        line-height: 1.7;
        transition: 0.35s;
    }

    .am-aboutlist li:hover span {
        color: #008718;
        letter-spacing: 0.3px;
    }

    /* Responsive */
    @media(max-width:991px) {
        .am-aboutlist {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .am-aboutlist li {
            padding: 14px 16px;
        }

        .am-aboutlist li i {
            width: 50px;
            height: 50px;
            min-width: 50px;
            font-size: 22px;
        }
    }

    /*Exhibitor Profile start*/

    /* =========================
   AM EXHIBITOR SECTION
    ========================= */

    .am-exhibitor-section {
        width: 100%;
        padding: 90px 0;
        background:
            linear-gradient(135deg, #f6f9ff 0%, #ffffff 100%);
        overflow: hidden;
        position: relative;
    }

    .am-exhibitor-section .container {
        max-width: 1200px;
        margin: auto;
        padding: 0 15px;
    }

    /* =========================
   HEADER
    ========================= */
    .am-exhibitor-title {
        text-align: center;
        font-size: 23px;
        font-weight: 700;
        color: #101480;

        background: linear-gradient(135deg, #f6f9ff 0%, #ffffff 100%);

        padding: 15px 25px;
        border-radius: 12px;

        display: inline-block;
    }

    .am-head {
        text-align: center;
        margin-bottom: 50px;
    }

    .am-mini-title {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(0, 135, 24, 0.08);
        color: #008718;
        font-size: 13px;
        font-weight: 700;
        border-radius: 50px;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

    .am-head h2 {
        font-size: 42px;
        font-weight: 800;
        color: #101480;
        margin-bottom: 18px;
        line-height: 1.2;
        position: relative;
    }

    .am-head h2::after {
        content: "";
        width: 130px;
        height: 4px;
        background: linear-gradient(to right, #101480, #008718);
        display: block;
        margin: 10px auto 0;
        border-radius: 10px;
    }

    .am-head p {
        max-width: 850px;
        margin: auto;
        font-size: 16px;
        line-height: 1.9;
        color: #555;
    }

    /* =========================
   MAIN WRAP
    ========================= */

    .am-exhibitor-wrap {
        position: relative;
        background: #EEF7F2;
        border-radius: 30px;
        padding: 35px;
        overflow: hidden;
        border: 1px solid rgba(16, 20, 128, 0.08);

        box-shadow:
            0 10px 40px rgba(16, 20, 128, 0.06);
    }

    /* Decorative Shapes */

    .am-left-shape {
        width: 250px;
        height: 250px;
        background: #101480;
        opacity: 0.04;
        border-radius: 50%;
        position: absolute;
        left: -120px;
        top: -120px;
    }

    .am-right-shape {
        width: 280px;
        height: 280px;
        background: #008718;
        opacity: 0.05;
        border-radius: 50%;
        position: absolute;
        right: -140px;
        bottom: -140px;
    }

    /* =========================
   TOP BAR
    ========================= */

    .am-top-bar {
        margin-bottom: 35px;
        position: relative;
        z-index: 2;
    }

    .am-top-bar h3 {
        margin: 0;
        font-size: 30px;
        color: #101480;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .am-top-bar h3::before {
        content: "";
        width: 10px;
        height: 40px;
        background: linear-gradient(to bottom, #101480, #008718);
        border-radius: 20px;
    }

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

    .am-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        position: relative;
        z-index: 2;
    }

    /* =========================
   CARD
    ========================= */

    .am-card {
        position: relative;
        background: #fff;
        padding: 24px 24px 24px 75px;
        border-radius: 20px;

        border: 1px solid rgba(16, 20, 128, 0.08);

        transition: 0.4s ease;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    /* Hover Background */

    .am-card::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 4px;
        background: linear-gradient(to right, #101480, #008718);
        transition: 0.4s;
    }

    .am-card:hover::after {
        width: 100%;
    }

    /* Hover Effect */

    .am-card:hover {
        transform: translateY(-8px);
        box-shadow:
            0 15px 40px rgba(16, 20, 128, 0.10);
    }

    /* ICON */

    .am-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;

        background:
            linear-gradient(135deg, #101480, #008718);

        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
    }

    .am-icon::before {
        content: "";
        width: 10px;
        height: 10px;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* TEXT */

    .am-card p {
        margin: 0;
        font-size: 16px;
        line-height: 1.7;
        color: #2f2f2f;
        font-weight: 500;
    }

    /* =========================
   RESPONSIVE
    ========================= */

    @media(max-width:991px) {

        .am-head h2 {
            font-size: 34px;
        }

        .am-top-bar h3 {
            font-size: 25px;
        }

        .am-grid {
            gap: 18px;
        }

    }

    @media(max-width:768px) {

        .am-exhibitor-section {
            padding: 70px 0;
        }

        .am-exhibitor-wrap {
            padding: 25px 18px;
            border-radius: 22px;
        }

        .am-grid {
            grid-template-columns: 1fr;
        }

        .am-head h2 {
            font-size: 28px;
        }

        .am-head p {
            font-size: 15px;
            line-height: 1.8;
        }

        .am-top-bar h3 {
            font-size: 22px;
        }

        .am-card {
            padding: 22px 18px 22px 68px;
            min-height: auto;
        }

        .am-card p {
            font-size: 15px;
        }

    }

    @media(max-width:480px) {

        .am-head h2 {
            font-size: 24px;
        }

        .am-mini-title {
            font-size: 11px;
            padding: 7px 16px;
        }

        .am-card {
            border-radius: 16px;
        }

        .am-icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
        }

    }

    /*Exhibitor Profile end*/

    /*Who Should Participate start*/


    .amm-Participate {
        width: 100%;
        padding: 20px 15px;
        background: #f5f7fb;
        overflow: hidden;
        box-sizing: border-box;
    }

    .amm-container {
        width: 100%;
        max-width: 1350px;
        margin: auto;
    }


    .amm-heading {
        text-align: center;
        margin-bottom: 50px;
    }

    .amm-badge {
        display: inline-block;
        background: rgba(16, 20, 128, 0.08);
        color: #101480;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 18px;
        border: 1px solid rgba(0, 135, 24, 0.15);
    }

    .amm-heading h2 {
        font-size: 42px;
        color: #101480;
        margin-bottom: 18px;
        font-weight: 700;
        line-height: 1.3;
    }

    .amm-heading p {
        max-width: 850px;
        margin: auto;
        color: #555;
        font-size: 17px;
        line-height: 1.8;
    }



    .amm-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 25px;
    }



    .amm-card {
        background: #EEF7F2;
        border-radius: 20px;
        padding: 30px 25px;
        position: relative;
        overflow: hidden;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        transition: 0.4s ease;

        border: 1px solid rgba(16, 20, 128, 0.08);

        width: 100%;
        box-sizing: border-box;
    }

    .amm-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #008718;

        transform: scaleX(0);
        transform-origin: left;
        transition: 0.4s ease;
    }

    /* =========================
   ICON
    ========================= */

    .amm-icon {
        width: 70px;
        height: 70px;

        background: #008718;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 18px;

        font-size: 30px;
        color: #fff;

        margin-bottom: 22px;

        transition: 0.4s ease;
    }

    /* =========================
   TEXT
    ========================= */

    .amm-card h3 {
        font-size: 22px;
        color: #101480;
        margin-bottom: 14px;
        font-weight: 700;
        line-height: 1.4;
    }

    .amm-card p {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        margin: 0;
    }

    /* =========================
   HOVER
    ========================= */

    .amm-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(16, 20, 128, 0.12);
    }

    .amm-card:hover::before {
        transform: scaleX(1);
    }

    .amm-card:hover .amm-icon {
        background: #101480;
        transform: scale(1.08);
    }

    /* =========================
   LARGE TABLET
    ========================= */

    @media (max-width:1200px) {

        .amm-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

    }

    /* =========================
   TABLET
    ========================= */

    @media (max-width:992px) {

        .amm-heading h2 {
            font-size: 34px;
        }

        .amm-heading p {
            font-size: 16px;
        }

        .amm-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .amm-card {
            padding: 28px 22px;
        }

    }

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

    @media (max-width:600px) {

        .amm-Participate {
            padding: 55px 12px;
        }

        .amm-heading {
            margin-bottom: 35px;
        }

        .amm-heading h2 {
            font-size: 28px;
        }

        .amm-heading p {
            font-size: 15px;
            line-height: 1.7;
        }

        .amm-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .amm-card {
            padding: 24px 20px;
            border-radius: 18px;
        }

        .amm-icon {
            width: 60px;
            height: 60px;
            font-size: 26px;
            border-radius: 15px;
        }

        .amm-card h3 {
            font-size: 20px;
        }

        .amm-card p {
            font-size: 15px;
            line-height: 1.7;
        }

    }

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

    @media (max-width:380px) {

        .amm-heading h2 {
            font-size: 24px;
        }

        .amm-card {
            padding: 20px 18px;
        }

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

        .amm-card p {
            font-size: 14px;
        }

    }

    /*Who Should Participate End*/

    /*why should participate start*/

    .hp-Participate {
        width: 100%;
        padding: 80px 15px;
        background: #f5f7fb;
        overflow: hidden;
        position: relative;
    }

    .hp-container {
        width: 100%;
        max-width: 1400px;
        margin: auto;
    }

    /* =========================
   HEADING
========================= */

    .hp-heading {
        text-align: center;
        margin-bottom: 55px;
    }

    .hp-tag {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 50px;
        background: linear-gradient(135deg, #101480, #008718);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 18px;
    }

    .hp-heading h2 {
        font-size: 42px;
        color: #101480;
        font-weight: 700;
        margin-bottom: 18px;
        line-height: 1.3;
    }

    .hp-heading p {
        width: 100%;
        max-width: 780px;
        margin: auto;
        color: #555;
        font-size: 17px;
        line-height: 1.8;
    }

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

    .hp-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }

    /* =========================
   CARD
========================= */

    .hp-card {
        position: relative;
        background: #EEF7F2;
        border-radius: 24px;
        padding: 35px 22px;
        text-align: center;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

        transition: 0.4s ease;

        overflow: hidden;

        border: 1px solid rgba(16, 20, 128, 0.08);

        width: 100%;
    }

    /* TOP BORDER */

    .hp-topline {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;

        background: linear-gradient(90deg, #101480, #008718);

        transform: scaleX(0);
        transform-origin: left;
        transition: 0.4s ease;
    }

    /* =========================
   ICON WRAP
========================= */

    .hp-icon-wrap {
        width: 85px;
        height: 85px;
        margin: 0 auto 22px;

        border-radius: 50%;

        background: linear-gradient(135deg, #101480, #008718);

        display: flex;
        align-items: center;
        justify-content: center;

        transition: 0.4s ease;

        box-shadow: 0 10px 20px rgba(16, 20, 128, 0.18);
    }

    /* ICON */

    .hp-icon {
        font-size: 34px;
        line-height: 1;
        color: #fff;
    }

    /* =========================
   TITLE
========================= */

    .hp-card h3 {
        font-size: 22px;
        color: #101480;
        margin-bottom: 14px;
        font-weight: 700;
        line-height: 1.4;
    }

    /* TEXT */

    .hp-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
    }

    /* =========================
   HOVER
========================= */

    .hp-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(16, 20, 128, 0.12);
    }

    .hp-card:hover .hp-topline {
        transform: scaleX(1);
    }

    .hp-card:hover .hp-icon-wrap {
        transform: scale(1.08) rotate(-5deg);
    }

    /* =========================
   DESKTOP
========================= */

    @media (max-width:1400px) {

        .hp-grid {
            grid-template-columns: repeat(4, 1fr);
        }

    }

    /* =========================
   LAPTOP
========================= */

    @media (max-width:1200px) {

        .hp-grid {
            grid-template-columns: repeat(3, 1fr);
        }

    }

    /* =========================
   TABLET
========================= */

    @media (max-width:992px) {

        .hp-Participate {
            padding: 70px 15px;
        }

        .hp-heading {
            margin-bottom: 45px;
        }

        .hp-heading h2 {
            font-size: 34px;
        }

        .hp-heading p {
            font-size: 16px;
        }

        .hp-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .hp-card {
            padding: 30px 20px;
        }

    }

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

    @media (max-width:600px) {

        .hp-Participate {
            padding: 55px 12px;
        }

        .hp-heading {
            margin-bottom: 35px;
        }

        .hp-heading h2 {
            font-size: 28px;
        }

        .hp-heading p {
            font-size: 15px;
            line-height: 1.7;
        }

        .hp-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .hp-card {
            padding: 26px 18px;
            border-radius: 20px;
        }

        .hp-icon-wrap {
            width: 72px;
            height: 72px;
            margin-bottom: 18px;
        }

        .hp-icon {
            font-size: 28px;
        }

        .hp-card h3 {
            font-size: 20px;
        }

        .hp-card p {
            font-size: 14px;
            line-height: 1.7;
        }

    }

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

    @media (max-width:380px) {

        .hp-heading h2 {
            font-size: 24px;
        }

        .hp-heading p {
            font-size: 14px;
        }

        .hp-card {
            padding: 22px 16px;
        }

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

        .hp-card p {
            font-size: 13px;
        }

        .hp-icon-wrap {
            width: 65px;
            height: 65px;
        }

        .hp-icon {
            font-size: 24px;
        }

    }

    /*why should participate end*/

    /*iframe start*/
    .am-register-visit-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .am-register-visit {
        width: 100%;
        max-width: 1200px;
        height: 1000px;
        border: none;
        border-radius: 12px;
        background: #fff;
    }

    /* Responsive */
    @media (max-width: 768px) {

        .am-register-visit-container {
            padding: 10px;
        }

        .am-register-visit {
            height: 1200px;
        }
    }

    /*iframe end*/



    /* iframe start */

    .am-exhibit-form-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .am-exhibit-form {
        width: 100%;
        min-height: 2200px;
        /* Desktop Height */
        border: none;
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
        display: block;
    }

    /* Large Desktop */
    @media (min-width: 1600px) {
        .am-exhibit-form {
            min-height: 2400px;
        }
    }

    /* Laptop */
    @media (max-width: 1200px) {
        .am-exhibit-form {
            min-height: 2100px;
        }
    }

    /* Tablet */
    @media (max-width: 992px) {
        .am-exhibit-form-container {
            padding: 15px;
        }

        .am-exhibit-form {
            min-height: 1900px;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {

        .am-exhibit-form-container {
            padding: 10px;
        }

        .am-exhibit-form {
            min-height: 1700px;
            border-radius: 10px;
        }
    }

    /* Small Mobile */
    @media (max-width: 480px) {

        .am-exhibit-form {
            min-height: 1600px;
        }
    }

    /* iframe end */