@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&family=Quicksand:wght@300..700&family=Urbanist:wght@100..900&family=Poppins:wght@100..900&display=swap");

:root {
    /* Font Families */
    --font-primary: "Josefin Sans", sans-serif;
    --font-secondary: "Roboto", sans-serif;
    --font-tertiary: "Inter", sans-serif;
    --font-manrope: "Manrope", sans-serif;
    --font-quicksand: "Quicksand", sans-serif;
    --font-urbanist: "Urbanist", sans-serif;
    --font-poppins: "Poppins", sans-serif;

    /* Font Weights */
    --font-normal: 400;
    --font-bold: 700;

    /* Brand Colors */
    --color-primary: #15ff00;
    --color-secondary: #fe8d27;
    --color-accent: #ffd65a;
    --color-highlight: #4de9e2;
    --color-muted: #c5ead9c7;

    /* Text Colors */
    --color-white: #ffffff;
    --color-text: #000000;
    --color-white2: #f3f4f6;

    /* Backgrounds */
    --bg-light: #fafafa;
    --bg-light-alt: #e0e5b6;
    --bg-dark-accent: #1c4606e5;
    --bg-dark: #1c4606;

    /* Borders */
    --border-light: #cfcfcf;

    /* Border Radius */
    --radius-md: 8px;

    /* Shadows */
    --shadow-strong: 0px 4px 4px #000000e3;
    --shadow-light: 0px 2px 2px #000000e3;
}
/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}
html{
    scroll-behavior: smooth;
}
/* Global Styles */
body {
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

ul,
ol {
    list-style-type: none;
}

a {
    text-decoration: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}
input,
textarea {
    outline: none;
    border: none;
    background-color: transparent;
}
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 170px 0 260px;
    overflow: hidden;
    height: 620px;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-content {
   position: absolute;
    bottom: 174px;
    left: 32%;
    cursor: pointer;
}
.hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 64px;
    line-height: normal;
    letter-spacing: -0.64px;
    font-weight: var(--font-bold);
    text-shadow: var(--shadow-light);
}
.hero-content p {
    font-weight: var(--font-bold);
    font-size: 18px;
    color: var(--color-primary);
    line-height: 23px;
    padding: 17px 0 0 0;
}

