img.full-width-img {
    width: 100%;
}


.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: linear-gradient(to right, #74c0fc, #7b2ff7); */
    background-color: #eeecf8;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 19%;
    padding-left: 19%;
    flex-wrap: wrap;
    color: white;
    gap: 60px;
}

/* Left Content */
.content {
    flex: 1;
    min-width: 300px;
}

.subtitle {
    color: #5f49d2; /* This color seems off based on the image, the image shows a lighter blue/purple. Let's adjust for the image color */
    color: #5f49d2; /* Adjusted color to match image */
    font-weight: bold;
    margin-bottom: 15px;
}

.title {
    color: #5f49d2;
    font-size: 45px; /* Increased font size */
    margin-bottom: 15px;
}

.tagline {
    color: #5f49d2;
    font-size: 25px;
    line-height: 34px;
    margin-bottom: 20px;
}

.description {
    color: #5f49d2;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
}

/* Right Image */
.image-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
    text-align: center;
    display: flex; /* Use flex to center model and SVG */
    justify-content: center;
    align-items: center;
    margin-left: 20px; /* Add some space between content and image */
}

.model {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below image */
}

/* Circular Text SVG */
.circular-text-svg {
    position: absolute;
    width: 240px;
    height: 240px;
    top: 26%;
    left: 63%;
    transform: translate(-50%, -50%) rotate(4deg);
    overflow: visible;
}

.circular-text-svg text {
    font-family: 'Poppins', sans-serif; /* Use a suitable font */
    font-size: 10px; /* Font size within the SVG's viewBox, scales with SVG */
    letter-spacing: 1px;
    text-transform: uppercase;
    fill: #d4d4d4; /* Text color */
}


/* Responsive */
@media (max-width: 1200px) {
    .about-section {
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding-left: 5%;
        padding-right: 5%;
    }
    .title {
        font-size: 2.2rem;
    }
    .tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    .content {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .image-wrapper {
        margin-left: 0;
    }
    .circular-text-svg {
        width: 150px; /* Smaller SVG for mobile */
        height: 150px;
        top: 20%; /* Adjust position for mobile */
        transform: translate(-50%, -50%) rotate(-30deg); /* Keep rotation */
    }
    .circular-text-svg text {
        font-size: 8px;
    }
    .title {
        font-size: 1.8rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .circular-text-svg {
        width: 120px; /* Even smaller SVG for very small screens */
        height: 120px;
        top: 15%;
    }
    .circular-text-svg text {
        font-size: 7px;
    }
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 30px 20%;
  /* background: #fff; */
  flex-wrap: wrap;
}

.feature-item {
  /* flex: 1 1 200px; */
  margin: 20px;
  color: #5f49d2; /* purple-blue accent */
  font-size: 1rem;
}

.feature-item i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.feature-item p {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}

/* Tagline Section */
.tagline-section {
  background: #5f49d2;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.tagline-section h2 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 0px;
  font-weight: 400;
}

.tagline-section .underline {
  width: 125px;
  height: 2px;
  background: white;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }
  .feature-item {
    margin: 15px 0;
  }
  .tagline-section h2 {
    font-size: 1.2rem;
  }
}

.sellers {
  /* background: linear-gradient(to bottom, #d1ebf9, #f9f7ff); */
  padding: 0px 15%;
  text-align: center;
  color: #5f49d2;
}

/* Titles */
.header-text h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.header-text h2 {
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Horizontal Steps */
.icon-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* gap: 20px; */
  /* margin-bottom: 60px; */
}

.icon-steps .step {
  flex: 1 1 200px;
  text-align: center;
  padding: 15px;
}

.icon-steps i {
  font-size: 2.5rem;
  color: #5f49d2;
  margin-bottom: 10px;
}

.icon-steps h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.icon-steps p {
  font-size: 0.9rem;
  color: #555;
}

    img.step-img
    {
        height: 90px;
        width: auto;
        /* margin-bottom: 7px; */
    }


/* Responsive */
@media (max-width: 1024px) {
  .icon-steps {
    flex-direction: column;
    align-items: center;
  }
 
}

 .steps-wrapper {
            /* max-width: 1200px; */
    margin: auto;
    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
    padding-bottom: 60px;
    }
    .steps-wrapper h2 {
        color: #5f49d2;
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 7px;
    text-transform: uppercase;
    }
    .steps-wrapper h3 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 40px;
        color: #7b62e1;
    }
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .step-card {
        background: #eeeeee;
        /* border-radius: 10px; */
        padding: 20px;
        text-align: center;
        /* box-shadow: 0px 4px 12px rgba(0,0,0,0.05); */
        position: relative;
    }

    .steps-grid .step-card:first-child {
        border-top-left-radius: 50px;
    }

    .steps-grid .step-card:nth-child(2) {
        border-top-right-radius: 50px;
    }

    .steps-grid .step-card:nth-child(3) {
        border-bottom-left-radius: 50px;
    }

    .steps-grid .step-card:nth-child(4) {
        border-bottom-right-radius: 50px;
    }
    .step-card {
    background: #eeeeee;
    padding: 30px; /* Adjust padding as needed */
    text-align: left;
    position: relative; /* Keep relative for the image positioning if needed */
    /* border-radius: 15px; */
    /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05); */

    /* --- FLEXBOX CHANGES START --- */
    display: flex; /* Make the card a flex container */
    flex-direction: column; /* Stack children vertically: number+text block, then image */
    align-items: flex-start; /* Align content to the left */
    /* --- FLEXBOX CHANGES END --- */
}

