@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== GLOBAL CLEANUP ===== */
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
}

/* ===== TOP OFFER BAR ===== */
.top-offer {
    background: #e60000;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
}

/* ===== HEADER ===== */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
}

/* LOGO */
.logo-img {
    max-height: 70px;
}

/* RIGHT SECTION */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* PHONE */
.phone {
    font-size: 14px;
    text-align: right;
    line-height: 1.3;
}

.phone .status {
    display: block;
    font-size: 12px;
    color: green;
    margin-top: 2px;
}

/* CALL BUTTON */
.call-btn {
    background: #ffcc00;
    color: #000;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.call-btn:hover {
    background: #e6b800;
}

/* ===== CTA BAR ===== */
.cta-bar {
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 10px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

    .header-flex {
        gap: 10px;
    }

    .logo-img {
        max-height: 34px;
    }

    .call-btn {
        padding: 7px 10px;
        font-size: 12px;
    }

    .phone {
        display: none;
    }

    .cta-bar {
        font-size: 12px;
        padding: 8px;
    }

    .top-offer {
        font-size: 12px;
    }
}

/* Banner Section Main Banner Section css  */

/* HERO BACKGROUND */
.hero-section {
    position: relative;
    background: url('../assets/images/hero-banner.png') center/cover no-repeat;
    padding: 80px 0;
    color: #000;
}

/* DARK OVERLAY (important) */
.hero-section .overlay {
    position: absolute;
    inset: 0;
}

/* CONTENT ABOVE OVERLAY */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    color: #000;
}

.hero-title span {
    color: #ff3b3b;
    font-size: 56px;
}

/* SUB */
.hero-sub {
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

/* BULLETS */
.hero-points {
    list-style: none;
    padding: 0;
    margin-bottom:10px;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #000;
}

.hero-left .hero-btn, .hero-left .hero-note{
    display: flex;
    flex-direction: column;
    align-items: center;
}   

.hero-points span {
    color: #00ff88;
    font-weight: bold;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #e60000;
    color: #fff;
    padding: 5px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 10px;
    box-shadow: 0 6px 20px rgba(230,0,0,0.4);
    font-size: 24px;
    text-align: center;
}

.hero-btn small {
    display: block;
    font-size: 16px;
}

/* NOTE */
.hero-note {
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
}

/* IMAGE */
.hero-img {
    max-height: 420px;
}

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

    .hero-section {
        padding:15px;
        text-align: left;
        padding-left: 0px;

    }

    .hero-title {
        font-size: 26px;
    }

    .hero-title span {
        font-size: 36px;
    }

    .hero-points li {
        justify-content: left;
        font-weight: bold;
    }

    .hero-btn {
        width: 75%;
    }

    .hero-img {
        margin-top: 25px;
        max-height: 260px;
    }
}

/* SECTION */
.phone-strip {
    background: #fff;
}

/* BOX */
.phone-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border: 2px solid #e60000;
    border-radius: 10px;
    padding: 15px 20px;

    text-decoration: none;
    background: #f9f9f9;

    transition: 0.3s;
}

/* HOVER */
.phone-box:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ICON */
.phone-icon {
    font-size: 26px;
    color: #e60000;
}

/* CONTENT */
.phone-content {
    text-align: left;
}

/* NUMBER */
.phone-number {
    font-size: 24px;
    font-weight: 800;
    color: #000;
}

/* TEXT */
.phone-text {
    font-size: 14px;
    color: #333;
}

.phone-text span {
    color: green;
    font-weight: 700;
}

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

    .phone-box {
        flex-direction: row;
        padding: 12px;
        gap: 10px;
    }

    .phone-number {
        font-size: 22px;
    }

    .phone-text {
        font-size: 16px;
    }

    .phone-icon {
        font-size: 22px;
    }
}








/* Trust Reassurnance Section css and Social Proof Section css */

/* ===== SECTION ===== */
.trust-section {
    background: #f6f7f9;
    padding: 30px 0;
}