.shopping-section {
    text-align: center;
    padding: 36px 0 140px 0;
}
.shopping-section2{
    padding:56px 0 140px 0;
}
.shopping-section h1 {
    color: var(--color-text);
    font-size: 33px;
    font-weight: var(--font-bold);
}
.shopping-section2 h1{
    text-decoration: underline;
}
.shopping-section .subtitle {
    color: var(--color-text);
    font-size: 18px;
    font-weight: var(--font-normal);
    line-height: 23px;
    padding: 8px 0 0 0;
}
.steps-cards-main {
    display: flex;
    justify-content: center;
    margin: 60px auto 47px auto;
    gap: 40px;
}
.step-card {
    width: 27%;
}
.step-card img {
    padding: 10px 0 0 0;
    height: 240px;
}
.steps-cards-main h2 {
    font-size: 25px;
    font-weight: var(--font-bold);
    line-height: normal;
    letter-spacing: -0.25px;
}
.steps-cards-main .orange-text {
    color: var(--color-secondary);
}
.steps-cards-main .green-text {
    color: var(--bg-dark-accent);
}
.steps-cards-main .black-text {
    color: var(--color-text);
}
.steps-cards-main p {
    color: var(--color-text);
    font-size: 18px;
    font-weight: var(--font-normal);
    line-height: 25px;
    letter-spacing: -0.18px;
}
.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-options {
    display: none;
    gap: 40px;
    margin-top: 20px;
    justify-content: center;
}
.download-options a {
    display: inline-block;
    width: 30%;
}
.download-options2 img {
    width: 70% !important;
}
.download-options a img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.main-btn {
    display: inline-block;
    text-align: center;
    padding: 12px;
    background-color: var(--bg-dark);
    border-radius: var(--radius-md);
    font-weight: var(--font-normal);
    color: #f5f5f5;
    font-size: 16px;
    font-family: var(--font-tertiary);
    transition: 0.5s;
}
.love-imart {
    background-image: url("../assets/love-imart.png");
    background-size: cover;
    background-position: top;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 64px 0;
}
.love-imart h1 {
    color: var(--color-white);
    font-size: 33px;
    font-weight: var(--font-bold);
    line-height: 1.2;
   text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    width: fit-content;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 150px 72px 0;
}
.notes-wrapper {
    padding: 0 150px;
}
.notes-main {
    padding: 11px 30px;
    color: var(--color-text);
    font-size: 17px;
    font-weight: var(--font-normal);
    line-height: 22px;
    border-radius: 30px;
    width: fit-content;
    margin: 0 0 22px 0;
}
.notes-main strong {
    font-weight: var(--font-bold);
}
.notes-1 {
    background: #f5f5f5;
    margin-right: auto;
}
.notes-2 {
    background: var(--color-accent);
    margin-left: auto;
}
.notes-3 {
    background: var(--color-highlight);
    margin-right: auto;
    margin-left: 60px;
}
.notes-4 {
    background: var(--bg-light-alt);
    margin-left: auto;
}
.download-btn {
    display: flex;
    height: 64px;
    padding: 0 18px;
    gap: 9px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: var(--color-accent);
    color: var(--color-text);
    font-size: 25px;
    font-weight: var(--font-bold);
    margin: 75px auto 0 auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.download-btn img{
     filter: brightness(0) invert(0);
}
.partner-main {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 47px 0 0 0 ;
}
.partner-card h2 {
    color: var(--color-text);
    font-size: 25px;
    font-weight: var(--font-bold);
    line-height: normal;
    letter-spacing: -0.33px;
}
.partner-card p {
    color: var(--color-text);
    text-align: center;
    font-size: 18px;
    font-weight: var(--font-normal);
    line-height: 25px; 
    letter-spacing: -0.18px;
    min-height: 80px;
}
.partner-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: var(--font-bold);
    line-height: normal;
    width: 209px;
    height: 46px;
    padding: 14px;
    border-radius: 5px;
    background: var(--bg-dark);
    margin: 35px auto 0 auto;
    transition: background-color 0.3s ease;
}
.partner-card {
    width: 35%;
}
.grow3 {
    width: 250px;
    height: 300px;
    margin: 0 auto;
}
.grow2 {
    width: 250px;
    height: 300px;
    margin: 0 auto;
}
.grow img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.orange-bg {
    background-color: var(--color-secondary) !important;
}
.submit-btn,
.shopping-section a,
.merc-left a {
    transition: background-color 0.3s ease;
}
.download-tab-main:hover,
.imart-newsletter-box button:hover,
.merc-left a:hover,
.talk-btn:hover,
.shop-icon-container:hover,
.orange-bg:hover {
    background-color: #e37415 !important;
}
.download-btn:hover {
    background-color: #e6bc38;
}
.green-btn:hover,
.submit-btn:hover,
.imart-btn:hover {
    background-color: var(--color-text);
}
.promo-card-two .imart-btn-light:hover,
.imart-btn-light2:hover,
.imart-btn-light:hover {
    background-color: #e5e7eb;
}
.corner-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
}
.yellow-bg {
    background-color: var(--color-accent);
    position: relative;
    padding-top: 100px; 
}
.orange-hero {
    background: linear-gradient(180deg, #fe8d27 81.13%, #ffe8a3 100%);
    padding: 80px 64px;
    max-width: 1560px;
    margin-top: -130px; 
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.orange-hero h1 {
    color: var(--color-text);
    font-size: 33px;
    font-weight: var(--font-bold);
    line-height: 25px; 
    letter-spacing: -0.33px;
}
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 80px 0 50px 0;
}
.card-box {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.card-box:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}
.card-text {
    font-size: 16px;
    color: #1e1e1e;
    font-weight: var(--font-normal);
    line-height: 22.4px;
    margin-bottom: 32px;
    font-family: var(--font-tertiary);
}
.card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-name {
    font-weight: 600;
    font-size: 16px;
    color: #757575;
    font-family: var(--font-tertiary);
}
.experience-main {
    padding: 96px 0;
    text-align: center;
}
.exp-mbl {
    width: 38%;
}
.experience-main h1 {
    color: var(--bg-dark);
    font-size: 33px;
    font-weight: var(--font-bold);
    line-height: 120%; 
    letter-spacing: -0.66px;
}
.experience-main p {
    color: var(--color-text);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    font-weight: var(--font-normal);
    line-height: 20px; 
    letter-spacing: -0.18px;
    width: 50%;
    padding: 9px 0;
    margin: 0 auto;
}
.flex-group {
    margin: 30px 0 0 0;
}
.download-tab-menu-green a{
    background-color: #1c4505;
}
.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding: 0 40px;
    margin: 56px auto 0 auto;
}
.faq-left {
    width: 751px;
    flex: 0 0 auto; 
}
.faq-right {
    width: 401px;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
}
.faq-heading {
    color: var(--color-text);
    font-size: 60px;
    font-weight: var(--font-bold);
    padding: 0 40px;
    line-height: 76px; 
    letter-spacing: -1.8px;
}
.faq-item {
    border-radius: 10px;
    border: 1px solid var(--border-light);
    margin-bottom: 20px;
    overflow: hidden;
}
.dropdown-item-active {
    background-color: #355823 !important;
}
.dropdown-item-active a {
    color: var(--color-white) !important;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px  31px 24px 23px; 
    background: var(--color-white);
    font-size: 22px;
    font-weight: var(--font-bold);
    color: var(--color-text);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 8px 20px 20px;
}
.faq-answer p {
    color: var(--color-text);
    font-size: 16px;
    font-weight: var(--font-normal);
    line-height: 22px; 
    letter-spacing: -0.32px;
}
.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background: var(--color-white);
    padding: 75px 32px 38px 32px;
    text-align: center;
    width: 402px;
    height: 443px;
    margin: 0 auto;
}
.contact-box-inner{
     display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
}
.icon-box {
    width: 67px;
}
.icon-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.contact-box h3 {
    color: var(--color-text);
    font-size: 22px;
    font-weight: var(--font-bold);
    line-height: 22px; 
    text-transform: capitalize;
}
.contact-box p {
    color: var(--color-text);
    font-family: var(--font-manrope);
    font-size: 16px;
    font-weight: 600;
    line-height: 31px; 
    letter-spacing: -0.32px;
}
.talk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    height: 67px;
    border: none;
    width: 100%;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 18px;
    margin: 62px 0 0 0;
    font-weight: var(--font-bold);
    line-height: 31px; 
    letter-spacing: -0.36px;
    transition: background-color 0.3s ease;
}
.imart-promo-cards {
    display: flex;
    gap: 20px;
    padding: 160px 33px 33px 33px;
    justify-content: center;
}
.imart-card {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    min-height: 540px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.imart-card:hover{
          transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}
.promo-card-one {
    background: var(--color-muted);
    padding: 50px 30px;
}
.promo-card-two {
    width: 30%;
    border-radius: 10px;
    background: rgba(28, 70, 6, 0.9);
    color: var(--color-white);
    text-align: center;
    padding: 25px 30px;
}
.promo-card-three {
    background: var(--color-secondary);
    padding: 30px;
}
.promo-card-three h2 {
    color: var(--color-white) !important;
    line-height: 48px;

}
.imart-card h2 {
    color: var(--color-text);
    font-size: 33px;
    text-align: left;
    font-weight: var(--font-bold);
    letter-spacing: -0.33px;
}
.imart-card p {
    color: var(--color-text);
    font-size: 17px;
    font-weight: var(--font-normal);
    line-height: normal;
    letter-spacing: -0.17px;
    width: 90%;
    padding: 40px 0;
}
.imart-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
    border-radius: 5px;
    background: var(--bg-dark);
    color: var(--color-white);
    padding: 8px;
    font-size: 18px;
    font-weight: var(--font-bold);
    text-decoration: none;
    width: fit-content;
    transition: background-color 0.3s ease;
}
.imart-btn-light {
    color: #161b20;
    text-align: center;
    font-size: 24px;
    font-weight: var(--font-bold);
    line-height: 24px; 
    padding: 20px 30px;
    border-radius: 100px;
    background: var(--color-white);
    margin: 58px auto 0 auto;
    transition: background-color 0.3s ease;
}
.imart-btn-light2 {
    margin: 20px 0 0 0;
    color: #161b20;
    text-align: center;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: var(--font-bold);
    line-height: 24px; 
    border-radius: 100px;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}