/* Container for the number and paragraph to put them on one line */
.step-content-wrapper {
    display: flex; /* Make this a flex container */
    align-items: center; /* Vertically center the number and text */
    margin-bottom: 20px; /* Space between the number/text and the image */
}

.step-number {
    /* Remove absolute positioning */
    position: static; /* Or just remove the 'position' property */
    background: #7ed0bb;
    color: #fff;
    min-width: 50px; /* Use min-width instead of width for better flexibility */
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px; /* Space between the number and the paragraph */
}

.step-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #5f49d2;
    font-weight: 500;
    margin: 0; /* Reset default paragraph margin */
    flex-grow: 1; /* Allow the paragraph to take up available space */
}

.step-card img {
   width: 310px;
    height: auto;
    display: block;
    margin-left: auto; 
    margin-right: auto;
}

/* Original .steps-grid and other general styles remain the same */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ... (rest of your existing CSS for .steps-wrapper, h2, h3, and responsive media queries) ... */
    /* Responsive Design */
    /* @media (max-width: 768px) {
        .steps-grid {
            grid-template-columns: 1fr;
            justify-content: center;
        }

        .steps-grid .step-card:first-child {
        border-radius: 50px;
    }

    .steps-grid .step-card:nth-child(2) {
        border-radius: 50px;
    }

    .steps-grid .step-card:nth-child(3) {
        border-radius: 50px;
    }

    .steps-grid .step-card:nth-child(4) {
        border-radius: 50px;
    }
    } */

    @media (max-width: 768px) {

    .steps-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-card {
        padding: 20px;
        align-items: flex-start;  
        text-align: left;
        border-radius: 35px;
    }

    /* Number + text stay in one row */
    .step-content-wrapper {
        flex-direction: row;     
        align-items: flex-start;
        text-align: left;
        margin-bottom: 15px;
    }

    .step-number {
        margin-right: 12px;
        margin-bottom: 0;
        flex-shrink: 0;          
    }

    .step-card p {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Image centered only */
    .step-card img {
        width: 100%;
        max-width: 260px;
        height: auto;
        margin: 15px auto 0 auto; /* center image */
        display: block;
    }
}

/* ===== TABLET FIX (768px – 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {

    .steps-wrapper {
        padding-left: 6%;
        padding-right: 6%;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-card {
        padding: 22px;
    }

    .step-content-wrapper {
        align-items: flex-start;
    }

    .step-card p {
        font-size: 15px;
    }

    .step-card img {
        width: 100%;
        max-width: 240px;
        height: auto;
        margin: 15px auto 0 auto;
        display: block;
    }

    .features {
        padding: 20px 4%;
    }
}




    .shoppers {
  /* background: linear-gradient(to bottom, #d1ebf9, #f9f7ff); */
  padding: 45px 15%;
  text-align: center;
  color: #5f49d2;
  background-color: #fff;
}


