@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carattere&display=swap');

body {
    overflow-x: hidden;
      font-family: "Poppins", sans-serif;
}

/* ======================================
   FULL WIDTH SECTION (Reusable Class)
   ====================================== */
.is-layout-constrained > .myfull {
    width: 100vw;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    margin-top: 0;
}

.myfull {
    position: relative;
    overflow-x: clip; /* prevents horizontal scroll safely */
    padding-left: 0 !important;
    padding-right: 0 !important;
}






.hero-section {
    width: 100%;
    min-height: 100vh;
     background: linear-gradient(135deg, #19684f, #0b8b63);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background texture */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bubble.png") center / cover no-repeat;
    opacity: 0.35;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    height: 100vh;
    width: 100%;
}

.hero-content .contentbanner {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content .contentbanner .Welcomelabel {
 font-size: 48px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 0;
    font-family: "Carattere", cursive;
}

.hero-content .contentbanner .brandname {
        font-size: 50px;
    line-height: 60px;
    color: #fff;
    font-weight: 600;
    max-width: 500px;
    padding: 10px 10px;
	text-shadow: 0px 3px 0px #000000a8, 0px 0px 20px rgba(0, 0, 0, 0.15), 0px 4px 21px rgba(0, 0, 0, 0.1), 0px 9px 5px rgba(0, 0, 0, 0.1);
}

.hero-content .contentbanner .slogan {
  font-size: 20px;
    line-height: 30px;
    color: #fff;
    max-width: 450px;
        margin: 5px auto 25px;
}
a.order_btn {
        color: #fff;
    font-size: 26px;
    line-height: 50px;
    text-decoration: none;
    background-color: #c03f41;
    padding: 10px 45px;
    border-radius: 40px;
    font-weight: 700;
	transition: all 0.2s ease;
}
a.order_btn:hover {
   background-color: #bd3335;
}
/* Floating products */
.floating-product {
    position: absolute;
    z-index: 2;
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.floating-product img {
    width: 100%;
    height: auto;
    animation: drift 9s ease-in-out infinite;
}

.float-slow { animation-duration: 8s; }
.float-medium { animation-duration: 6s; }
.float-fast { animation-duration: 4.8s; }

.prod-left {
    width: 210px;
    left: 4%;
    bottom: 26%;
}

.prod-top-left {
    width: 210px;
    left: 16%;
    top: 14%;
}

.prod-top-right {
    width: 200px;
    right: 16%;
    top: 12%;
}

.prod-right {
    width: 200px;
    right: 4%;
    bottom: 24%;
}

/* Basket */
.basket-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    z-index: 6;
}

.basket-wrapper img {
    width: 100%;
}

/* Curve */
.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 260px;
    z-index: 5;
    pointer-events: none;
}

.hero-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    25% { transform: translateY(-22px); }
    50% { transform: translateY(-50px); }
    75% { transform: translateY(-22px); }
    100% { transform: translateY(0); }
}

@keyframes drift {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .basket-wrapper {
        width: 340px;
    }

    .hero-curve {
        height: 100px;
    }
}














/* ===== MAHADEV FEATURES SECTION ===== */
.mahadev-features {
  background-color: #fff;
  padding: clamp(70px, 7vw, 110px) 16px;
}

