/* ===== HERO SECTION ===== */

.hero-section {
    background: #28c7d1;
    padding: 3rem 1.5rem;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Inter", sans-serif;
}

.hero-container {
    width: 100%;
    background-color: transparent;
    padding: 10px;
}

.hero-content {
  padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    background-color: transparent;
}

/* ===== LEFT CARD ===== */

.hero-content-left:first-child {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);

    padding: 2.5rem 2rem;
    border-radius: 2rem;

    width: 570px;
    height: 60vh;
    color: #07252b;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: fit-content;
    width: 50%;
}

.hero-header {
    font-size: 2.5em;
    font-weight: 700;
    color: #2d6ca2;
    line-height: 1.3;
}

.hero-header-special {
    font-size: 1.5em;
    font-weight: 800;
    color: #ffffff;
    text-transform: capitalize;
    margin-top: 0.3rem;
    line-height: 1;
}

.hero-text p {
    margin-top: 10px;
    font-size: 1.4em;
    line-height: 1.2;
    color: #09353c;
    max-width: 350px;
}

/* ===== CTA BUTTONS ===== */

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-cta button {
    border: none;
    outline: none;
    cursor: pointer;

    padding: 0.9rem 1.5rem;
    border-radius: 999px;

    font-size: 0.95rem;
    font-weight: 600;

    transition: all 0.3s ease;
}

/* Primary Button */

.hero-primary-cta button {
    background: white;
    color: #19a9b5;
    font-size: 1.2em;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-primary-cta button:hover {
    transform: translateY(-2px);
    background: #f5f5f5;
}

.hero-primary-cta button:active {
    transform: translateY(-1px);
    background: #dfdddd;
}

/* Secondary Button */

.hero-secondary-cta button {
    background: transparent;
    border: 2px solid #1d7580;
    
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: white;
}

.hero-secondary-cta button:hover {
    background: #1d7580;
    color: white;
    transform: translateY(-2px);
}

.hero-secondary-cta button:active {
    background: #19646e;
    color: white;
    transform: translateY(-1px);
}

/* ===== IMAGE ===== */

.hero-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
}

.hero-img img {
    width: 90%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 10px 15px 20px 10px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content-left:first-child {
        max-width: 100%;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-header-special {
        font-size: 2.5rem;
    }
}





/* ===== FOR SHOPPERS SECTION ===== */

.for-shoppers-section {
    padding: 4rem 1.5rem;
    background: #ffffff;

    font-family: "Inter", sans-serif;
}

.for-shoppers-container {
    max-width: 1250px;
    margin: 0 auto;
}

.for-shoppers-content {
    background: #c9edf0;

    border-radius: 2rem;

    padding: 2rem 2rem 1.5rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;

    overflow: hidden;
}

/* ===== LEFT SIDE ===== */

.for-shoppers-content-left {
    flex: 1;
    max-width: 650px;
}

.for-shoppers-header {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
}

.for-shoppers-special {
    color: #2dc6d6;
}

.for-shoppers-text p {
    margin-top: 1rem;

    font-size: 1.1rem;
    line-height: 1.7;

    color: #1f2d3d;

    max-width: 520px;
}

/* ===== LIST ===== */

.for-shoppers-list {
    margin-top: 2rem;
}

.for-shoppers-list ul {
    padding-left: 1.5rem;
}

.for-shoppers-list li {
    margin-bottom: 0.8rem;

    font-size: 1.2rem;
    color: #1d4fb3;

    line-height: 1.5;
}

/* ===== RIGHT SIDE ===== */

.for-shoppers-content-right {
    display: flex;
    justify-content: center;
}

.for-shoppers-content-right-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Mini Header */

.for-shoppers-mini-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #7d7d8a;

    margin-bottom: 1rem;
}

/* ===== IMAGE ===== */

.for-shoppers-img {
    width: 330px;
    height: 430px;

    border-radius: 1.8rem;
    overflow: hidden;

    background: #b8dfe4;
}

.for-shoppers-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 950px) {

    .for-shoppers-content {
        flex-direction: column;
        text-align: center;
    }

    .for-shoppers-content-left {
        max-width: 100%;
    }

    .for-shoppers-text p {
        max-width: 100%;
    }

    .for-shoppers-list ul {
        padding-left: 0;
        list-style-position: inside;
    }

    .for-shoppers-content-right-container {
        align-items: center;
    }

    .for-shoppers-header {
        font-size: 2.3rem;
    }

    .for-shoppers-img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}