/* ===== TOP TRUST ROW (ALWAYS SINGLE LINE) ===== */
.trust-top {
    display: flex;
    gap: 12px;
    overflow-x: auto; /* mobile scroll */
    white-space: nowrap;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* ITEM */
.trust-item {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
}

/* REMOVE SCROLLBAR (OPTIONAL) */
.trust-top::-webkit-scrollbar {
    display: none;
}

/* ===== ALERT BAR ===== */
.price-alert {
    background: #fff4d6;
    border: 1px solid #f0c36d;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin: 15px 0;
}

/* ===== MAIN CARD ===== */
.stats-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ===== TOP ROW (FORCE SINGLE LINE) ===== */
.stats-row.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

/* ===== BOTTOM ROW ===== */
.stats-row.bottom {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

/* ===== STAT ITEM ===== */
.stat {
    flex: 1;
    text-align: center;
    min-width: 0;
}

/* ICON */
.icon {
    font-size: 22px;
    margin-bottom: 5px;
}

.icon.green {
    color: green;
}

/* NUMBER */
.stat h4 {
    font-size: 18px;
    font-weight: 800;
    margin: 5px 0;
    white-space: nowrap;
}

/* LABEL */
.stat p {
    font-size: 16px;
    color: #666;
    white-space: nowrap;
}

/* DIVIDER LINE */
.line {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

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

    /* TRUST ROW STILL SINGLE LINE */
    .trust-top {
        gap: 8px;
        padding: 10px;
    }

    /* SMALLER TEXT */
    .trust-item {
        font-size: 12px;
    }

    /* STATS ROW STILL SINGLE LINE */
    .stats-row.top {
        gap: 5px;
    }

    .stat h4 {
        font-size: 14px;
    }

    .stat p {
        font-size: 10px;
    }

    /* BOTTOM ROW (2 ITEMS NICE) */
    .stats-row.bottom {
        justify-content: space-between;
    }
}







/* What happend when you call button click  */
/* ===== SECTION ===== */
.steps-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding: 60px 0;
}

/* ===== OVERLAY (DARK BLEND) ===== */
.steps-section::before {
    content: "";
    position: absolute;
    inset: 0;
background: linear-gradient( to right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.75) );

}

/* ===== CONTENT ===== */
.steps-section .container {
    position: relative;
    z-index: 2;
}

/* ===== TITLE ===== */
.steps-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.steps-title span {
    color: #ffcc00;
}

/* ===== ROW ===== */
.steps-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* ===== BOX ===== */
.step-box {
    flex: 1;
    text-align: center;
    padding: 25px 15px;
    position: relative;
    border-radius: 10px;
    transition: 0.3s;
    background-color: #fff;
}

/* HOVER EFFECT */
.step-box:hover {
    background: rgba(255, 130, 130, 0.442);
}

/* ===== NUMBER ===== */
.step-number {
    position: absolute;
    top: -12px;
    left: 15px;
    background: #e60000;
    color: #fff;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== ICON ===== */
.step-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

/* ===== TITLE ===== */
.step-box h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* ===== TEXT ===== */
.step-box p {
    font-size: 13px;
    color: #333;
}

/* ===== DIVIDER LINE ===== */
.steps-row .step-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

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

    .steps-row {
        flex-direction: column;
        gap: 25px;
    }

    .steps-row .step-box::after {
        display: none;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .steps-title {
        font-size: 20px;
    }
}



/* Trusted by happy customers section css */

/* SECTION */
.testimonials {
    background: #f6f7f9;
    padding: 40px 0;
    text-align: center;
}

/* TITLE */
.test-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* ROW */
.test-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* CARD */
.test-card {
    background: #fff;
    padding: 20px 18px;
    border-radius: 10px;
    flex: 1;
    max-width: 320px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER */
.test-card:hover {
    transform: translateY(-5px);
}

/* STARS */
.stars {
    color: #f4b400;
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.test-card p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

/* NAME */
.test-card h5 {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

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

    .test-row {
        flex-direction: column;
        gap: 15px;
    }

    .test-card {
        max-width: 100%;
    }

    .test-title {
        font-size: 16px;
    }
}


/* Final cta call section css */

/* CTA SECTION */
.final-cta {
    background: #000;
    color: #fff;
    padding: 40px 20px;
}

/* SMALL TEXT */
.cta-small {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 10px;
}

/* TITLE */
.cta-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: #e60000;
    color: #fff;
    padding: 14px 22px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 10px;
}

.cta-btn:hover {
    background: #cc0000;
}

/* NOTE */
.cta-note {
    font-size: 12px;
    color: #ccc;
}



/* call for main footer button section css */

/* STICKY BAR */
.sticky-call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #e60000;
    z-index: 2;
}

.sticky-call a {
    display: block;
    text-align: center;
    color: #fff;
    padding: 12px;
    font-weight: 800;
    text-decoration: none;
}

.sticky-call span {
    display: block;
    font-size: 12px;
    color: #ffcc00;
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    padding: 40px 20px 20px;
}

/* ROW */
.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* COLUMN */
.footer-col {
    flex: 1;
}

.footer-col h4,
.footer-col h5 {
    color: #fff;
    margin-bottom: 10px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    border-top: 1px solid #222;
    padding-top: 10px;
}

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

    .footer-row {
        flex-direction: column;
        gap: 20px;
    }

    .cta-title {
        font-size: 20px;
    }
}

/* FOOTER */
.footer {
    background: #0b0f14;
    color: #ccc;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-logo h3 {
    margin: 0;
    color: #fff;
}

.footer-logo span {
    color: #e60000;
}

/* TEXT */
.footer-text {
    margin: 15px 0;
    font-size: 13px;
}