.outfits-section {
            /* max-width: 1200px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 50px; */
    padding-left: 15%;
    flex-wrap: wrap;
    padding-bottom: 60px;
    background-color: #fff;
    padding-right: 15%;
    }
    .outfits-text {
        flex: 1;
        min-width: 300px;
    }
    .outfits-text h2 {
        font-size: 32px;
        font-weight: 700;
        color: #18033c;
        margin-bottom: 20px;
        line-height: 1.2;
        letter-spacing: 1px;
    }
    .outfits-text p {
        font-size: 16px;
        color: #555;
        margin-bottom: 10px;
    }

    .outfits-text p:first-of-type {
        color: #18033c;
        font-weight: 500;
    }
    .outfits-image {
        flex: 1;
        min-width: 300px;
        display: flex;
        justify-content: center;
    }
    .outfits-image img {
        max-width: 100%;
        height: auto;
    }

    /* Responsive design */
    /* @media (max-width: 768px) {
        .outfits-section {
            flex-direction: column;
            text-align: center;
        }
        .outfits-text h2 {
            font-size: 28px;
        }
    } */

    @media (max-width: 768px) {
    .outfits-section {
        flex-direction: column;
        text-align: center;
        padding-left: 20px;   /* RESET desktop padding */
        padding-right: 20px;  /* RESET desktop padding */
        padding-bottom: 40px;
    }

    .outfits-text {
        width: 100%;
        max-width: 100%;
    }

    .outfits-text h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .outfits-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .outfits-image {
        width: 100%;
        margin-top: 25px;
        justify-content: center;
    }

    .outfits-image img {
        max-width: 85%;
        height: auto;
    }
}



    /* our vision start */

       :root {
            --purple-color: #5f49d2; /* A vibrant purple, adjust as needed */
            --light-blue-color: #ADD8E6; /* A light blue, adjust as needed */
            --text-color: #333; /* Dark gray for body text */
            --background-color: #f8f8f8; /* Light background */
        }

        .vision-section {
            display: grid;
            /* Define 2 columns: one for the title area, one for the text area */
            grid-template-columns: 1fr 1fr; /* Roughly 1/3 for title, 2/3 for text */
            /* gap: 20px; */
            padding-left: 15%;
            padding-right: 15%;
            /* box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05); */
            position: relative;
            overflow: hidden; /* Crucial to contain the circles */
           
            min-height: 450px; /* Ensure enough height for circles and content */
            align-items: center; /* Vertically align content in grid cells */
        }

        /* Pseudo-elements for the circles */
        .vision-section::before,
        .vision-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1; /* Behind the text */
        }

        .vision-section::before { /* Outer purple circle */
            width: 610px;
            height: 600px;
            border: 6px solid var(--purple-color);
            left: 504px;
        }

        .vision-section::after { /* Inner light blue circle */
            width: 635px;
            height: 570px;
            border: 7px solid var(--light-blue-color);
            left: 480px;
        }

        .vision-title {
            grid-column: 1 / 2; /* Spans the first column */
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 2; /* Above circles */
            padding-left: 160px; /* Give some space from the left edge */
        }

        .vision-title h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 3.5em;
            color: #5f49d2;
            text-transform: uppercase;
            line-height: 1;
            word-break: break-word;
            max-width: 200px; /* To stack words like in the image */
        }

        .vision-text {
            grid-column: 2 / 3; /* Spans the second column */
            text-align: left;
            color: var(--text-color);
            font-size: 1.1em;
            line-height: 1.6;
            z-index: 2; /* Above circles */
            padding-right: 20px; /* Give some space from the right edge */
        }

        .vision-span {
            color: #7b62e1;
        }

        /* @keyframes slow-rotate {
            0% {
                transform: translateY(-50%) rotate(0deg);
                box-shadow: 0 0 10px rgba(95, 73, 210, 0.3);
            }
            100% {
                transform: translateY(-50%) rotate(360deg);
                box-shadow: 0 0 10px rgba(95, 73, 210, 0.3);
            }
        }

        .vision-section::before,
        .vision-section::after {
            animation: slow-rotate 60s linear infinite;
        } */


        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .vision-section {
                grid-template-columns: 1fr; /* Single column layout */
                grid-template-rows: auto auto; /* Two rows: title then text */
                padding: 30px 15px;
                min-height: auto; /* Allow height to adjust */
            }

            .vision-section::before,
            .vision-section::after {
                display: none;
            }

            .vision-title {
                grid-column: 1 / -1; /* Spans full width */
                grid-row: 1 / 2; /* First row */
                /* padding-top: 180px; */
                padding-left: 0;
            }

            .vision-title h2 {
                font-size: 2.8em;
                max-width: none; /* Allow full width for text wrapping */
            }

            .vision-text {
                grid-column: 1 / -1; /* Spans full width */
                grid-row: 2 / 3; /* Second row */
                text-align: center;
                font-size: 1em;
                padding-right: 0;
            }
        }

        @media (max-width: 768px) {
            .vision-section::before,
            .vision-section::after {
                display: none;
            }

            .vision-title h2 {
                font-size: 2.2em;
            }
            /* .vision-title {
                padding-top: 150px;
            } */
        }

        @media (max-width: 480px) {
            .vision-section::before,
            .vision-section::after {
                display: none;
            }
            .vision-title h2 {
                font-size: 1.8em;
            }
            .vision-text {
                font-size: 0.9em;
            }
            /* .vision-title {
                padding-top: 120px;
            } */
            .vision-section {
                padding: 20px 10px;
            }
        }



        /* contact us start */

        
