
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f7f7f7;
    color: #333;
}



    
.empower h2{
    margin: 60px 0;
    margin-bottom: 5px;
    text-align: center;
    color: #F36300;
}







/* Product advs */


.container {
    width: 98%;
    margin: 0 auto;
}

/* Section Styles */
section {
    margin: 20px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Featured Products Section */
.section-header {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 7px 10px;
    width: 50%;
    display: inline-block;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.section-header h2{
    display: inline-block;
    margin: 0 0 0 0;
}
.section-header input {
    display: inline-block;
    width: 92%;
    border: none;
    padding: 17px 10px;
    outline: none;
    font-size: 20px;
    border-radius: 4px 0 0 4px;
    
}
.search-btn {
    float: right;
    width: 8%;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 10px;
    border: none;
    background-color: #fff;
    cursor: pointer;
}

.product-grid {
    /* display: flex; */
    justify-content: space-around;
    flex-wrap: wrap;
    /* gap: 1px; */
}
.product-grid a{
    text-decoration: none;
    color: #333;
}
/* Product Card Styling */
.product-card {
    display: inline-block;
    margin: 20px 5px;
    flex: 1 1 calc(25% - 20px); /* Four columns on large screens */
    width: 23.5%; /* Prevents cards from being too small */
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sale-tag {
    background-color: red;
    color: white;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.product-img {
    object-fit: cover;
    border-radius: 4px;
    width: 100%;
    height: 250px;
    background-color: #ddd;
    margin-bottom: 15px;
}

.product-name {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.add-to-cart {
    background-color: #ff6a00;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #ff4500;
}


/* Category Card Styling */
.category-grid {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
}

.category-card {
    flex: 1 1 calc(20% - 16px); /* Five columns on large screens */
    max-width: 200px;
    min-width: 160px;
    height: 190px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0; /* Remove float and margin for flex */
}

.category-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    width: 20%;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 auto 10px;
}

.category-name {
    font-size: 16px;
    color: #666;
}
.business-name{
    font-size: 11px;
}

/* rating stars  */
      .star {
        margin: 5px 0 0 -3px;
          width: 30px;
          height: 30px;
          cursor: pointer;
          fill: #FFD700;
          transition: fill 0.3s ease;
      }

    .star.selected,
    .star:hover ~ .star {
        fill: #FFD700; /* Gold color */
    }
    .stars-container {
      display: flex;
      gap: 5px;
    }
  .empty-star {
      fill: #ccc; /* Grey color for unfilled stars */
  }

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .product-card {
        flex: 1 1 calc(33.33% - 20px); /* Three columns */
        width: 31.5%;
        margin: 5px;
    }
    .category-card {
        flex: 1 1 calc(33.33% - 20px);
    }
}
@media screen and (max-width: 768px) {
    .product-card {
        /* background-color: #333; */
        flex: 1 1 calc(50% - 15px); /* Two columns */
        width: 46%;
        margin: 5px;
    }
    .category-card {
        flex: 1 1 calc(80% - 20px);
    }
    .section-header {
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .product-card, .category-card {/* Full width for mobile */
        flex: 1 1 100%; 
    }
    .section-header input {
        width: 85%;
    }
    .search-btn {
        width: 12%;
    }
}


/* Responsive Design */
@media screen and (max-width: 805px) {
    .section-header {
        padding: 7px 10px;
        width: 80%;
    }
    .search-btn {
        width: 8%;
        margin: 7px 0;
        padding: 1px;
    }
}







.empower-section {
    background: linear-gradient(90deg, #f36300 0%, #ffad11 100%);
    color: #fff;
    padding: 60px 0 30px 0;
    text-align: center;
}
.empower-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.empower-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 auto;
    max-width: 600px;
}

/* Features Modern */
.features-modern {
    background: #fff;
    padding: 60px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: #f9f9f9;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(243,99,0,0.07);
    padding: 36px 24px 28px 24px;
    text-align: center;
    transition: box-shadow 0.2s;
    border: 1px solid #f1f1f1;
}
.feature-card:hover {
    box-shadow: 0 8px 32px rgba(243,99,0,0.15);
}
.feature-icon img {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
}
.feature-card h3 {
    font-size: 1.25rem;
    color: #f36300;
    margin-bottom: 10px;
    font-weight: 600;
}
.feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Intro Video */
.intro-video-section {
    background: #f7f7f7;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}
.video-wrapper {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.intro-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Modern */
.about-modern {
    background: #fff;
    padding: 60px 0;
}
.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}
.about-card {
    background: #f9f9f9;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    min-width: 320px;
    max-width: 520px;
    flex: 1 1 400px;
}
.about-card img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: contain;
}
.about-card h2 {
    color: #f36300;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.about-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Modern */
.faq-modern {
    background: #f7f7f7;
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}
.faq-modern h2 {
    text-align: center;
    color: #f36300;
    font-size: 2rem;
    margin-bottom: 36px;
    font-weight: 700;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(243,99,0,0.04);
    overflow: hidden;
    border: 1px solid #eee;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #333;
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #f9f9f9;
}
.faq-answer {
    display: none;
    padding: 0 24px 18px 24px;
    color: #555;
    font-size: 1rem;
}
.faq-item.active .faq-answer {
    display: block;
}

/* Get Started Modern */
.get-started-modern {
    background: linear-gradient(90deg, #f36300 0%, #ffad11 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.get-started-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.get-started-content img {
    width: 180px;
    border-radius: 16px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.get-started-content h3 {
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.signupl2 {
    background: #fff;
    color: #f36300;
    border: none;
    border-radius: 8px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 2px 12px rgba(243,99,0,0.08);
    transition: background 0.2s, color 0.2s;
}
.signupl2:hover {
    background: #f36300;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
}

/* Contact Modern */
.contact-modern {
    background: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.contact-modern h2 {
    color: #f36300;
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 700;
}
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(243,99,0,0.04);
}
.contact-item img {
    width: 28px;
    height: 28px;
}
.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: #f36300;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
        align-items: center;
    }
    .get-started-content {
        flex-direction: column;
        gap: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-methods {
        flex-direction: column;
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .about-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 20px;
    }
    .about-card img {
        margin-bottom: 12px;
    }
    .get-started-content img {
        width: 120px;
    }
    .empower-section h2 {
        font-size: 1.5rem;
    }
    .faq-modern {
        padding: 30px 0;
    }
    .features-modern {
        padding: 30px 0;
    }
    .about-modern {
        padding: 30px 0;
    }
    .get-started-modern {
        padding: 30px 0;
    }
    .contact-modern {
        padding: 30px 0 20px 0;
    }
}


    .ecurmas-value-prop {
        background: linear-gradient(90deg, #f8fafc 0%, #e0e7ef 100%);
        padding: 60px 0 40px 0;
        margin-bottom: 40px;
    }
    .value-prop-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        padding: 0 24px;
    }
    .value-prop-content {
        flex: 1 1 400px;
        min-width: 320px;
    }
    .value-prop-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #f36300;
        margin-bottom: 18px;
        letter-spacing: -1px;
    }
    .value-prop-description {
        font-size: 1.15rem;
        color: #374151;
        margin-bottom: 22px;
        line-height: 1.7;
    }
    .value-prop-list {
        list-style: none;
        padding: 0;
        margin: 0 0 28px 0;
    }
    .value-prop-list li {
        margin-bottom: 14px;
        font-size: 1.05rem;
        color: #263238;
        position: relative;
        padding-left: 24px;
    }
    .value-prop-list li::before {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #f36300;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 9px;
    }
    .value-prop-cta {
        margin-top: 18px;
    }
    .cta-btn {
        display: inline-block;
        background: #f36300;
        color: #fff;
        font-weight: 600;
        padding: 12px 32px;
        border-radius: 28px;
        text-decoration: none;
        font-size: 1.1rem;
        box-shadow: 0 2px 12px rgba(26,35,126,0.08);
        transition: background 0.2s;
    }
    .cta-btn:hover {
        background: #3949ab;
    }
    .value-prop-image {
        flex: 1 1 320px;
        min-width: 260px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .value-prop-image img {
        max-width: 340px;
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(26,35,126,0.10);
        /* background: #fff; */
    }
    @media (max-width: 900px) {
        .value-prop-container {
            flex-direction: column;
            gap: 32px;
        }
        .value-prop-image img {
            max-width: 240px;
        }
        .value-prop-title {
            font-size: 2rem;
        }
    }

    
    .problem-solution-section {
        background: linear-gradient(90deg, #f6f8fa 60%, #e9f2ff 100%);
        padding: 60px 0 40px 0;
        border-bottom: 1px solid #e0e6ed;
    }
    .problem-solution-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1100px;
        margin: 0 auto;
        gap: 40px;
        justify-content: center;
        align-items: flex-start;
    }
    .problem-column, .solution-column {
        flex: 1 1 350px;
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
        padding: 36px 32px;
        margin: 0 10px;
        min-width: 320px;
        transition: box-shadow 0.2s;
    }
    .problem-column:hover, .solution-column:hover {
        box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    }
    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 18px;
        color: #1a2233;
        letter-spacing: -1px;
    }
    .section-title.accent {
        color: #f36300;
    }
    .section-description {
        font-size: 1.08rem;
        color: #3a4456;
        line-height: 1.7;
    }

    .unique-section {
        background: #fafdff;
        padding: 64px 0 48px 0;
    }
    .unique-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 16px;
    }
    .unique-header {
        text-align: center;
        margin-bottom: 38px;
    }
    .unique-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 32px;
        margin-bottom: 32px;
    }
    .unique-feature-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(44, 62, 80, 0.06);
        padding: 28px 22px 22px 22px;
        transition: box-shadow 0.18s;
        border-left: 4px solid #f36300;
    }
    .unique-feature-card:hover {
        box-shadow: 0 6px 28px rgba(44, 62, 80, 0.13);
        border-left: 4px solid #1a2233;
    }
    .unique-feature-card h3 {
        font-size: 1.18rem;
        font-weight: 600;
        color: #f36300;
        margin-bottom: 10px;
    }
    .unique-feature-card p {
        color: #3a4456;
        font-size: 1rem;
        line-height: 1.6;
    }
    .unique-footer {
        text-align: center;
        font-size: 1.08rem;
        color: #1a2233;
        max-width: 700px;
        margin: 0 auto;
        margin-top: 18px;
        font-weight: 500;
    }
    @media (max-width: 900px) {
        .problem-solution-container {
            flex-direction: column;
            gap: 24px;
        }
        .problem-column, .solution-column {
            margin: 0;
        }
    }