.imart-badge {
    background: var(--bg-dark-accent);
    color: var(--color-white);
    border: none;
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}
.promo-card-two h2 {
    color: var(--color-white);
    text-align: center;
    font-size: 33px;
    font-weight: var(--font-normal);
    line-height: 48px; 
}
.imart-card-img1 {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.imart-card-img {
    position: absolute;
    bottom: 0;
    right: 0;
}
.download-tab-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}
.download-tab-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: var(--font-bold);
    line-height: normal;
    width: 209px;
    height: 46px;
    padding: 14px;
    border-radius: 5px;
    background: #fe8d27;
    transition: background-color 0.3s ease;
}
.arrow {
    display: inline-block;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.arrow img{
    width: 24px;
}
.arrow.rotate {
    transform: rotate(180deg);
}
.download-tab-menu {
    display: flex;
    gap: 10px;
}
.hidden {
  display: none;
}
.download-tab-btn {
    background-color: var(--color-text);
    display: flex;
    align-items: center;
    text-align: center;
    height: 60px;
    gap: 10px;
    padding: 14px 12px;
    transition: 0.5s;
}
.download-tab-btn span {
    display: inline-block;
    font-weight: var(--font-bold);
    color: var(--color-white);
    font-size: 18px;
    font-family: var(--font-tertiary);
}
.download-tab-btn img {
    width: 30px;
    object-fit: contain;
}
.rating-container {
    display: flex;
    align-items: center;
}
.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stars {
    display: flex;
    position: relative;
    font-size: 16px;
    color: #dcd8d8;
    background: linear-gradient(to right, #e8a22e calc(var(--rating) * 20%), #dcd8d8 calc(var(--rating) * 20%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stars i {
    margin: 0 2px; 
}
[id^="download-"] {
    scroll-margin-top: 20px;
}
/* Responsive */
@media (max-width: 1350px){
    .promo-card-three h2{
        font-size: 28px;
    }
}
@media (max-width: 1130px) {
    .imart-promo-cards {
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
    }
        .imart-card {
        min-height: 580px;
        width: 70%;
    }
    .faq-right{
        margin: 0 auto;
    }
}
@media (max-width: 1050px) {
    .container {
        padding: 0 20px;
    }
    .notes-main {
        height: auto;
        width: auto;
        margin: 0 0 20px 0;
        padding: 10px 30px;
        line-height: 20px;
    }
    .notes-wrapper {
        padding: 0;
    }
    .partner-card {
        width: 48%;
    }
    .orange-hero {
        padding: 50px 20px;
        height: auto;
        margin-left: 24px;
        margin-right: 24px;
    }
    .card-text {
        font-size: 15px;
    }
    .cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .experience-main {
        padding: 50px 0;
    }
    .faq-left {
        width: 100%;
    }
    .faq-right {
        margin: auto;
    }
    .corner-img {
        width: 150px;
    }
    .hero-video {
        object-fit: inherit; 
    }
    .download-btn{
        margin: 50px auto 0 auto;
    }
}
@media (max-width: 1020px) {
    .download-btn{
        font-size: 20px;
    }
    .notes-main{
        font-size: 15px;
    }
    .faq-container {
        padding: 0;
        gap: 40px;
    }
    
    .steps-cards-main {
        flex-direction: column;
    }
    .faq-heading,
    .hero-content h1 {
        font-size: 48px;
    }
    .orange-hero h1,
    .experience-main h1,
    .shopping-section h1 {
        font-size: 30px;
    }
    .partner-card h2,
    .steps-cards-main h2 {
        font-size: 22px;
    }

    .steps-cards-main h2 {
        min-height: auto;
    }
    .steps-cards-main {
        justify-content: space-between;
    }
    .partner-card p,
    .steps-cards-main p {
        font-size: 16px;
    }
    .shopping-section .subtitle,
    .experience-main p {
        width: 90%;
        font-size: 16px;
        padding: 12px 0 0 0;
        margin: auto;
    }
    .exp-mbl {
        width: 60%;
        margin: 50px 0 0 0;
    }

    .partner-card p {
        min-height: 120px;
    }
    .cards-wrapper {
        padding: 30px 0;
    }
    .grow {
        height: 230px;
        width: 230px;
    }
    .partner-main {
        padding: 40px 0 0 0;
    }
    .shopping-section2{
        padding-bottom: 100px !important; 
    }
    .love-imart,
    .shopping-section {
        padding: 50px 0;
        height: auto;
    }
    .steps-cards-main {
        margin: 50px auto;
    }
    .faq-container {
        flex-direction: column;
    }
    .love-imart h1 {
        padding: 0 175px 50px 0;
    }
    .faq-right {
        width: 60%;
    }
    .faq-left,
    .faq-right {
        flex: 1 1 100%;
    }
    .yellow-bg {
        padding-top: 60px;
    }
    .orange-hero {
        padding: 40px 24px;
        margin-top: -100px;
        margin-left: 16px;
        margin-right: 16px;
    }
    .faq-question {
        font-size: 18px;
    }
    .card-box {
        padding: 20px;
    }
    .card-text {
        font-size: 14px;
    }
    .card-footer {
        flex-direction: row;
        gap: 10px;
    }
    .card-name {
        font-size: 14px;
    }
    .step-card {
        width: 100%;
    }
    .faq-heading{
        padding: 0;
    }
    .faq-heading {
        line-height: 44px;
    }
    .hero-section{
        height: 400px;
        padding: 0;
    }
    .shopping-section{
        padding-bottom: 100px;
    }
}
@media (max-width: 630px) {
    .love-imart h1 {
        padding: 0 0 50px 0;
    }
    .hero-section{
        height: 300px;
    }
    .talk-btn{
        margin: 0;
    }
    .exp-mbl{
        width: 80%;
    }
    .container {
        overflow: hidden;
    }
    .download-options a {
        width: 50%;
    }
    .partner-main,
    .steps-cards-main {
        flex-direction: column;
        gap: 30px;
    }
    .partner-card a{
        margin: 18px auto 0 auto;
    }
    .cards-wrapper {
        grid-template-columns: 1fr;
    }
    .partner-card,
    .step-card {
        width: 100%;
    }
    .corner-img {
        width: 150px;
    }
    .love-imart h1,
    .faq-heading,
    .hero-content h1 {
        font-size: 30px;
    }
    .shopping-section .subtitle,
    .experience-main p {
        width: 100%;
        font-size: 14px;
    }
    .step-card img {
        height: auto;
        width: auto;
    }
    .partner-card h2,
    .steps-cards-main h2 {
        font-size: 24px;
    }
    .btn-group {
        gap: 20px;
    }
    .btn-group a {
        width: 50%;
    }
    .download-btn {
        margin: 50px auto 0 auto;
    }
    .notes-main {
        line-height: 24px;
        font-size: 16px;
    }
    .imart-btn-light2,
    .imart-btn-light,
    .partner-card a,
    .download-btn {
        font-size: 20px;
    }
    .partner-card p {
        min-height: auto;
    }
    .orange-hero h1 {
        margin: 5px auto 0 auto;
        text-align: center;
        line-height: 30px;
    }
    .faq-right {
        width: 100%;
    }
    .imart-card {
        width: 90%;
    }
    .imart-card h2 {
        font-size: 22px;
        line-height: 26px;
    }
    .download-tab-menu {
        flex-direction: column;
    }
    .imart-card p{
        padding: 24px 0;
    }
    .steps-cards-main p {
        margin: 20px 0 0 0;
    }
}

@media (max-width: 380px) {
    .hero-section{
        height: 250px;
    }
    .love-imart h1,
    .faq-heading,
    .hero-content h1 {
        font-size: 25px;
    }
    .hero-content p {
        font-size: 15px;
        padding: 12px 0 0 0;
    }
    .orange-hero h1,
    .experience-main h1,
    .shopping-section h1 {
        font-size: 25px;
    }
    .experience-main p {
        font-size: 13px;
    }
    .partner-card h2,
    .steps-cards-main h2 {
        font-size: 22px;
    }
    .faq-heading {
        line-height: 36px;
    }
    .faq-question {
        font-size: 16px;
    }
    .contact-box h3 {
        font-size: 18px;
    }
    .partner-main, .steps-cards-main {
        gap: 30px;
    }
}
@media (max-width: 345px) {
    
    .imart-btn-light,
    .partner-card a,
    .download-btn {
        font-size: 18px;
    }
    .orange-hero {
        padding: 40px 0;
    }
    .faq-answer p {
        font-size: 14px;
    }
    .imart-card h2 {
        font-size: 20px;
    }
    .imart-card p {
        font-size: 14px;
        padding: 30px 0;
    }
    .hero-section{
        height: 200px;
    }
}