.contact-container {
      background-color: #6A49F2;
      padding: 30px 20px;
      color: #fff;
      border-top: 1px solid #6A49F2;
    }

    .contact-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 25px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
      border-right: 1px solid #32236F;
      padding-right: 40px;
      flex: 1;
      min-width: 250px;
    }

    .contact-item:last-child {
      border-right: none;
      padding-right: 0;
    }

    .contact-item i {
      font-size: 24px;
      color: #fff;
    }

    .contact-text {
      line-height: 1.4;
    }

    .contact-text span {
      font-weight: bold;
      color: #e2dede;
    }

    .contact-text a {
      color: #fff;
      text-decoration: none;
    }

    .contact-text a:hover {
      color: #ffc107;
    }

    @media screen and (max-width: 1440px){
        .manage_wrapper .manage-phoneback {right: -50px;}
        .message-section .manage_wrapper .manage-phoneback {right: -24px;}
    }

    @media screen and (max-width: 1199px){
        .manage-section .manage_wrapper .manage-phoneback {right: -18px; top: 20px;}
        .manage-section .manage_wrapper .manage-phoneback img{width: 470px;}
        .message-section .manage_wrapper .manage-phoneback {right: -18px; top: 38px;}
        .message-section .manage_wrapper .manage-phoneback img{width: 470px;}
    }

    @media screen and (max-width: 991px){
        .manage-section .manage_wrapper .manage-phoneback {right: -38px; top: 26px;}
        .manage-section .manage_wrapper .manage-phoneback img {width: 400px;}
        .message-section .manage_wrapper .manage-phoneback {right: -44px; top: 40px;}
        .message-section .manage_wrapper .manage-phoneback img {width: 400px;}
    }

    @media screen and (max-width: 767px){
        .manage-section .manage_wrapper .manage-phoneback {right: 0; top: 40px; position: relative; text-align: center;}
        .message-section .manage_wrapper .manage-phoneback {right: 0; top: 54px; position: relative; text-align: center;}
    }

    @media screen and (max-width: 575px){
        .manage-section .manage_wrapper .manage-phoneback {right: 10px;}
        .manage-section .manage_wrapper .manage-phoneback img {width: 350px;}
        .message-section .manage_wrapper .manage-phoneback {right: 10px; top: -18px;}
        .message-section .manage_wrapper .manage-phoneback img {width: 350px;}
    }