/* Container */
.mahadev-features .features-container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.mahadev-features .features-title {
     font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* Subtitle */
.mahadev-features .features-subtitle {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

/* Grid */
.mahadev-features .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Card */
.mahadev-features .feature-card {
     padding: 15px 15px;
    transition: transform 0.35s ease;
    background-color: #fff0f0;
    border: 1px solid #ffd8d8;
        border-radius: 20px;
}

.mahadev-features .feature-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.mahadev-features .feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Card Title */
.mahadev-features .feature-card h3 {
   font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #a93b3c;
    font-family: "Poppins", sans-serif;
}

/* Card Text */
.mahadev-features .feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(52 52 52 / 70%);
}

/* Tablet */
@media (max-width: 1024px) {
  .mahadev-features .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .mahadev-features .features-grid {
    grid-template-columns: 1fr;
  }
}















.patternproduct .bannerarea {
    background-image: url("../images/horizaontal_banner.jpg");
    height: 800px;
    width: 100%;
    background-size: cover;
    position: relative;
}

/* Content container */
.patternproduct .bannerarea .bannerarea_cont {
    position: absolute;
    right: 7%;
    max-width: 480px;
    top: 50%;
    transform: translateY(-50%);
}

/* Logo */
.patternproduct .bannerarea .bannerlogo {
    width: 160px;
}

.patternproduct .bannerarea .bannerlogo img {
    width: 100%;
}

/* Header text */
.patternproduct .bannerarea .textheader {
    font-size: 50px;
        line-height: 60px;
    margin: 15px 0;
    font-weight: 600;
    color: #fff;
    text-shadow: 
      0px 3px 0px #00000029,
      0px 4px 4px rgba(0, 0, 0, 0.15),
      1px 3px 0px rgba(0, 0, 0, 0.1),
      0px 1px 30px rgba(0, 0, 0, 0.1);
}

/* Description pills */
.patternproduct .bannerarea .textdesc {
    color: #ffffff;
    margin-bottom: 15px;
    background-color: #c35048;
    padding: 15px 25px;
    border-radius: 62px;
}

/* ===============================
   PATTERN BRAND (UNCHANGED)
================================ */
.patternbrand .patternbrand_area img {
    width: 100%;
}

.patternbrand .patternbrand_area .patterndesktop {
    display: block;
}

.patternbrand .patternbrand_area .patterndesktopmob {
    display: none;
}

@media only screen and (max-width: 991px) {
    .patternbrand .patternbrand_area .patterndesktopmob {
        display: block;
    }

    .patternbrand .patternbrand_area .patterndesktop {
        display: none;
    }
}










.process-section {
     padding: 60px 15px;
 background: #ffeeee;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.process-header h2 {
 font-size: 42px;
    margin-bottom: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #333;
    margin-top: 0;
}

.process-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}


.process-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}


.process-step {
     position: relative;
    background: #fff;
padding: 33px 55px 5px 63px;
    border-radius: 140px 0 140px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    border: 2px solid transparent;
    border-left: 6px solid #fdcb00;
}

.process-step:hover {
  transform: translateY(-10px) rotateX(3deg);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.1);
     border-left: 6px solid #c35048;
}

.process-step h4 {
     font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #c35048;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
}

.process-step p {
   font-size: 14px;
    line-height: 1.6;
    color: #555;
}


.process-line {
    width: 120px;
    height: 2px;
    position: absolute;
    right: -119px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.process-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to right,
    #c35048 0,
    #c35048 6px,
    transparent 6px,
    transparent 14px
  );
  animation: dash-flow 2.6s linear infinite;
  opacity: 0.9;
}

/* Animation */
@keyframes dash-flow {
  from {
    transform: translateX(-60%);
  }
  to {
    transform: translateX(60%);
  }
}


.process-step:nth-child(3n) .process-line {
  display: none;
}


@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2n) .process-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
  }
}














.testimonial .testimonial_inner {
  max-width: 100%;
}

.testimonial .testimonial_parts {
  display: flex;
  min-height: 710px;
}