.for-vendors-section{
    width: 100%;
    padding: 30px 0;
    background: #b9e4e7;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.for-vendors-content{
  padding: 20px;
  background-color: rgba(39, 203, 211, 0.26);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.for-vendors-container{
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.for-vendors-header{
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.for-vendors-header-special{
    color: #18bfd1;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.for-vendors-services{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.services-list-1{
    background: #c9eef0;
    border-radius: 18px;
    padding: 25px 20px;
    width: 280px;
    position: relative;
    overflow: hidden;
}

.service-icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 70px;
    background: #6d7b7d;
    border-bottom-right-radius: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px;
}

.service-icon i{
    color: white;
    font-size: 2.5em;
    margin-right: 2px;
}

.service-header{
    color: #0a4ea3;
    font-size: 26px;
    font-weight: 700;
    margin-top: 5px;
    margin-left: 55px;
    margin-bottom: 25px;
    line-height: 1.2;
    padding: 5px;
}

.services-list-1 p{
    color: #1f1f1f;
    font-size: 22px;
    line-height: 1.8;
    margin: 0;
}

.vendors-footer-text{
    text-align: right;
    margin-top: 15px;
    font-size: 13px;
    font-style: italic;
    color: #222;
}


/* =========================================
   GLOBAL FIXES
========================================= */

*{
    box-sizing: border-box;
}

html,
body{
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   HERO SECTION RESPONSIVE
========================================= */

@media (max-width: 1100px){

    .hero-content{
        gap: 2rem;
    }

    .hero-content-left:first-child{
        width: 100%;
    }

}

@media (max-width: 900px){

    .hero-section{
        min-height: auto;
        padding: 4rem 1.5rem;
    }

    .hero-content{
        flex-direction: column;
        text-align: center;
    }

    .hero-content-left:first-child{
        width: 100%;
        max-width: 700px;
        padding: 2rem;
    }

    .hero-header{
        font-size: 2.2rem;
    }

    .hero-text p{
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero-cta{
        justify-content: center;
    }

    .hero-img{
        max-width: 500px;
    }

    .hero-img img{
        width: 100%;
    }

}

@media (max-width: 600px){

    .hero-section{
        padding: 3rem 1rem;
    }

    .hero-content-left:first-child{
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .hero-header{
        font-size: 1.8rem;
    }

    .hero-header-special{
        font-size: 1.2rem;
    }

    .hero-text p{
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta{
        flex-direction: column;
        width: 100%;
    }

    .hero-cta button{
        width: 100%;
    }

}

/* =========================================
   WHO WE ARE SECTION
========================================= */

@media (max-width: 1100px){

    .who-we-are-contant{
        gap: 80px;
    }

}

@media (max-width: 900px){

    .who-we-are-contant{
        flex-direction: column;
        gap: 40px;
        padding: 25px;
    }

    .who-we-are-content-left,
    .who-we-are-content-right{
        max-width: 100%;
        width: 100%;
    }

    .who-we-are-header{
        text-align: center;
        font-size: 2.5rem;
    }

    .hero-text-right{
        text-align: center;
    }

    .hero-left-text{
        text-align: center;
    }

    .hero-img img{
        width: 100%;
    }

    .who-we-are-cta{
        justify-content: center;
        flex-wrap: wrap;
    }

}

@media (max-width: 600px){

    .who-we-are-container{
        padding: 15px;
    }

    .who-we-are-contant{
        padding: 20px;
        border-radius: 20px;
    }

    .who-we-are-header{
        font-size: 2rem;
    }

    .hero-text-right{
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-left-text{
        font-size: 1rem;
    }

    .who-we-are-cta{
        flex-direction: column;
    }

    .who-we-are-primary-cta,
    .who-we-are-secondary-cta{
        width: 100%;
    }

    .who-we-are-primary-cta button,
    .who-we-are-secondary-cta button{
        width: 100%;
    }

}

/* =========================================
   MISSION SECTION
========================================= */

@media (max-width: 950px){

    .our-mission-content{
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .our-mission-content-left{
        min-height: auto;
    }

    .message-container{
        max-width: 100%;
    }

    .our-mission-img{
        max-width: 100%;
        height: auto;
    }

    .hero-content,
    .for-shoppers-content{
        flex-direction: column-reverse;
    }

}

@media (max-width: 600px){

    .mission-section{
        padding: 50px 15px;
    }

    .our-mission-header{
        font-size: 2rem;
    }

    .message-container p{
        font-size: 1rem;
        padding: 20px;
    }

    .microtext{
        text-align: center;
        padding-left: 0;
    }

}

/* =========================================
   CTA SECTION
========================================= */

@media (max-width: 950px){

    .cta-content{
        flex-direction: column;
    }

    .cta-message{
        max-width: 100%;
    }

    .cta-right-container{
        max-width: 100%;
    }

}

@media (max-width: 600px){

    .cta-section{
        padding: 50px 15px;
    }

    .cta-content{
        padding: 20px;
        gap: 30px;
    }

    .cta-header{
        font-size: 2rem;
    }

    .cta-message{
        padding: 20px;
    }

    .cta-message p{
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-cta{
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary-cta button,
    .cta-secondary-cta button{
        width: 100%;
    }

    .cta-lists{
        padding: 20px;
    }

    .list-1,
    .list-2,
    .list-3,
    .list-4{
        padding: 14px;
        border-radius: 18px;
    }

    .list-1 p,
    .list-2 p,
    .list-3 p,
    .list-4 p{
        font-size: 1rem;
    }

}

/* =========================================
   FOR VENDORS SECTION
========================================= */

@media (max-width: 1100px){

    .for-vendors-services{
        justify-content: center;
    }

}

@media (max-width: 768px){

    .for-vendors-content{
        width: 100%;
    }

    .for-vendors-header{
        text-align: center;
    }

    .for-vendors-services{
        flex-direction: column;
        align-items: center;
    }

    .services-list-1{
        width: 100%;
        max-width: 450px;
    }

    .services-list-1 p{
        font-size: 1rem;
    }

    .service-header{
        font-size: 1.4rem;
    }

}

@media (max-width: 480px){

    .for-vendors-header{
        font-size: 1.5rem;
    }

    .for-vendors-header-special{
        font-size: 2rem;
    }

    .services-list-1{
        padding: 20px 16px;
    }

    .service-header{
        margin-left: 45px;
        font-size: 1.2rem;
    }

    .services-list-1 p{
        font-size: 0.95rem;
        line-height: 1.6;
    }

}