/* SOCIAL */
.social-icons a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #111;
    color: #fff;
    text-align: center;
    line-height: 32px;
    margin-right: 5px;
    border-radius: 50%;
    font-size: 12px;
}

/* HEADINGS */
.footer-col h4 {
    color: #fff;
    margin-bottom: 10px;
}

/* LIST */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 13px;
}

/* FEATURES */
.footer-features {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    font-size: 13px;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 15px;
}

.footer-bottom a {
    color: #ccc;
    margin-left: 10px;
    text-decoration: none;
}

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

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

    .footer-features {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.footer-logo-img {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-col p {
    font-size: 13px;
    margin-bottom: 8px;
}




/* About page css start from here */

/* HERO */
.about-hero {
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
}

/* TITLE */
.section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

/* CTA */
.cta-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding: 60px 0;
    color: #fff;
}

/* 🔥 overlay for readability */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* keep content above overlay */
.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-weight: 700;
}

/* SUBSCRIBE */
.subscribe-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1493238792000-8113da705763?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding: 60px 0;
}

.subscribe-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.subscribe-section .container {
    position: relative;
    z-index: 2;
}

/* SUPPORT */
.support-strip {
    background: #eee;
    padding: 20px 0;
}


/* Trust Section google and trustpilot logos css */

/* SECTION */
.trust-strip {
    background: #f8f8f8;
    padding: 25px 0;
}

/* ROW */
.trust-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* ITEM */
.trust-item {
    flex: 1;
}

/* VERTICAL ALIGN */
.trust-item.vertical {
  display: flex;
  flex-direction: column;

  /* 🔥 THIS IS WHAT YOU NEED */
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */

  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  gap: 10px;

  height: 100%;
  min-height: 220px;
}

/* 🔥 Fallback (guaranteed spacing) */
.trust-item.vertical > * {
    margin-bottom: 8px;
}

.trust-item.vertical > *:last-child {
    margin-bottom: 0;
}

/* BIG LOGO */
.logo.big {
    width: 80%;
}

/* RATING */
.rating strong {
    font-size: 18px;
}

.stars {
    color: #f4b400;
    font-size: 16px;
}

.rating p {
    margin: 0;
    font-size: 12px;
    color: #555;
}

/* STAT */
.stat h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .trust-row {
        flex-wrap: wrap;
        gap: 15px;
    }

    .trust-item {
        flex: 1 1 45%;
    }
}

/* SECTION */
.trust-logos {
    padding: 40px 0;
    background: #f8f8f8;
}

/* CARD */
.trust-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER */
.trust-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.trust-card img {
    max-height: 110px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* TEXT */
.trust-card p {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.trust-card img {
    width: 100%;
    object-fit: contain;
}

.about-points {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.about-points li {
    margin-bottom: 6px;
    font-size: 14px;
}

.about-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
}

/* 🔥 BLACK OVERLAY */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* increase to 0.8 if needed */
}

/* KEEP TEXT ABOVE OVERLAY */
.about-hero .container {
    position: relative;
    z-index: 2;
}

.phone-link {
    color: inherit;
    text-decoration: none;
}

.phone-link:hover {
    color: #e60000;
}

/* SECTION */
.products-section {
    padding: 50px 0;
    background: #fff;
}

/* CARD */
.product-card {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 15px;
    transition: 0.3s;
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

/* TITLE BOX */
.product-title {
    background: #f2f2f2;
    padding: 12px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
}

/* DISCOUNT BADGE */
.product-card .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 768px) {
    .product-card img {
        height: 140px;
    }

    .product-title {
        font-size: 12px;
        padding: 10px;
    }
}


.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    cursor: pointer;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* SECTION */
.contact-section {
    padding: 60px 0;
    background: #f8f8f8;
}

/* INFO CARDS */
.info-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.3s;
}

.info-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #f4c24d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
}

/* INPUTS */
.contact-form .form-control {
    border-radius: 0;
    padding: 12px;
    font-size: 14px;
}

/* BUTTON */
.contact-form .btn {
    background: #f4c24d;
    border: none;
}

/* HOVER */
.info-card:hover {
    transform: translateY(-5px);
}


.fixedButton{
    position: fixed;
    bottom: 50px;
    right: 0px; 
    padding: 20px;
    z-index: 9999;
}
.roundedFixedBtn{
  height: 60px;
  line-height: 65px;  
  width: 60px;  
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  background-color: #4CAF50;
  color: white;
  text-align: center;
  cursor: pointer;
}

.floating_btn {
  position: fixed;
  bottom: 70px;
  left: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
  
}


.shop-page-product .product-item{
  text-align: center;
}

.py-120{
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-padding{
  padding: 60px 0;
}

.hero-note {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg, #007bff, #3399ff, #007bff); /* blue */
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;

    animation: glowPulse 1.5s infinite;
}

/* Glow + Pulse Effect */
@keyframes glowPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0,123,255,0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0,123,255,0.8);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0,123,255,0.4);
    }
}