/* LEFT */
.testimonial .testimonial_textarea {
    width: 45%;
    padding: 20px 30px;
    position: relative;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide */
.testimonial .testimonial_slide {
 display: none;
    text-align: center;
    padding: 0 60px;
}

.testimonial .testimonial_slide.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

/* Quote icon */
.testimonial .quote_icon {
  display: block;
   width: 50px;
  margin-bottom: 20px;
}
.testimonial .quote_icon img {
   width: 100%;
}

/* Text */
.testimonial .testimonial_slide p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Name */
.testimonial .testimonial_slide h4 {
     font-weight: 500;
    font-size: 20px;
    color: #b84c4c;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
}

.testimonial .testimonial_slide small {
  font-size: 14px;
  opacity: 0.8;
}

/* Dots */
.testimonial .testimonial_dots {
    margin-top: 40px;
    text-align: center;
    position: absolute;
    bottom: 20%;
}

.testimonial .testimonial_dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial .testimonial_dots .dot.active {
  background: #000;
  transform: scale(1.3);
}

/* RIGHT IMAGE */
.testimonial .testimonial_imagearea {
  width: 61%;
    background-image: url(../images/productshoot_mahadev5.jpg);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial .testimonial_parts {
    flex-direction: column;
  }

  .testimonial .testimonial_textarea,
  .testimonial .testimonial_imagearea {
    width: 100%;
  }

  .testimonial .testimonial_textarea {
    padding: 60px 0;
  }

 
}





.advertise {
       background: linear-gradient(135deg, #c35048, #c74645);
   padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.advertise:before {
     content: "";
    position: absolute;
    background-image: url(../images/shape-top-smoke.png);
    width: 100%;
    height: 40px;
    background-repeat: no-repeat;
    bottom: -7px;
    left: 0;
}

/* TITLE */
.advertise .advertise_inner .title {
    font-size: 60px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px;
}

/* GRID */
.advertise .advertise_items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* CARD */
.advertise .advertise_items .adimageproductsingle {
    width: calc((100% - 90px) / 3);
    margin: 6px 15px;
    perspective: 1200px; /* REQUIRED for 3D */
}

/* IMAGE WRAPPER */
.advertise .advertise_items .adimageproductsingle img {
    width: 100%;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    transform-style: preserve-3d;
}

/* 3D HOVER EFFECT */
.advertise .advertise_items .adimageproductsingle:hover img {
    transform: rotateY(-8deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .advertise .advertise_items .adimageproductsingle {
        width: calc((100% - 60px) / 2);
    }
}

@media (max-width: 600px) {
    .advertise .advertise_inner .title {
        font-size: 40px;
    }

    .advertise .advertise_items .adimageproductsingle {
        width: 100%;
        margin: 15px 0;
    }
}













.mahadev-why {
  padding: 100px 0;
  background: #ffffff;
}


.mahadev-why-inner {
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.mahadev-why-image {
width: 40%;
    padding: 0 10px;
}

.mahadev-why-image img {
  width: 100%;
  border-radius: 28px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  transform-style: preserve-3d;
}

.mahadev-why-image:hover img {
  transform: rotateY(-10deg) rotateX(5deg) scale(1.05);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.35);
}

.mahadev-why-content {
  width: 60%;
  padding: 0 15px;
}

.mahadev-why-content h2 {
     font-size: 35px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.mahadev-why-content h2 span {
          color: #c35048;
}

.mahadev-why-subtitle {
  font-size: 17px;
  color: #555;
  margin-bottom: 35px;
}

.mahadev-why-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mahadev-why-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.mahadev-icon {
  width: 52px;
  height: 52px;
  background: #f3e8f8;
  color: #7b3f98;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mahadev-why-point h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-top: 5px;
    color: #333;
}

.mahadev-why-point p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}


.mahadev-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 34px;
    background: linear-gradient(135deg, #c35048, #78201f);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mahadev-btn:hover {
      background: linear-gradient(70deg, #c35048, #78201f);
  transform: translateY(-2px);
}














.patternbrand .patternbrand_area img {
   width: 100%;
}
.patternbrand .patternbrand_area .patterndesktop {
   display: block;
}
.patternbrand .patternbrand_area .patterndesktopmob {
   display: none;
}

@media only screen and (max-width: 991px) {
.patternbrand .patternbrand_area .patterndesktopmob {
   display: block;
}
.patternbrand .patternbrand_area .patterndesktop {
   display: none;
}
}









.mahadev-cta {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #c35048, #992e2d);
    text-align: center;
    color: #ffffff;
    position: relative;
}

.mahadev-cta:before {
   content: "";
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 81px;
    background-image: url(../images/bg-slide3.webp);
    background-size: cover;
    background-repeat: repeat-x;
    background-position: top;
}

/* INNER */
.mahadev-cta-inner {
    max-width: 900px;
    margin: auto;
}

/* TITLE */
.mahadev-cta h2 {
    font-size: 50px;
    font-weight: 600;
        margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.mahadev-cta h2 span {
    color: #ffd56a;
}

.mahadev-cta p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.mahadev-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.mahadev-cta .cta-btn {
      padding: 12px 34px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* PRIMARY */
.mahadev-cta .primary-btn {
    background: #ffffff;
    color: #5e2d74;
}

.mahadev-cta .primary-btn:hover {
    background: #ffd56a;
    color: #5e2d74;
    transform: translateY(-3px);
}

/* SECONDARY */
.mahadev-cta .secondary-btn {
    border: 2px solid rgba(255,255,255,0.8);
    color: #ffffff;
}

.mahadev-cta .secondary-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 560px) {
    .mahadev-cta-buttons {
        flex-direction: column;
    }

    .mahadev-cta .cta-btn {
        text-align: center;
    }
}

















.about-hero {
    width: 100%;
    padding: 120px 0;
    background-color: #bf3939;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-hero-inner {
  max-width: 900px;
  margin: auto;
}

.about-hero h1 {
      font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
        margin-top: 0;
    font-family: "Poppins", sans-serif;
}

.about-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}










.about-impact {
  padding: 80px 20px;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}
.about-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 37px;
    line-height: 50px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
    font-weight: 600;
    color: #333;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
}
.stat-box {
  text-align: center;
    background-color: #ededed;
    padding: 15px 15px 0;
}
.stat-box h3 {
font-size: 48px;
    color: #c35048;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.stat-box p {
  font-size: 14px;
  color: #666;
}
.stat-box h3 {
  transition: transform 0.3s ease;
}

.stat-box:hover h3 {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .about-top {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
           font-size: 28px;
        line-height: 38px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}









.about-values {
    width: 100%;
   padding: 70px 0;
    background: #ffffff;
    background-image: url(../images/dot-bg-shape.webp);
}

.about-values-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.about-card {
    flex: 1;
    background: #ffffff;
    border-radius: 22px;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.about-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: #f4f8f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 25px;
}
.about-icon img {
    width: 100%;
}

.about-card h3 {
        font-size: 24px;
    color: #c35048;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 13px;
    font-family: "Poppins", sans-serif;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-values-inner {
        flex-direction: column;
    }
}

























.why-commitment {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.why-commitment-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 15px;
}

.why-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-blob {
    width: 420px;
    height: 420px;
   background: #e5e5e5;
    border-radius: 55% 45% 60% 40% / 55% 60% 40% 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.image-blob img {
    width: 85%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-blob:hover {
    transform: rotate(-2deg) scale(1.02);
}

.image-blob:hover img {
    transform: scale(1.05);
}

.why-content {
    flex: 1;
}

.why-tag {
       display: inline-block;
    color: #8d8d8d;
    font-weight: 500;
    margin-bottom: 15px;
}

.why-content h2 {
        font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: "Poppins", sans-serif;
}

.why-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 480px;
}

@media (max-width: 900px) {
    .why-commitment-inner {
        flex-direction: column;
        text-align: center;
    }

    .why-content p {
        margin: 0 auto;
    }

    .image-blob {
        width: 320px;
        height: 320px;
    }

    .why-content h2 {
        font-size: 30px;
    }
}






.product-benefits {
       background: #e7e7e7;
    padding: 70px 0;
}

.product-benefits .benefits-inner {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-benefits .benefits-header {
    text-align: center;
    margin-bottom: 70px;
}

.product-benefits .small-title {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #767676;
    margin-bottom: 12px;
}

.product-benefits h2 {
       font-size: 44px;
    font-weight: 600;
    color: #c35048;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
}

.product-benefits p {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.product-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-benefits .benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    text-align: left;
}

.product-benefits .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-benefits .benefit-icon {
     width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.product-benefits .benefit-icon img {
    width: 100%;
}

.product-benefits .benefit-card h3 {
        font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #3e3e3e;
    font-family: "Poppins", sans-serif;
}

.product-benefits .benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .product-benefits .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-benefits h2 {
               font-size: 24px;
        line-height: 34px;
        text-align: center;
        border-bottom: 1px solid #d8613c;
        max-width: 280px;
        margin: 0 auto 20px;
        padding-bottom: 10px;
        color: #c35048;
    }
    .product-benefits .benefits-grid {
        grid-template-columns: 1fr;
    }
}



* Partners Section */
.ourpartners {
  padding: 60px 20px;
  background: #fff;

}

.ourpartners-inner {
  max-width: 1200px;
  margin: 80px auto;
}

.ourpartners-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.ourpartners-header .small-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #c44;
  text-transform: uppercase;
}

.ourpartners-header h2 {
  margin: 10px 0;
    color: #333;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
}

.ourpartners-header p {
  font-size: 16px;
  color: #666;
}

/* Logo Grid */
.ourpartners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

/* Partner Card */
.ourpartners-card {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
    background: #fff;
  transition: all 0.3s ease;
}

.ourpartners-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.ourpartners_image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  margin-bottom: 12px;
}

.ourpartners_image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ourpartners-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
	font-family: "Poppins", sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .ourpartners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
	.ourpartners-header h2 {
    font-size: 28px;
}
}

@media (max-width: 576px) {
  .ourpartners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}






/* ===============================
   OUR STORY V2
================================ */
.our-story-v2 {
  padding: 100px 20px;
  background: #fdf6f4;
}

.our-story-v2-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.story-head {
  text-align: center;
  margin-bottom: 80px;
}

.story-head span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #999;
  margin-bottom: 10px;
}

.story-head h2 {
  color: #333;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
}

.story-head p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* TIMELINE */
.story-timeline-v2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.story-year {
  font-size: 34px;
  font-weight: 700;
  color: #c35048;
  font-family: "Poppins", sans-serif;
}

.story-content h4 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.story-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* FUTURE HIGHLIGHT (2026 ONLY) */
.story-item.highlight-future {
  background: linear-gradient(135deg, #f9fafb, #eef1f5);
  border-left: 6px solid #c35048;
}

/* SCROLL ANIMATION (ONLY 2026) */
.animate-2026 {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-2026.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .story-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-year {
    font-size: 28px;
  }

  .story-head h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    line-height: 32px;
    text-align: center;
    border-bottom: 1px solid #d8613c;
    max-width: 280px;
    margin: 0 auto 20px;
    padding-bottom: 10px;
  }
}

/* ===============================
   DARK MODE (AUTO)
================================ */
@media (prefers-color-scheme: dark) {

  .our-story-v2 {
    background: #0f1115;
  }

  .story-head span {
    color: #888;
  }

  .story-head h2 {
    color: #ffffff;
  }

  .story-head p {
    color: #b5b5b5;
  }

  .story-item {
    background: #1a1d23;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }

  .story-year {
    color: #f2a18f;
  }

  .story-content h4 {
    color: #ffffff;
  }

  .story-content p {
    color: #bdbdbd;
  }

  .story-item.highlight-future {
    background: linear-gradient(135deg, #1f232b, #161a20);
    border-left: 6px solid #f2a18f;
  }
}








.product-marquee-single {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 40px 0;
}

.product-marquee-single .marquee-line {
    width: 100%;
    overflow: hidden;
}

/* VERY SLOW CONTINUOUS MOTION */
.product-marquee-single .marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 60s linear infinite; /* 🔥 SLOW SPEED */
    will-change: transform;
    pointer-events: none; /* prevents any hover jitter */
}

.product-marquee-single span {
display: inline-block;
    font-size: 52px;
    font-weight: 600;
    color: #aa3c38;
    padding-right: 60px;
    font-family: "Poppins", sans-serif;
}

/* MARQUEE KEYFRAMES */
@keyframes marqueeMove {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .product-marquee-single span {
        font-size: 34px;
    }
}













.faq-section {
  padding: 80px 0;
  background: #ffffff;
      margin-top: 0;
}

.faq-inner {
 max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    padding: 0 15px;
}

/* LEFT */
.faq-left {
  width: 40%;
}

.faq-left h2 {
        font-size: 38px;
    line-height: 48px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #c35048;
}

.faq-left h2 span {
  font-weight: 700;
}

.faq-subtitle {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

.faq-btn {
        display: inline-block;
    margin-top: 15px;
    padding: 12px 34px;
    background: linear-gradient(135deg, #c35048, #78201f);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-btn:hover {
      background: linear-gradient(70deg, #c35048, #78201f);
  transform: translateY(-2px);
}

.faq-btn span {
  font-size: 18px;
}

/* RIGHT */
.faq-right {
  width: 60%;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
        width: 100%;
    background: none;
    border: none;
    padding: 20px 20px 20px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    position: relative;
	color:#333;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 10px;
        top: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-inner {
    flex-direction: column;
    gap: 40px;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }

  .faq-left h2 {
    font-size: 34px;
  }
}













.contact-section {
background: #fff;
    padding: 70px 0;
}

.contact-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px;
    padding: 0 15px;
}

/* LEFT SIDE */
.contact-info {
    width: 40%;
}

.contact-label {
 font-size: 13px;
    letter-spacing: 2px;
    color: #979797;
    font-weight: 600;
}

.contact-info h2 {
       font-size: 34px;
    margin: 0px 0 20px;
    color: #333;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.contact-info p {
   font-size: 15px;
    color: #7a7a7a;
    line-height: 22px;
    max-width: 420px;
}

.contact-details {
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 12px;
    
    display: flex;
}
.contact-details li .icon {
        min-width: 35px;
}
.contact-details li .icon img {
      width: 25px;
}
.contact-details li a {
    text-decoration: none;
    font-size: 15px;
    color: #4874b9;
    font-weight: 500;
}
.contact-details li .address {
     font-size: 15px;
    line-height: 24px;
    color: #4874b9;
    font-weight: 500;
}


.contact-details a {
    color: #0f2f24;
    text-decoration: underline;
}

.contact-image {
    margin-top: 40px;
    border-radius: 18px;
    overflow: hidden;
    max-width: 420px;
}

.contact-image img {
    width: 100%;
    display: block;
}



.contact-form-box {
      width: 45%;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 20px 20px rgb(0 0 0 / 15%);
    border: 1px solid #e7e7e7;
}
.contact-form-box h3 {
    font-size: 34px;
    margin-bottom: 10px;
        margin-top: 0;
    color: #333;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
.contact-form-box p.form-subtitle {
   border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    font-size: 15px;
    color: #7a7a7a;
    line-height: 22px;
}
.contact-form-box .wpcf7-form-control {
    border: 1px solid #ccc;
    width: calc(100% - 30px);
    height: 32px;
    padding: 5px 15px;
}
.contact-form-box .wpcf7-form-control:focus {
        border: 1px solid #bf3939;
        outline: none;
}

.contact-form-box .labelfield {
       font-size: 16px;
}
.contact-form-box .texareafield {
    border: 1px solid #ccc;
    min-height: 150px;
}


.contact-form-box .submitbtn {
 border: none;
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    padding: 0 34px;
    background: linear-gradient(135deg, #c35048, #78201f);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    height: 45px;
    font-size: 16px;
}

.contact-form-box .submitbtn:hover {
      background: linear-gradient(45deg, #cf5249, #78201f);
  transform: translateY(-2px);
}


















@media only screen and (max-width: 1460px) {
   .basket-wrapper {
    width: 480px;
  }
  .prod-left {
      width: 180px;
  }
  .prod-top-left {
      width: 180px;
  }
  .prod-top-right {
      width: 180px;
      right: 16%;
  }
  .prod-right {
      width: 170px;
      right: 4%;
  }


}



@media only screen and (max-width: 1366px) {
    .basket-wrapper {
        width: 410px;
    }
     .prod-left {
      width: 150px;
  }
  .prod-top-left {
      width: 150px;
      left: 14%;
  }
  .prod-top-right {
      width: 150px;
              right: 11%;
  }
  .prod-right {
      width: 150px;
  }
.hero-content .contentbanner .brandname {
    font-size: 45px;
}


}

@media only screen and (max-width: 1199px) {
  .process-grid {
    padding: 0 15px;
}
  .patternproduct .bannerarea .textheader {
    font-size: 30px;
        margin: 5px 0;
}
  .mahadev-why-content h2 {
    font-size: 30px;
}
  .patternproduct .bannerarea {
    height: 480px;
}
  .hero-content .contentbanner .brandname {
      max-width: 400px;
  }
}


@media only screen and (max-width: 991px) {
	.contact-info {
    width: 100%;
}
	.contact-form-box {
		width: 100%;
	}
  .faq-section {
    padding: 40px 0;
}
   .faq-section .faq-left {
        text-align: center;
    }
  .about-hero {
    padding: 60px 0;
}   
.about-hero h1 {
    font-size: 38px;
}
.about-hero-inner {
    padding: 0 15px;
}
.about-top {
    margin-bottom: 30px;
}


  .process-grid {
    gap: 20px 40px;
}
  .mahadev-cta h2 {
    font-size: 40px;
}
  .mahadev-cta-inner {
    padding: 0 15px;
}
  .mahadev-why-point p {
    font-size: 14px;
}
.mahadev-cta p {
    font-size: 15px;
}
  .advertise {
    padding: 60px 0px;
}
.advertise .advertise_inner .title {
    font-size: 35px;
}
  .process-section {
    padding: 60px 15px;
}
.mahadev-features .features-title {
    font-size: 30px;
    font-weight: 700;
}
.process-header h2 {
    font-size: 30px;
}
    .hero-content .contentbanner .brandname {
        font-size: 36px;
        line-height: 43px;
    }
    
.mahadev-why {
    padding: 50px 0;
}
  .patternproduct .bannerarea .bannerlogo {
    width: 80px;
}
.patternproduct .bannerarea .bannerarea_cont {
    right: 5%;
    max-width: 350px;
}
.patternproduct .bannerarea .textheader {
    font-size: 24px;
            line-height: 34px;
    margin: 10px 0;
}
.patternproduct .bannerarea .textdesc {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 50px;
            font-size: 12px;
}
    .basket-wrapper {
        width: 320px;
    }
  .prod-left {
      width: 110px;
  }
  .prod-top-left {
      width: 110px;
      left: 8%;
  }
  .prod-top-right {
      width: 110px;
              right: 8%;
  }
  .prod-right {
      width: 110px;
  }

    .testimonial .testimonial_imagearea {
        height: 510px;
        width: 100%;
        background-size: cover;
    }


.testimonial .testimonial_dots {
    bottom: 6%;
}

.patternproduct .bannerarea {
    height: 390px;
}
.mahadev-showcase {
    padding: 80px 20px;
}

  .why-commitment {
    padding: 50px 0;
}


.product-benefits h2 {
    font-size: 32px;
}



}

@media only screen and (max-width: 767px) {
	.contact-form-box {
    padding: 15px;
    border-radius: 10px;
}
.contact-inner {
    gap: 40px;
}
	.contact-section {
    padding: 20px 0;
}
	    .contact-info h2 {
        font-size: 24px;
        border-bottom: 1px solid #d8613c;
        max-width: 250px;
        margin: 10px auto;
        padding-bottom: 10px;
    }
	.contact-form-box h3 {
    font-size: 24px;
    text-align: center;
}
	.contact-details li .address {
    text-align: left;
}
	.contact-form-box p.form-subtitle {
    text-align: center;
}
	    .contact-info {
        text-align: center;
    }
		.hero-section,.hero-content {
		height: 810px;
        min-height: 750px;

		}
	
      .hero-content .contentbanner .slogan {
            font-size: 18px;
        line-height: 26px;
        max-width: 300px;
        margin: 10px auto;
    }
      .faq-left h2 {
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        border-bottom: 1px solid #d8613c;
        max-width: 280px;
        margin: 0 auto 20px;
        padding-bottom: 10px;
        color: #333;
    }
  .product-marquee-single {
    padding: 15px 0;
}
  .story-head p {
    font-size: 15px;
}
  .mahadev-why-image img {
    border-radius: 20px;
}
  .mahadev-features {
    padding: 30px 0;
}

.about-hero p {
    font-size: 14px;
}
.about-impact {
    padding: 20px 15px;
}

.about-top {
    gap: 30px;
}
.about-content p {
        font-size: 14px;
        text-align: center;
}
.why-content p {
    font-size: 15px;
}
.about-stats {
        gap: 20px;
    }
    .product-benefits h2 {
        font-size: 24px;
    }
    .product-benefits {
    padding: 40px 0;
}
.product-benefits .benefits-header {
    margin-bottom: 30px;
}
.product-benefits p {
    font-size: 15px;
}


    .about-card {
    padding: 15px 15px;
}
.about-card p {
    font-size: 14px;
}
.about-icon {
    width: 50px;
    height: 50px;
}
.product-benefits .benefit-card {
  padding: 15px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
}
.product-benefits .benefit-card h3 {
    margin-top: 0;
}
.story-head {
    margin-bottom: 40px;
}
.story-item {
    padding: 15px;
}
.our-story-v2 {
    padding: 50px 15px;
}
.product-benefits .benefits-inner {
    padding: 0 15px;
}
.stat-box {
    border-radius: 10px;
}

  .mahadev-features .features-subtitle {
    margin: 0 auto 30px;
}
      .testimonial .testimonial_textarea {
        padding: 30px 0 70px;
    }
      .mahadev-features .features-grid {
        gap: 20px;
    }
  .testimonial .testimonial_slide p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 25px;
    color: #4a4a4a;
}
.process-header p {
    font-size: 15px;
    padding: 0 15px;
}
.about-values {
    padding: 30px 0;
}
.about-card h3 {
    font-size: 20px;
}
    .why-content h2 {
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        border-bottom: 1px solid #d8613c;
        max-width: 280px;
        margin: 0 auto 20px;
        padding-bottom: 10px;
        color: #333;
    }
    .about-content h2 {
           font-size: 24px;
        line-height: 34px;
        text-align: center;
        border-bottom: 1px solid #d8613c;
        max-width: 280px;
        margin: 0 auto 20px;
        padding-bottom: 10px;
        color: #333;
    }
      .advertise .advertise_inner .title {
             font-size: 24px;
        line-height: 33px;
        font-weight: 600;
        max-width: 300px;
        margin: 0 auto 20px;
        border-bottom: 1px solid #ffffff;
    }
      .mahadev-features .features-title {
     font-size: 24px;
        line-height: 34px;
        font-weight: 600;
        color: #333;
        max-width: 230px;
        margin: 0 auto 20px;
        border-bottom: 1px solid #d8613c;
    }
    .mahadev-features .features-subtitle {
    font-size: 15px;
}
.mahadev-features .feature-card h3 {
    margin-top: 5px;
}

  .process-step {
        padding: 33px 54px 5px 40px;
}
  .mahadev-features .feature-card {
    border-radius: 8px;
}
  .mahadev-cta h2 {
   font-size: 28px;
        line-height: 38px;
        font-weight: 600;
}
  .process-step {
    position: relative;
    text-align: center;
  }
  .process-step:after {
   content: "";
    background-color: #d76c6c;
    position: absolute;
    height: 50px;
    width: 1px;
    bottom: -50px;
    left: 50%;
  }
  .process-step:last-child:after {
  display: none;
  }
  .process-grid {
    gap: 25px 25px;
}
  .process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}
.mahadev-btn {
    margin-top: 20px;
    padding: 10px 34px;
}
  .process-header h2 {
         font-size: 24px;
        line-height: 33px;
        font-weight: 600;
        color: #333;
        max-width: 270px;
        margin: 0 auto 20px;
        border-bottom: 1px solid #d8613c;
}
  .patternproduct .bannerarea .bannerarea_cont {
        display: none;
    }
           .patternproduct .bannerarea .textheader {
        font-size: 17px;
        margin: 10px 0;
        background-color: #bb1f10;
        padding: 10px;
    }
      .patternproduct .bannerarea .textdesc {
       display: none;
    }
      .patternproduct .bannerarea {
        height: 360px;
    }
    .testimonial .testimonial_imagearea {
      height: 350px;
    }
        .advertise {
       padding: 40px 0px 60px;
    } 
    .testimonial .testimonial_slide {
    padding: 0 10px;
}
.advertise .advertise_items .adimageproductsingle {
        margin: 15px 15px;
    }
    .mahadev-why-inner {
    flex-wrap: wrap;
        gap: 20px;
}
.mahadev-why-content h2 {
            text-align: center;
        font-size: 24px;
        line-height: 33px;
        font-weight: 600;
        max-width: 260px;
        margin: 0 auto 20px;
        border-bottom: 1px solid #d8613c;

}
.mahadev-why-subtitle {
     text-align: center;
}
.mahadev-why-image {
    width: 100%;
    margin: 0;
    padding: 0;
}
.mahadev-why-content {
    width: 100%;
    padding: 0;
    margin: 0;
}
.mahadev-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
    .mahadev-why-point {
      align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        border: 1px solid #fbd7d7;
        padding: 15px;
        border-radius: 10px;
    }
    .mahadev-cta {
        padding: 40px 0 100px;
    }
    .mahadev-showcase {
        padding: 40px 20px;
    }

.mahadev-showcase .showcase-card {
    padding: 15px;
        flex-wrap: wrap;
}
.mahadev-showcase .showcase-content {
           max-width: 100%;
        width: 100%;
        order: 2;
                margin-top: 10px;
}


    
        .process-section {
        padding: 40px 15px;
    }
.hero-content .contentbanner .Welcomelabel {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 5px;
}
.hero-content .contentbanner {
    width: 100%;
}
    .hero-content .contentbanner .brandname {
                margin: auto;
        font-size: 35px;
        padding: 0 10px;
        line-height: 45px;
    }
	a.order_btn {
   color: #fff;
        font-size: 18px;
        line-height: 45px;
        text-decoration: none;
        background-color: #c03f41;
        padding: 10px 40px;
        border-radius: 40px;
        letter-spacing: 1px;
        font-weight: 600;
}
     .hero-content .contentbanner {
        top: 22%;
    }

    .basket-wrapper {
       display: none;
    }

    .prod-left {
    bottom: 7%;
        left: 5%;
    }
    .prod-top-left {
        left: 19%;
        top: 48%;
    }
    .prod-top-right {
        right: 20%;
        top: 48%;
    }
    .prod-right {
        bottom: 7%;
    }



}