/* Landing page one start --------------
------------------------------------------         */
:root {
  --landing_1_primary: #2e7d32;
  --landing_1_secondary: #43a047;
  --landing_1_accent: #ffc107;
  --landing_1_light: #f5f9f5;
  --landing_1_dark: #006D00;
  --landing_1_text: #333;
  --landing_1_white: #ffffff;
  --landing_1_black: #222;
  --landing_1_shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --landing_1_radius: 8px;
  --landing_1_transition: all 0.3s ease;

      --landing_2_header_primary_bg: rgba(255, 255, 255, 0.1);
      --landing_2_header_text-color: #1c1c1c;
      --landing_2_header_nav-hover: #34a853;
      --landing_2_header_whatsapp-bg: #25D366;
      --landing_2_header_overlay-bg: rgba(0, 0, 0, 0.6);
      --landing_2_header_drawer-bg: #fefefe;

            --landing_3_primary: #4f46e5;
            --landing_3_secondary: #10b981;
            --landing_3_accent: #f97316;
            --landing_3_dark: #1e293b;
            --landing_3_light: #f8fafc;
            --landing_3_gray: #64748b;
            --landing_3_transition: all 0.3s ease;
            --landing_3_shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --landing_3_gradient: linear-gradient(135deg, var(--landing_3_primary), #7c3aed);

            --landing_4_primary: #2e7d32;
            --landing_4_primary-dark: #1b5e20;
            --landing_4_primary-light: #4caf50;
            --landing_4_accent: #ff9800;
            --landing_4_light: #f5f5f5;
            --landing_4_dark: #333;
            --landing_4_gray: #777;

            --landing_5_red: #e30613;
            --landing_5_red-hover: linear-gradient(90deg, #e30613, #ff4a4a);
            --landing_5_yellow: #ffd700;
            --landing_5_gray-bg: #f8f8f8;
            --landing_5_white: #ffffff;
            --landing_5_black: #000000;
            --landing_5_accent-red: #c00000;
            --landing_5_overlay: rgba(0, 0, 0, 0.6);
            --landing_5_shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --landing_5_transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  /* font-family: 'Anek Bangla', sans-serif; */
  font-family: "Hind Siliguri", Sans-serif;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
html {
    scroll-behavior: smooth;
  }
.landing1_sec1 {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing_1_title1 {
  text-align: center;
  font-size: 1.9rem;
  color: var(--landing_1_white);
  margin: 20px 0;
  animation: fadeInUp 1s ease;
  font-weight: 800;
  margin-top: 70px;
}

.landing_1_title2 {
  text-align: center;
  font-size: 1.9rem;
  color: var(--landing_1_accent);
  margin: 20px 0;
  animation: fadeInUp 1s ease;
  font-weight: 800;
}

.landing_1_video-container {
  width: 100%;
  max-width: 800px;
  height: 450px;
  margin: 30px auto;
  border-radius: var(--landing_1_radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.4s ease;
}

.landing_1_video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.landing_1_animated-btn {
  display: inline-block;
  background-color: var(--landing_1_accent);
  color: var(--landing_1_black);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border: 3px solid var(--landing_1_primary);
  transition: var(--landing_1_transition);
  margin-top: 30px;
  animation: zoomInOut 1s infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 400px;
}

.landing_1_animated-btn:hover {
  transform: scale(1.05);
  background-color: #ffca28;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.16);
  }

  100% {
    transform: scale(1);
  }
}

.landing_1_sec2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing1_details_title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--landing_1_white);
  margin: 30px 0;
  font-weight: 700;
  animation: fadeInUp 1s ease;
  background-color: var(--landing_1_dark);
  padding: 20px;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 1200px;
}

.landing1_details_title span {
  color: var(--landing_1_accent);
  font-weight: 700;
}

.landing_1_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.landing_1_features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.landing_1_feature-item {
  border-radius: var(--landing_1_radius);
  display: flex;
  /* align-items: flex-start; */
  align-items: center;
  gap: 10px;
  transition: var(--landing_1_transition);
}

.landing_1_feature-item:hover {
  padding: 7px;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.landing_1_feature-icon {
  color: var(--landing_1_primary);
  font-size: 24px;
  min-width: 40px;
  height: 40px;
  /* background-color: rgba(46, 125, 50, 0.1); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing_1_feature-content h3 {
  font-size: 1.4rem;
  color: var(--landing_1_primary);
}

.landing_1_single-grid {
  max-width: 800px;
  margin: 0 auto;
}

.ti-x {
  color: red;
}

@media (max-width: 768px) {
  .landing_1_title1 {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .landing_1_title2 {
    font-size: 1.2rem;
  }

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

  .landing_1_hero-title {
    font-size: 2.2rem;
  }

  .landing_1_hero-subtitle {
    font-size: 1.2rem;
  }

  .landing_1_video-container {
    height: 300px;
  }

  .landing_1_features-title,
  .landing_1_single-title,
  .landing_1_slider-title {
    font-size: 2rem;
  }
}


@media (max-width: 576px) {
  .landing1_details_title {
    font-size: 1.2rem;
  }

  .landing_1_feature-content h3 {
    font-size: 1rem;
  }

  .landing_1_feature-icon {
    font-size: 14px;
  }

  .landing_1_hero-title {
    font-size: 1.8rem;
  }

  .landing_1_video-container {
    height: 250px;
  }

  .landing_1_animated-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .landing_1_features-title,
  .landing_1_single-title,
  .landing_1_slider-title {
    font-size: 1.7rem;
  }
}

.landing_1_sec3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--landing_1_dark);
  margin-top: 20px;
  padding-bottom: 20px;
}

.landing1_title3 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--landing_1_white);
  margin-top: 30px;
  font-weight: 700;
  animation: fadeInUp 1s ease;
  background-color: var(--landing_1_dark);
  padding: 20px;
  border-radius: 20px;
  border: 2px solid rgb(30, 244, 30);
  width: 100%;
  max-width: 1200px;
}



/* Swiper container styling */
.landing_1_slider_container {
  position: relative;
  margin: 30px auto;
  padding: 0 60px;
  max-width: 1200px;
}

.landing_1_slider_swiper {
  padding: 20px 0 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  padding: 10px;
}

.vertical-image-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.swiper-slide-active .vertical-image-container {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(138, 63, 252, 0.4);
  border-color: rgba(138, 63, 252, 0.5);
}

.vertical-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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


.vertical-image-container:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.image-description {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Navigation buttons */
.landing_1_slider_button_prev,
.landing_1_slider_button_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.landing_1_slider_button_prev:hover,
.landing_1_slider_button_next:hover {
  background: #8a3ffc;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.landing_1_slider_button_prev {
  left: 0;
}

.landing_1_slider_button_next {
  right: 0;
}

/* Dots */
.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  border-radius: 50%;
  margin: 0 8px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #8a3ffc;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(138, 63, 252, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
  .landing_1_slider_container {
    max-width: 1050px;
    padding: 0 30px;
  }

  .landing1_title3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {

  .landing_1_slider_container {
    max-width: 900px;
    padding: 0 50px;
  }

  .vertical-image-container {
    height: 350px;
  }
}

@media (max-width: 768px) {


  .landing_1_slider_container {
    max-width: 450px;
  }

  .landing_1_slider_button_prev,
  .landing_1_slider_button_next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .vertical-image-container {
    height: 320px;
  }
}

@media (max-width: 576px) {

  .landing_1_slider_button_prev {
    left: -5px;
  }

  .landing_1_slider_button_next {
    right: -5px;
  }

  .vertical-image-container {
    height: 300px;
  }
}

@media(max-width: 376px) {
  .landing_1_slider_container {
    max-width: 300px !important;
  }
}

/* Wrapper */
.landing_1_header_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

/* Container */
.landing_1_header_container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left: Hamburger + Logo + Nav */
.landing_1_header_left {
  display: flex;
  align-items: center;
}

.landing_1_header_hamburger {
  font-size: 24px;
  margin-right: 12px;
  display: none;
  cursor: pointer;
}

.landing_1_header_logo {
  height: 36px;
  margin-right: 24px;
}

.landing_1_header_nav {
  display: flex;
  gap: 24px;
}

.landing_1_header_nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  transition: color 0.3s;
}

.landing_1_header_nav a:hover {
  color: #2b0752;
}

/* Right */
.landing_1_header_right {
  display: flex;
  align-items: center;
}

.landing_1_header_whatsapp {
  background: #FFD700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.landing_1_header_whatsapp img {
  width: 18px;
  height: 18px;
  filter: brightness(0);
}

.landing_1_header_whatsapp:hover {
  background: #fff;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.landing_1_header_whatsapp:hover img {
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(10deg) brightness(1.2);
}

/* Drawer */
.landing_1_header_drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: #fff;
  /* Always solid */
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1001;
  transition: left 0.3s ease;
}

.landing_1_header_drawer a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.landing_1_header_drawer_close {
  font-size: 28px;
  cursor: pointer;
  align-self: flex-end;
}

/* Overlay */
.landing_1_header_drawer_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 1000;
}

/* Scroll Background */
.landing_1_header_wrapper.scrolled {
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .landing_1_header_nav {
    display: none;
  }

  .landing_1_header_hamburger {
    display: block;
  }
}


.horizontal-video-container {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.horizontal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Nav buttons */
.landing_1_slider_button_prev,
.landing_1_slider_button_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #2b0752;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.landing_1_slider_button_prev:hover,
.landing_1_slider_button_next:hover {
  background: #2b0752;
  color: #fff;
}

.landing_1_slider_button_prev {
  left: 10px;
}

.landing_1_slider_button_next {
  right: 10px;
}

/* Dots */
.landing_1_slider_dots {
  margin-top: 12px;
  text-align: center;
}

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

  .landing_1_slider_button_prev,
  .landing_1_slider_button_next {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

.landing_1_sec_4 {
  background-color: var(--landing_1_white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;

}

.landing1_1_suggestion_title1 {
  background-color: var(--landing_1_dark);
  color: var(--landing_1_white);
  padding: 20px 25px;
  text-align: center;
  width: 100%;
  border-radius: 20px;
  line-height: 2;
  font-size: 23px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.landing1_1_suggestion_title1 span {
  color: var(--landing_1_accent);
  font-weight: 700;
  font-size: 24px;
}

.landing1_1_suggestion_title_or {
  background-color: var(--landing_1_dark);
  color: var(--landing_1_accent);
  padding: 15px 45px;
  text-align: center;
  border-radius: 20px;
  line-height: 2;
  font-size: 48px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

/* Responsive text scaling */
@media screen and (max-width: 768px) {
  .landing1_1_suggestion_title1 {
    font-size: 13px;
    padding: 15px 20px;
  }

  .landing1_1_suggestion_title1 span {
    font-size: 13px;
  }

  .landing1_1_suggestion_title_or {
    font-size: 30px;
  }
}

@media screen and (max-width: 480px) {
  .landing1_1_suggestion_title1 {
    font-size: 13px;
    padding: 12px 16px;
  }

  .landing1_1_suggestion_title_or {
    font-size: 20px;
  }
}

.landing1_1_suggestion_title2 {
  color: var(--landing_1_secondary);
  font-size: 24px;
  margin: 20px 0;
  text-align: center;
}

.landing1_1_suggestion_title2 span {
  color: rgb(231, 31, 31);
  font-weight: 700;
  font-size: 24px;
}

/* Medium screens (tablets) */
@media screen and (max-width: 768px) {
  .landing1_1_suggestion_title2 {
    font-size: 18px;
    margin: 18px 0;
  }

  .landing1_1_suggestion_title2 span {
    font-size: 18px;
  }
}

/* Small screens (phones) */
@media screen and (max-width: 480px) {
  .landing1_1_suggestion_title2 {
    font-size: 15px;
    margin: 16px 0;
  }

  .landing1_1_suggestion_title2 span {
    font-size: 15px;
  }
}

.landing_1_banner_ {
  background-color: var(--landing_1_dark);
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin: 20px auto;
  border-radius: 20px 20px 0 0;
}

.landing_1_banner_title {
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 600;

}

.landing_1_banner_button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 27px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.landing_1_banner_button:hover {
  background-color: #f2f2f2;
}

/* Responsive */
@media (max-width: 768px) {
  .landing_1_banner_title {
    font-size: 18px;
  }

  .landing_1_banner_button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.landing_1_order_section {
  background: #f5f9f5;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.landing_1_order_ {
  max-width: 1200px;
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 100, 0, 0.15);
  overflow: hidden;
  border: 3px solid #2e7d32;
  position: relative;
}

.landing_1_order_header {
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: white;
  padding: 25px 30px;
  text-align: center;
}

.landing_1_order_header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.landing_1_order_header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 5px;
}

.landing_1_order_products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 30px;
}

.landing_1_order_product {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  background: #f9fdf9;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #e0f2e0;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.05);
  transition: all 0.3s ease;
  display: flex;
  position: relative;
  overflow: hidden;
}

.landing_1_order_product.selected {
  border: 2px solid #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.landing_1_order_product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
}

.landing_1_order_product_selector {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #4caf50;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.landing_1_order_product_selector::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4caf50;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.landing_1_order_product.selected .landing_1_order_product_selector::after {
  opacity: 1;
  transform: scale(1);
}

.landing_1_order_product_image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e8f5e9;
  flex-shrink: 0;
}

.landing_1_order_product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing_1_order_product_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.landing_1_order_product_title {
  color: #2e7d32;
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding-right: 30px;
}

.landing_1_order_product_desc {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
  flex-grow: 1;
}

.landing_1_order_product_price {
  color: #e53935;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 10px 0;
}

.landing_1_order_product_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.landing_1_order_product_quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing_1_order_quantity_btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4caf50;
  color: white;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.landing_1_order_quantity_btn:hover {
  background: #388e3c;
  transform: scale(1.1);
}

.landing_1_order_quantity_display {
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.landing_1_order_product_subtotal {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e7d32;
}

.landing_1_order_bottom {
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px 40px;
  gap: 30px;
}

.landing_1_order_delivery {
  flex: 1;
  min-width: 300px;
  background: #f9fdf9;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #e0f2e0;
}

.landing_1_order_summary {
  flex: 1;
  min-width: 300px;
  background: #f9fdf9;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid #e0f2e0;
}

.landing_1_order_section_title {
  color: #2e7d32;
  font-size: 1.5rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c8e6c9;
  font-weight: 700;
}

.landing_1_order_form_group {
  margin-bottom: 25px;
}

.landing_1_order_form_label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.landing_1_order_form_control {
  width: 100%;
  padding: 15px;
  border: 1px solid #c8e6c9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.landing_1_order_form_control:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.landing_1_order_shipping_info {
  background: #e8f5e9;
  padding: 15px;
  border-radius: 10px;
  margin: 25px 0;
  text-align: center;
  font-weight: 500;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.landing_1_order_item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #c8e6c9;
  align-items: center;
}

.landing_1_order_item_info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing_1_order_item_image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8f5e9;
}

.landing_1_order_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing_1_order_item_name {
  font-weight: 500;
  font-size: 1rem;
}

.landing_1_order_item_quantity {
  font-size: 0.9rem;
  color: #777;
  margin-top: 3px;
}

.landing_1_order_item_price {
  font-weight: 600;
  color: #e53935;
  font-size: 1.1rem;
}

.landing_1_order_total {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2e7d32;
  margin-top: 10px;
  border-top: 2px solid #c8e6c9;
}

.landing_1_order_payment_method {
  background: #e8f5e9;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
  font-weight: 500;
  color: #2e7d32;
}

.landing_1_order_confirm_btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
  margin-top: 20px;
}

.landing_1_order_confirm_btn:hover {
  background: linear-gradient(135deg, #1b5e20, #388e3c);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.landing_1_order_free_delivery_badge {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 10px;
  vertical-align: middle;
}

/* Selection options */
.landing_1_order_selection {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 0 30px;
  flex-wrap: wrap;
}

.landing_1_order_selection_option {
  padding: 15px 25px;
  background: #e8f5e9;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  min-width: 200px;
}

.landing_1_order_selection_option.selected {
  background: #4caf50;
  color: white;
  border-color: #2e7d32;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
  .landing_1_order_products {
    padding: 20px 15px;
    gap: 20px;
  }

  .landing_1_order_bottom {
    padding: 0 15px 30px;
    gap: 20px;
  }

  .landing_1_order_header h2 {
    font-size: 1.2rem;
  }

  .landing_1_order_header p {
    font-size: 1rem;
  }

  .landing_1_order_product {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .landing_1_order_product_image {
    width: 20%;
    height: 40%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .landing_1_order_product_title {
    font-size: 14px;
  }

  .landing_1_order_product_price {
    font-size: 14px;
  }

  .landing_1_order_product_controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .landing_1_order_header {
    padding: 20px 15px;
  }

  .landing_1_order_header h2 {
    font-size: 1.6rem;
  }

  .landing_1_order_product {
    padding: 15px;
  }

  .landing_1_order_product_title {
    font-size: 1.1rem;
  }

  .landing_1_order_confirm_btn {
    padding: 16px;
    font-size: 1.2rem;
  }

  .landing_1_order_section_title {
    font-size: 1.3rem;
  }
}

.landing_1_footer_ {
  background-color: #fff;
  padding: 20px 15px;
  text-align: center;
  font-family: sans-serif;
  border-top: 1px solid #e0f2e0;
}

.landing_1_footer_links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.landing_1_footer_links a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 500;
}

.landing_1_footer_links span {
  color: #ccc;
  font-weight: 300;
}

.landing_1_footer_copy {
  font-size: 0.9rem;
  color: #555;
}

/* landing page one end ---------------
------------------------------------------------------- */

/* langing page two start ------------
----------------------------------------- */

.landing_2_body {
  background-color: white;
  height: 200vh;
}

.landing_2_hero_ {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); */
  background: #24ADD5;
}
.landing_2_hidden_bg{
      background-color: #24ADD5;
      height: 60px;
      width: 100%;
      margin-top: -70px;
}
.landing_2_hero_title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  animation: fadeInDown 1s ease;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin-top: 50px;
}

.landing_2_hero_video-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  animation: scaleIn 0.8s ease;
  margin-bottom: 50px;
  perspective: 1200px;
  position: relative;
  z-index: 10;
}

.landing_2_hero_video-thumbnail {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.landing_2_hero_video-container:hover .landing_2_hero_video-thumbnail {
  transform: scale(1.02);
}

.landing_2_hero_play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.2);
  z-index: 20;
  backdrop-filter: blur(4px);
}

.landing_2_hero_play-button:hover {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
}

.landing_2_hero_play-button .play-icon {
  color: white;
  width: 40px;
  height: 40px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}


.landing_2_hero_play-button:hover .play-icon {
  transform: scale(1.2);
}

.landing_2_hero_video-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 12px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  pointer-events: none;
  z-index: 15;
  box-shadow:
    inset 0 0 25px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.7);
}

.landing_2_hero_video-player {
  display: none;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  position: relative;
  margin: 0 auto 50px;
  z-index: 10;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}


.landing_2_hero_video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  margin: auto;
}

.landing_2_hero_action-button {
  position: relative;
  display: inline-block;
  padding: 18px 45px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  background: transparent;
  color: white;
  border: 3px solid white;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  z-index: 10;
  transition: all 0.4s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
  margin-top: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.landing_2_hero_action-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(45deg, #ffcc00, #ff0066, #00ccff);
  z-index: -1;
  transition: all 0.6s ease;
}

.landing_2_hero_action-button:hover:before {
  width: 100%;
}

.landing_2_hero_action-button:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: none;
  border-color: transparent;
}

.decoration {
  position: absolute;
  z-index: 1;
}

.circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  top: 10%;
  right: 5%;
  animation: rotate 30s linear infinite;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid rgba(255, 255, 255, 0.05);
  bottom: 20%;
  left: 5%;
  transform: rotate(35deg);
  animation: float 8s ease-in-out infinite;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(35deg);
  }

  50% {
    transform: translateY(-20px) rotate(40deg);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .landing_2_hero_title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .landing_2_hero_title {
    font-size: 2.5rem;
  }

  .landing_2_hero_play-button {
    width: 80px;
    height: 80px;
  }

  .landing_2_hero_action-button {
    padding: 15px 35px;
    font-size: 1.1rem;
  }

  .decoration {
    display: none;
  }
}

@media (max-width: 480px) {
  .landing_2_hero_title {
    font-size: 1.1rem;
  }

  .landing_2_hero_play-button {
    width: 70px;
    height: 70px;
  }

  .landing_2_hero_play-button i {
    font-size: 30px;
  }

  .landing_2_hero_action-button {
    padding: 14px 30px;
    font-size: 1rem;
  }
}


.landiing_2_title2_ {
  text-align: center;
  padding: 40px 20px 20px;
}

.landiing_2_title2_ h2 {
  font-size: 2.2rem;
  color: #FF006E;
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
  transition: 0.3s ease-in-out;
}

.landiing_2_title2_ h2:hover {
  transform: scale(1.03);
}

.landiing_2_title2_ hr {
  width: 80px;
  height: 2px;
  background: #FF006E;
  border: none;
  margin: 15px auto 0;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .landiing_2_title2_ h2 {
    font-size: 1.2rem;
  }

  .landiing_2_title2_ hr {
    width: 60px;
    height: 2px;
  }
}

@media (max-width: 480px) {
  .landiing_2_title2_ h2 {
    font-size: 1rem;
  }

  .landiing_2_title2_ hr {
    width: 50px;
  }
}

.landing_2_slider_container {
            max-width: 1400px;
            width: 100%;
            position: relative;
            margin: 0 auto;
        }


        .landing_2_slider_wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
        }

        .landing_2_slider_track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .landing_2_slider_slide {
            flex: 0 0 calc(100% / 3);
            padding: 10px;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        .landing_2_slider_slide_inner {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .landing_2_slider_slide:hover .landing_2_slider_slide_inner {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .landing_2_slider_img_container {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .landing_2_slider_img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .landing_2_slider_slide:hover .landing_2_slider_img {
            transform: scale(1.05);
        }

        .landing_2_slider_btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .landing_2_slider_btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .landing_2_slider_btn_prev {
            left: 0px;
        }

        .landing_2_slider_btn_next {
            right: 0px;
        }

        .landing_2_slider_btn_icon {
            color: white;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .landing_2_slider_dots {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            margin-bottom: 5px;
            gap: 12px;
        }

        .landing_2_slider_dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgb(146, 139, 139);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .landing_2_slider_dot_active {
            background: #00dbde;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(0, 219, 222, 0.5);
        }

        .landing_2_slider_dot:hover {
            background: #00dbde;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .landing_2_slider_slide {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 768px) {
            .landing_2_slider_slide {
                flex: 0 0 100%;
            }
            
            .landing_2_slider_title {
                font-size: 2.2rem;
            }
            
            .landing_2_slider_btn_prev {
                left: 10px;
            }
            
            .landing_2_slider_btn_next {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .landing_2_slider_title {
                font-size: 1.8rem;
            }
            
            .landing_2_slider_img_container {
                height: 250px;
            }
        }

        /* Animation for active slide */
        .landing_2_slider_slide_active {
            transform: scale(1.05);
            z-index: 2;
        }
        .landing_2_slider_section{
          display: flex;
          flex-direction: column;
          justify-content: center;
        }
.landing_2_header_wrapper {
      position: fixed;
      top: 5px;
      margin: 0 auto;
      /* max-width: 1200px; */
      width: 100%;
      border-radius: 50px;
      background: var(--landing_2_header_primary_bg);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      padding: 14px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 999;
      transition: all 0.4s ease;
    }

    .landing_2_header_logo img {
      height: 42px;
    }

    .landing_2_header_nav {
      display: flex;
      gap: 28px;
    }

    .landing_2_header_nav a {
      text-decoration: none;
      color: var(--landing_2_header_text-color);
      font-weight: 500;
      font-size: 16px;
      position: relative;
      transition: color 0.3s ease;
    }

    .landing_2_header_nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--landing_2_header_nav-hover);
      transition: width 0.3s;
    }

    .landing_2_header_nav a:hover {
      color: var(--landing_2_header_nav-hover);
    }

    .landing_2_header_nav a:hover::after {
      width: 100%;
    }

    .landing_2_header_whatsapp {
      background: var(--landing_2_header_whatsapp-bg);
      color: #fff;
      padding: 8px 16px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .landing_2_header_whatsapp i {
      font-size: 18px;
    }

    .landing_2_header_whatsapp:hover {
      background: #20bf5b;
      transform: translateY(-2px);
    }

    /* Hamburger */
    .landing_2_header_hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 26px;
      height: 20px;
      cursor: pointer;
      z-index: 1002;
      transition: transform 0.3s ease;
    }

    .landing_2_header_hamburger span {
      display: block;
      height: 3px;
      background: var(--landing_2_header_text-color);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .landing_2_header_hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translateY(7px);
    }

    .landing_2_header_hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .landing_2_header_hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-7px);
    }

    /* Drawer + Overlay */
    .landing_2_header_drawer_overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--landing_2_header_overlay-bg);
      display: none;
      opacity: 0;
      z-index: 1000;
      transition: opacity 0.3s ease;
    }

    .landing_2_header_drawer_overlay.active {
      display: block;
      opacity: 1;
    }

    .landing_2_header_drawer {
      position: fixed;
      top: 0;
      right: -300px;
      width: 260px;
      height: 100vh;
      background: var(--landing_2_header_drawer-bg);
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
      padding: 60px 24px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      z-index: 1001;
      transition: right 0.4s ease;
    }

    .landing_2_header_drawer.open {
      right: 0;
    }

    .landing_2_header_drawer a {
      color: var(--landing_2_header_text-color);
      font-size: 18px;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .landing_2_header_drawer a:hover {
      color: var(--landing_2_header_nav-hover);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .landing_2_header_nav,
      .landing_2_header_whatsapp {
        display: none;
      }

      .landing_2_header_hamburger {
        display: flex;
      }
    }
.landing_2_wy_wrapper {
    padding: 80px 20px;
    background: #f0f4f8;
}

.landing_2_wy_container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.landing_2_wy_image {
    flex: 1 1 50%;
    display: flex;
    align-items: stretch;
}
.landing_2_wy_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid #10b981;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.landing_2_wy_content {
    flex: 1 1 45%;
}

.landing_2_wy_title {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.landing_2_wy_list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.landing_2_wy_list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 14px;
}
.landing_2_wy_list i {
    color: #10b981;
    font-size: 1.3rem;
}

/* Order Button */
.landing_2_wy_button {
    background: #10b981;
    color: white;
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.landing_2_wy_button:hover {
    background: #0f9f75;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .landing_2_wy_container {
        flex-direction: column;
        text-align: center;
    }
    .landing_2_wy_image img {
        height: auto;
        max-height: 400px;
    }
    .landing_2_wy_content {
        margin-top: 40px;
    }
}
.landing_2_com_slider_section{

      background-color: #FFBAA640;
      width: 100%;
}
 .landing_2_com_slider_container {
            max-width: 1200px;
            width: 100%;
            position: relative;
            margin: 0 auto;
            padding: 20px;
        }

        .landing_2_com_slider_wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: #FFBAA640;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            padding: 20px;
        }

        .landing_2_com_slider_track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .landing_2_com_slider_slide {
            flex: 0 0 33.3333%;
            display: flex;
            justify-content: center;
            padding: 0;
        }

        .landing_2_com_slider_img_container {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
            border: 2px solid #4facfe;
            transition: all 0.4s ease;
            margin: 0 5px;
            padding: 5px;
        }

        .landing_2_com_slider_img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .landing_2_com_slider_img_container:hover {
            border-color: #00f2fe;
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .landing_2_com_slider_img_container:hover .landing_2_com_slider_img {
            transform: scale(1.1);
        }

        .landing_2_com_slider_btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .landing_2_com_slider_btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .landing_2_com_slider_btn_prev {
            left: 0px;
        }

        .landing_2_com_slider_btn_next {
            right: 0px;
        }

        .landing_2_com_slider_btn_icon {
            color: white;
            font-size: 1.1rem;
            font-weight: bold;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .landing_2_com_slider_slide {
                flex: 0 0 50%;
            }
            
            .landing_2_com_slider_btn_prev {
                left: 10px;
            }
            
            .landing_2_com_slider_btn_next {
                right: 10px;
            }
        }

        @media (max-width: 768px) {
            .landing_2_com_slider_slide {
                flex: 0 0 100%;
            }
            
            .landing_2_com_slider_title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .landing_2_com_slider_img_container {
                height: 250px;
            }
        }
  .landing_2_wy_size_guide{
  max-width: 1100px;
  margin: 15px auto;
  padding: 40px 20px;
  background: #f0f4f8;
box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.274);

        }
        .landing_2_size_guide_title{
          padding: 20px;
          background: #FF006E;
          color: white;
          text-align: center;
          font-size: 1.5rem;
          border-radius: 10px;
          font-weight: 700;
          margin-bottom: 10px;
        }
.landing_2_size_guide_img{
    flex: 1 1 50%;
    display: flex;
    align-items: stretch;
    padding: 50px;
}
.landing_2_size_guide_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid #FF006E;
}
.landing_2_call_banner {
  width: 100%;
  background-color: rgb(142, 142, 242);
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.landing_2_call_title h2 {
  color: white;
  font-size: 25px;
  margin: 0;
}

.landing_2_call_button,
.landing_2_call_whatsapp_button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 25px;
}

.landing_2_call_button {
  background-color: #ff5722;
}

.landing_2_call_whatsapp_button {
  background-color: #25d366;
}

.landing_2_call_button:hover {
  background-color: #e64a19;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.4);
}

.landing_2_call_whatsapp_button:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.4);
}

/* Responsive: stack items vertically on small devices */
@media (max-width: 768px) {
  .landing_2_call_banner {
    flex-direction: column;
    text-align: center;
    gap: 0px;
  }

  .landing_2_call_title h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .landing_2_call_button,
  .landing_2_call_whatsapp_button {
    margin: 10px 0;
    font-size: 20px;
  }
}

.landing_2_order_section{
  max-width: 1200px;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.landing_2_order_container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        
        .landing_2_order_header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e1e4e8;
        }
        
        .landing_2_order_products {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .landing_2_order_product {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            width: calc(50% - 10px);
            min-height: 100px;
            overflow: hidden;
        }
        
        .landing_2_order_product_img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin: 10px;
            border-radius: 4px;
            background: #f0f4f8;
        }
        
        .landing_2_order_product_details {
            flex: 1;
            padding: 10px;
        }
        
        .landing_2_order_product_name {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 15px;
        }
        
        .landing_2_order_quantity_ctrl {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .landing_2_order_quantity_btn {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #d1d5db;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.2s;
        }
        
        .landing_2_order_quantity_btn:hover {
            background: #f3f4f6;
        }
        
        .landing_2_order_quantity_value {
            min-width: 30px;
            text-align: center;
            font-weight: 500;
        }
        
        .landing_2_order_product_price {
            font-weight: 600;
            color: #1f2937;
            margin-left: auto;
        }
        
        .landing_2_order_main {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .landing_2_order_form_section {
            flex: 1;
            min-width: 300px;
        }
        
        .landing_2_order_summary_section {
            flex: 1;
            min-width: 300px;
        }
        
        .landing_2_order_section_title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e1e4e8;
        }
        
        .landing_2_order_form_group {
            margin-bottom: 15px;
        }
        
        .landing_2_order_form_label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .landing_2_order_size_options {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .landing_2_order_size_btn {
            padding: 8px 15px;
            border: 1px solid #d1d5db;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .landing_2_order_size_btn:hover {
            background: #f3f4f6;
        }
        
        .landing_2_order_input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            font-size: 14px;
            transition: border 0.2s;
        }
        
        .landing_2_order_input:focus {
            outline: none;
            border-color: #3b82f6;
        }
        
        .landing_2_order_price_note {
            background: #f0f7ff;
            padding: 15px;
            border-radius: 6px;
            font-size: 14px;
            margin-top: 20px;
            border-left: 3px solid #3b82f6;
        }
        
        .landing_2_order_summary {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 20px;
        }
        
        .landing_2_order_summary_table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 15px;
        }
        
        .landing_2_order_summary_table th {
            text-align: left;
            padding: 10px 0;
            font-weight: 600;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .landing_2_order_summary_table td {
            padding: 8px 0;
            border-bottom: 1px solid #f3f4f6;
        }
        
        .landing_2_order_summary_table tr:last-child td {
            border-bottom: none;
        }
        
        .landing_2_order_summary_table .landing_2_order_product_qty {
            font-size: 13px;
            color: #6b7280;
        }
        
        .landing_2_order_summary_table .landing_2_order_value {
            text-align: right;
            font-weight: 500;
        }
        
        .landing_2_order_total_row td {
            font-weight: 600;
            font-size: 16px;
            padding-top: 15px;
        }
        
        .landing_2_order_shipping_options {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin: 10px 0;
        }
        
        .landing_2_order_shipping_option {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .landing_2_order_payment_note {
            background: #f0fdf4;
            padding: 15px;
            border-radius: 6px;
            margin: 20px 0;
            font-size: 14px;
            border-left: 3px solid #10b981;
        }
        
        .landing_2_order_payment_note span {
            font-weight: 600;
            color: #10b981;
        }
        
        .landing_2_order_submit_btn {
            width: 100%;
            padding: 15px;
            background: #10b981;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            box-shadow: 0 4px 6px rgba(16, 185, 129, 0.1);
        }
        
        .landing_2_order_submit_btn:hover {
            background: #059669;
        }
        
        @media (max-width: 768px) {
            .landing_2_order_product {
                width: 100%;
            }
            
            .landing_2_order_main {
                flex-direction: column;
            }
        }
    .landing_2_policy_container {
      background-color: #fff;
      padding: 30px 16px;
      text-align: center;
    }

    .landing_2_policy_title {
      font-size: 26px;
      font-weight: 700;
      color: #00A0D0;
      margin-bottom: 24px;
    }

    .landing_2_policy_list {
      list-style: none;
      padding: 0;
      margin: 0 auto 30px;
      max-width: 800px;
      text-align: left;
    }

    .landing_2_policy_list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 18px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 6px;
    }

    .landing_2_policy_list li:last-child {
      border-bottom: none;
    }

    .landing_2_policy_list li::before {
      content: '✔️';
      color: #00A0D0;
      font-size: 20px;
      margin-top: 2px;
    }

.landing_2_webvisit_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  border: 2px solid #00A0D0;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 160, 208, 0.15);
  background: #ffffff;
  padding: 20px 30px;
  transition: all 0.3s ease-in-out;
}

.landing_2_webvisit_text {
    flex: 1;
  font-size: 20px;
  color: #0077aa;
  font-weight: 600;
  padding: 12px 20px;
  border-style: solid;
  border-width: 0 2px 0 0;
  border-color: #4E4E4E;
  border-radius: 5px;
  text-align: center;
  min-width: 260px;
  transition: background 0.3s ease, transform 0.3s ease;
  height: 76px;
}

.landing_2_webvisit_logo {
    flex: 1;
  padding: 6px;
  border-style: solid;
  border-width: 0 0 0 2px;
  border-color: #4E4E4E;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing_2_webvisit_logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.landing_2_webvisit_box:hover {
  background: #f0fbff;
  box-shadow: 0 8px 32px rgba(0, 160, 208, 0.25);
}

.landing_2_webvisit_logo:hover,
.landing_2_webvisit_text:hover {
  background: #e6f9ff;
  transform: translateY(-2px);
}

.landing_2_webvisit_logo a {
  display: inline-block;
}


    .landing_2_policy_footer {
      background: #f1f3f6;
      text-align: center;
      padding: 14px 10px;
      font-size: 15px;
      color: #444;
      border-top: 1px solid #ccc;
    }

    .landing_2_policy_footer a {
      color: #f5007b;
      text-decoration: none;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      .landing_2_webvisit_box {
        flex-direction: column;
        text-align: center;
      }
    }
/* langing page two end ------------
----------------------------------------- */


/* langing page three start ------------
----------------------------------------- */

.landing3_body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--landing_3_light);
            color: var(--landing_3_dark);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        .landing3_body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.05) 0%, transparent 30%),
                        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.05) 0%, transparent 30%);
            z-index: -1;
        }

        /* Header Styles */
        .landing_3_header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--landing_3_shadow);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--landing_3_transition);
        }

        .landing_3_logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--landing_3_primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .landing_3_logo i {
            color: var(--landing_3_accent);
        }

        .landing_3_nav {
            display: flex;
            gap: 2rem;
        }

        .landing_3_nav a {
            text-decoration: none;
            color: var(--landing_3_dark);
            font-weight: 500;
            transition: var(--landing_3_transition);
            position: relative;
            padding: 0.5rem 0;
        }

        .landing_3_nav a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--landing_3_primary);
            transition: var(--landing_3_transition);
        }

        .landing_3_nav a:hover {
            color: var(--landing_3_primary);
        }

        .landing_3_nav a:hover::after {
            width: 100%;
        }

        .landing_3_hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--landing_3_dark);
        }

        /* Hero Section */
        .landing_3_hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 6rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .landing_3_hero::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
            z-index: -1;
        }

        .landing_3_hero_content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .landing_3_hero_text {
            flex: 1;
            animation: fadeInUp 1s ease;
        }

        .landing_3_hero_image {
            flex: 1;
            display: flex;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .landing_3_hero_image img {
            max-width: 100%;
            max-height: 500px;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
        }

        .landing_3_title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--landing_3_dark);
        }

        .landing_3_title span {
            color: var(--landing_3_primary);
            position: relative;
        }

        .landing_3_subtitle {
            font-size: 1.25rem;
            color: var(--landing_3_gray);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .landing_3_button {
            display: inline-block;
            background: var(--landing_3_gradient);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
            transition: var(--landing_3_transition);
            border: none;
            cursor: pointer;
        }
        .landing_3_button_whatsapp{
            display: inline-block;
            background: var(--landing_3_secondary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 2rem;
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
            transition: var(--landing_3_transition);
            border: none;
            cursor: pointer;
        }

        .landing_3_button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
        }

        .landing_3_button_secondary {
            background: transparent;
            color: var(--landing_3_primary);
            border: 2px solid var(--landing_3_primary);
            margin-left: 1rem;
        }

        .landing_3_button_secondary:hover {
            background: rgba(79, 70, 229, 0.1);
        }

        /* Features Section */
        .landing_3_features {
            padding: 6rem 2rem;
            background: white;
        }

        .landing_3_section_title {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--landing_3_dark);
        }

        .landing_3_section_subtitle {
            text-align: center;
            color: var(--landing_3_gray);
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }

        .landing_3_features_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .landing_3_feature_card {
            background: var(--landing_3_light);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: var(--landing_3_transition);
            box-shadow: var(--landing_3_shadow);
        }

        .landing_3_feature_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .landing_3_feature_icon {
            width: 80px;
            height: 80px;
            background: var(--landing_3_gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .landing_3_feature_title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--landing_3_dark);
        }

        .landing_3_feature_text {
            color: var(--landing_3_gray);
        }

        

        /* Video Section */
        .landing_3_video_section {
            padding: 2rem 2rem;
            background: white;
        }

        .landing_3_video_container {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
            height: 0;
            padding-bottom: 56.25%;
        }

        .landing_3_video_container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Product List Section */
        .landing_3_products_section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f0fdfa, #ecfeff);
        }

        .landing_3_products_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .landing_3_product_card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--landing_3_shadow);
            transition: var(--landing_3_transition);
            position: relative;
        }

        .landing_3_product_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .landing_3_product_badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--landing_3_accent);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 2;
        }

        .landing_3_product_image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .landing_3_product_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--landing_3_transition);
        }

        .landing_3_product_card:hover .landing_3_product_image img {
            transform: scale(1.1);
        }

        .landing_3_product_info {
            padding: 1.5rem;
        }

        .landing_3_product_category {
            color: var(--landing_3_gray);
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .landing_3_product_name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--landing_3_dark);
        }

        .landing_3_product_price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--landing_3_primary);
            margin-bottom: 1rem;
        }

        .landing_3_product_discount {
            text-decoration: line-through;
            color: var(--landing_3_gray);
            font-size: 1rem;
            margin-right: 0.5rem;
        }

        .landing_3_product_rating {
            color: #f59e0b;
            margin-bottom: 1rem;
        }

        .landing_3_product_actions {
            display: flex;
            gap: 0.5rem;
        }

        .landing_3_product_btn {
            flex: 1;
            background: var(--landing_3_primary);
            color: white;
            border: none;
            padding: 0.6rem;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--landing_3_transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
        }

        .landing_3_product_btn:hover {
            background: #4338ca;
        }

        .landing_3_product_btn_secondary {
            background: transparent;
            color: var(--landing_3_primary);
            border: 2px solid var(--landing_3_primary);
        }

        .landing_3_product_btn_secondary:hover {
            background: rgba(79, 70, 229, 0.1);
        }

        /* Product Details */
        .landing_3_product_details {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f0fdfa, #ecfeff);
        }

        .landing_3_details_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .landing_3_detail_item {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--landing_3_shadow);
            transition: var(--landing_3_transition);
        }

        .landing_3_detail_item:hover {
            transform: translateY(-5px);
        }

        .landing_3_detail_title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--landing_3_primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .landing_3_detail_title i {
            color: var(--landing_3_accent);
        }

        .landing_3_detail_list {
            list-style: none;
        }

        .landing_3_detail_list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
        }

        .landing_3_detail_list li:last-child {
            border-bottom: none;
        }

        .landing_3_detail_label {
            font-weight: 500;
        }

        /* Order Section */
        .landing_3_order_section {
            padding: 6rem 2rem;
            background: white;
        }

        .landing_3_order_container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
            align-items: center;
        }

        .landing_3_order_image {
            display: flex;
            justify-content: center;
        }

        .landing_3_order_image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .landing_3_order_form {
            background: var(--landing_3_light);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--landing_3_shadow);
        }

        .landing_3_form_title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--landing_3_dark);
        }

        .landing_3_form_group {
            margin-bottom: 1.5rem;
        }

        .landing_3_form_label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .landing_3_form_input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #cbd5e1;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--landing_3_transition);
        }

        .landing_3_form_input:focus {
            outline: none;
            border-color: var(--landing_3_primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
        }

        .landing_3_form_row {
            display: flex;
            gap: 1rem;
        }

        .landing_3_form_row .landing_3_form_group {
            flex: 1;
        }

        .landing_3_quantity_control {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .landing_3_quantity_btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--landing_3_primary);
            background: transparent;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--landing_3_transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .landing_3_quantity_btn:hover {
            background: rgba(79, 70, 229, 0.1);
        }

        .landing_3_quantity_input {
            width: 60px;
            text-align: center;
            padding: 0.5rem;
            border: 2px solid #cbd5e1;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .landing_3_price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--landing_3_primary);
            margin: 1.5rem 0;
            text-align: center;
        }

        .landing_3_discount {
            text-decoration: line-through;
            color: var(--landing_3_gray);
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }

        /* FAQ Section */
        .landing_3_faq_section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f0f4ff, #e6f7ff);
        }

        .landing_3_faq_container {
            max-width: 800px;
            margin: 0 auto;
        }

        .landing_3_faq_item {
            background: white;
            border-radius: 12px;
            margin-bottom: 1rem;
            box-shadow: var(--landing_3_shadow);
            overflow: hidden;
        }

        .landing_3_faq_question {
            padding: 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--landing_3_transition);
        }

        .landing_3_faq_question:hover {
            background: #f8fafc;
        }

        .landing_3_faq_question i {
            transition: var(--landing_3_transition);
        }

        .landing_3_faq_answer {
            padding: 0 1.5rem 0;
            max-height: 0;
            overflow: hidden;
            transition: var(--landing_3_transition);
        }

        .landing_3_faq_item.active .landing_3_faq_question {
            background: var(--landing_3_primary);
            color: white;
        }

        .landing_3_faq_item.active .landing_3_faq_question i {
            transform: rotate(180deg);
        }

        .landing_3_faq_item.active .landing_3_faq_answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        /* Footer */
        .landing_3_footer {
            background: var(--landing_3_dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .landing_3_footer_container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .landing_3_footer_col h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .landing_3_footer_col h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--landing_3_primary);
        }

        .landing_3_footer_links {
            list-style: none;
        }

        .landing_3_footer_links li {
            margin-bottom: 0.8rem;
        }

        .landing_3_footer_links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--landing_3_transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .landing_3_footer_links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .landing_3_footer_links a i {
            color: var(--landing_3_primary);
        }

        .landing_3_social_links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .landing_3_social_links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--landing_3_transition);
        }

        .landing_3_social_links a:hover {
            background: var(--landing_3_primary);
            transform: translateY(-5px);
        }

        .landing_3_copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .landing_3_section_title_2{
            color: white;
            background-color: green;
            font-size: 1.2rem;
            padding: 20px;
            text-align: center;
            margin-bottom: 10px;
        }
        .landing_3_whatsapp_section{
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
            background: linear-gradient(135deg, #f0f4ff, #e6f7ff);
            border-radius: 10px;
            margin: 1rem auto;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .landing_3_hero_content {
                flex-direction: column;
                text-align: center;
            }

            .landing_3_hero_text {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .landing_3_title {
                font-size: 2.8rem;
            }

            .landing_3_nav {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                transition: var(--landing_3_transition);
            }

            .landing_3_nav.active {
                right: 0;
            }

            .landing_3_hamburger {
                display: block;
            }

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

            .landing_3_form_row {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 768px) {
            .landing_3_title {
                font-size: 2.3rem;
            }

            .landing_3_section_title {
                font-size: 2rem;
            }

            .landing_3_slide {
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .landing_3_title {
                font-size: 2rem;
            }

            .landing_3_hero_buttons {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .landing_3_button_secondary {
                margin-left: 0;
            }
            .landing_3_button_whatsapp{
                font-size: 1rem;
            }
            .landing_3_feature_title{
                font-size: 1.1rem;
            }
            .landing_3_nav{
                gap: 0.5rem;
            }
            .landing_3_slide {
                height: 300px;
            }

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

            .landing_3_product_actions {
                flex-direction: column;
            }
        }
        .landing_3_logo img {
        height: 40px;
        width: auto;
        max-width: 100%;
        display: block;
    }
    .landing_3_logo {
        display: flex;
        align-items: center;
    }

/* langing page three end ------------
----------------------------------------- */


/* langing page four start ------------
----------------------------------------- */
.landing_4_logo {
    display: flex;
    align-items: center;
}

.landing_4_logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
}

/* Header Styles */
        .landing_4_header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--landing_4_primary), var(--landing_4_primary-dark));
            color: white;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .landing_4_header.scrolled {
            padding: 0.7rem 5%;
        }
        
        .landing_4_logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .landing_4_logo img {
            height: 50px;
        }
        
        .landing_4_logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .landing_4_logo span {
            color: var(--landing_4_accent);
        }
        
        .landing_4_nav {
            display: flex;
            gap: 2rem;
        }
        
        .landing_4_nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .landing_4_nav a:hover {
            color: var(--landing_4_accent);
        }
        
        .landing_4_nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--landing_4_accent);
            transition: width 0.3s ease;
        }
        
        .landing_4_nav a:hover::after {
            width: 100%;
        }
        
        .landing_4_hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
        }
        
        .landing_4_drawer {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: linear-gradient(135deg, var(--landing_4_primary), var(--landing_4_primary-dark));
            z-index: 2000;
            padding: 2rem;
            transition: right 0.4s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        
        .landing_4_drawer.open {
            right: 0;
        }
        
        .landing_4_drawer_nav {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .landing_4_drawer_nav a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .landing_4_drawer_nav a:hover {
            color: var(--landing_4_accent);
        }
        
        .landing_4_drawer_close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .landing_4_hero {
            display: flex;
            min-height: 100vh;
            padding: 7rem 5% 5rem;
            align-items: center;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1505576633757-0ac1084af824?q=80&w=2070') center/cover no-repeat;
        }
        
        .landing_4_hero_content {
            flex: 1;
            padding-right: 2rem;
        }
        
        .landing_4_hero h2 {
            font-size: 3.5rem;
            color: var(--landing_4_primary-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .landing_4_hero h3 {
            font-size: 1.8rem;
            color: var(--landing_4_primary);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .landing_4_hero p {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            color: #444;
            max-width: 600px;
        }
        
        .landing_4_hero_benefits {
            margin: 2rem 0;
        }
        
        .landing_4_hero_benefits li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        
        .landing_4_hero_benefits i {
            color: var(--landing_4_primary);
            background: #e8f5e9;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .landing_4_hero_actions {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .landing_4_cta_btn {
            background: linear-gradient(135deg, var(--landing_4_primary), var(--landing_4_primary-dark));
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
            border: 1px solid yellow;
        }
        
        .landing_4_cta_btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 7px 20px rgba(46, 125, 50, 0.5);
        }
        
        .landing_4_whatsapp_btn {
            background: #25d366;
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        }
        
        .landing_4_whatsapp_btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 7px 20px rgba(37, 211, 102, 0.5);
        }
        
        .landing_4_hero_image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .landing_4_hero_image img {
            max-width: 100%;
            max-height: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .landing_4_product_badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--landing_4_accent);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Product Details */
        .landing_4_product_details {
            background: linear-gradient(135deg, var(--landing_4_primary), var(--landing_4_primary-dark));
            color: white;
            padding: 5rem 5%;
            text-align: center;
        }
        
        .landing_4_product_details h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .landing_4_benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .landing_4_benefit {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .landing_4_benefit:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }
        
        .landing_4_benefit i {
            font-size: 3rem;
            color: var(--landing_4_accent);
            margin-bottom: 1.5rem;
        }
        
        .landing_4_benefit h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .landing_4_benefit p {
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        /* Slider Section */
        .landing_4_product_slider {
            padding: 5rem 5%;
            text-align: center;
        }
        
        .landing_4_section_title {
            font-size: 2.5rem;
            color: var(--landing_4_primary-dark);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .landing_4_slider_container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .landing_4_slider_wrapper {
            overflow: hidden;
            cursor: grab;
        }
        
        .landing_4_slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .landing_4_slider_item {
            min-width: calc(33.333% - 30px);
            margin: 0 15px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .landing_4_slider_item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .landing_4_slider_item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .landing_4_slider_nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .landing_4_slider_nav:hover {
            background: var(--landing_4_primary);
            color: white;
        }
        
        .landing_4_slider_prev {
            left: 0;
        }
        
        .landing_4_slider_next {
            right: 0;
        }
        
        .landing_4_slider_dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }
        
        .landing_4_slider_dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .landing_4_slider_dot.active {
            background: var(--landing_4_primary);
            transform: scale(1.2);
        }
        
        /* Ingredients Section */
        .landing_4_ingredients {
            padding: 5rem 5%;
            background: #f0f9f0;
        }
        
        .landing_4_ingredients_container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .landing_4_ingredient {
            text-align: center;
            width: 150px;
        }
        
        .landing_4_ingredient_img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem;
            border: 3px solid var(--landing_4_primary-light);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .landing_4_ingredient_img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .landing_4_ingredient h3 {
            font-size: 1.1rem;
            color: var(--landing_4_primary-dark);
        }
        
        /* Instructions Section */
        .landing_4_usage_instructions {
            padding: 5rem 5%;
        }
        
        .landing_4_cards {
            display: flex;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .landing_4_card {
            flex: 1;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .landing_4_card_header {
            background: linear-gradient(135deg, var(--landing_4_primary), var(--landing_4_primary-dark));
            color: white;
            padding: 1.5rem;
            text-align: center;
            font-size: 1.5rem;
        }
        
        .landing_4_card_content {
            padding: 2rem;
        }
        
        .landing_4_card_content ul {
            list-style: none;
        }
        
        .landing_4_card_content li {
            margin-bottom: 1rem;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
        }
        
        .landing_4_card_content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--landing_4_primary);
            font-weight: bold;
        }
        
        /* Testimonials */
        .landing_4_testimonials {
            padding: 5rem 5%;
            background: #f0f9f0;
        }
        
        .landing_4_testimonial_container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .landing_4_testimonial_row {
            margin-bottom: 3rem;
            overflow: hidden;
        }
        
        .landing_4_testimonial_wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .landing_4_review_card {
            min-width: calc(33.333% - 20px);
            margin: 0 10px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .landing_4_review_card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        
        /* Offer Section */
        .landing_4_offer_section {
            padding: 5rem 5%;
            background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1606787947360-4181fe0ab58c?q=80&w=2070') center/cover;
            color: white;
            text-align: center;
        }
        
        .landing_4_offer_content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .landing_4_pricing {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .landing_4_original_price {
            font-size: 2rem;
            text-decoration: line-through;
            opacity: 0.7;
        }
        
        .landing_4_discounted_price {
            font-size: 3rem;
            font-weight: 700;
        }
        
        .landing_4_offer_gift {
            background: rgba(255,255,255,0.2);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem auto;
            max-width: 500px;
            font-size: 1.3rem;
        }
        
        /* Checkout Form */
        .landing_4_checkout_form {
            padding: 5rem 5%;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .landing_4_form_container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .landing_4_form_header {
            background: linear-gradient(135deg, var(--landing_4_primary), var(--landing_4_primary-dark));
            color: white;
            padding: 1.5rem;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .landing_4_form_content {
            padding: 2rem;
        }
        
        .landing_4_form_group {
            margin-bottom: 1.5rem;
        }
        
        .landing_4_form_group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #555;
        }
        
        .landing_4_input {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .landing_4_input:focus {
            border-color: var(--landing_4_primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
        }
        
        .landing_4_input.error {
            border-color: #e53935;
        }
        
        .landing_4_error {
            color: #e53935;
            font-size: 0.9rem;
            margin-top: 0.3rem;
            display: none;
        }
        
        .landing_4_product_selection {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .landing_4_product_select {
            flex: 1;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .landing_4_quantity_control {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .landing_4_quantity_btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--landing_4_primary-light);
            color: white;
            border: none;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .landing_4_quantity_btn:hover {
            background: var(--landing_4_primary);
        }
        
        .landing_4_quantity_input {
            width: 60px;
            text-align: center;
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1.1rem;
        }
        
        .landing_4_total_price {
            text-align: right;
            font-size: 1.3rem;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        
        .landing_4_total_price span {
            color: var(--landing_4_primary);
            font-weight: 700;
        }
        
        .landing_4_submit_btn {
            background: linear-gradient(135deg, var(--landing_4_primary), var(--landing_4_primary-dark));
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
        }
        
        .landing_4_submit_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(46, 125, 50, 0.5);
        }
        
        /* Footer */
        .landing_4_footer {
            background: var(--landing_4_primary-dark);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }
        
        .landing_4_footer_content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .landing_4_footer_contact {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .landing_4_footer_contact i {
            margin-right: 10px;
        }
        
        .landing_4_copyright {
            opacity: 0.8;
        }
        
        /* Fixed WhatsApp Button */
        .landing_4_fixed_whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 100;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .landing_4_fixed_whatsapp:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .cw{
            color: white;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .landing_4_hero {
                flex-direction: column;
                text-align: center;
            }
            
            .landing_4_hero_content {
                padding-right: 0;
                margin-bottom: 3rem;
            }
            
            .landing_4_hero_benefits {
                display: inline-block;
                text-align: left;
            }
            
            .landing_4_hero_actions {
                justify-content: center;
            }
            
            .landing_4_slider_item {
                min-width: calc(50% - 30px);
            }
            
            .landing_4_cards {
                flex-direction: column;
            }
            
            .landing_4_review_card {
                min-width: calc(100% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .landing_4_nav {
                display: none;
            }
            
            .landing_4_hamburger {
                display: block;
            }
            
            .landing_4_hero h2 {
                font-size: 2.5rem;
            }
            
            .landing_4_hero h3 {
                font-size: 1.5rem;
            }
            
            .landing_4_slider_item {
                min-width: calc(100% - 30px);
            }
            
            .landing_4_hero_actions {
                flex-direction: column;
                align-items: center;
            }
            
            .landing_4_product_selection {
                flex-direction: column;
            }
            .landing_4_slider_container{
                padding: 0;
            }
            .landing_4_product_slider {
                padding: 2rem 0%;
            }
            .landing_4_slider_nav{
                height: 30px;
                width: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .landing_4_product_details h2{
                font-size: 1.5rem;
            }
            .landing_4_hero h2 {
                font-size: 2rem;
            }
            
            .landing_4_section_title {
                font-size: 2rem;
            }
            .landing_4_fixed_whatsapp{
                height: 45px;
                width: 45px;
                font-size: 1.5rem;
            }
            .landing_4_discounted_price{
                font-size: 2rem;
            }
        }
/* langing page four end ------------
----------------------------------------- */
/* langing page five start ------------
----------------------------------------- */

.landing_5_container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .landing_5_header {
            background-color: var(--landing_5_white);
            box-shadow: var(--landing_5_shadow);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }

        .landing_5_header_container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .landing_5_logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--landing_5_red);
        }

        .landing_5_nav {
            display: flex;
            gap: 30px;
        }

        .landing_5_nav_link {
            text-decoration: none;
            color: var(--landing_5_black);
            font-weight: 600;
            font-size: 18px;
            transition: var(--landing_5_transition);
        }

        .landing_5_nav_link:hover {
            color: var(--landing_5_red);
        }

        .landing_5_menu_btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--landing_5_black);
        }

        /* Mobile Navigation */
        .landing_5_mobile_nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background: var(--landing_5_white);
            z-index: 2000;
            transition: var(--landing_5_transition);
            padding: 20px;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .landing_5_mobile_nav.active {
            left: 0;
        }

        .landing_5_mobile_nav_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .landing_5_mobile_nav_close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--landing_5_black);
        }

        .landing_5_mobile_nav_links {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .landing_5_overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--landing_5_overlay);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: var(--landing_5_transition);
        }

        .landing_5_overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Common Section Styles */
        .landing_5_section {
            padding: 100px 0;
        }

        .landing_5_section_title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }

        .landing_5_section_title span {
            color: var(--landing_5_red);
        }

        .landing_5_section_subtitle {
            font-size: 20px;
            text-align: center;
            margin-bottom: 50px;
            color: #666;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .landing_5_btn {
            display: inline-block;
            background-color: var(--landing_5_red);
            color: var(--landing_5_white);
            padding: 15px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            border: none;
            cursor: pointer;
            transition: var(--landing_5_transition);
            box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
        }

        .landing_5_btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(227, 6, 19, 0.4);
            background: var(--landing_5_red-hover);
        }

        /* Hero Section */
        .landing_5_hero {
            background: linear-gradient(rgba(255, 245, 220, 0.8), rgba(255, 245, 220, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f5e6c8"/><path d="M0,50 Q50,30 100,50 L100,100 L0,100 Z" fill="%23e8d4b0"/></svg>');
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
            background-size: cover;
            background-position: center;
        }

        .landing_5_hero_content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .landing_5_hero_title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .landing_5_hero_image {
            margin: 40px auto;
            display: block;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
        }

        .landing_5_hero_caption {
            color: #666;
            font-size: 18px;
            margin-top: 10px;
        }

        /* Ingredients Section */
        .landing_5_ingredients {
            background-color: var(--landing_5_yellow);
            padding: 80px 0;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="2" fill="rgba(0,0,0,0.1)"/></svg>');
        }

        .landing_5_ingredients_grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .landing_5_ingredient_item {
            text-align: center;
        }

        .landing_5_ingredient_circle {
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--landing_5_shadow);
            overflow: hidden;
            transition: var(--landing_5_transition);
        }

        .landing_5_ingredient_circle:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .landing_5_ingredient_circle img {
            max-width: 80%;
            max-height: 80%;
        }

        .landing_5_ingredient_name {
            font-size: 22px;
            font-weight: 600;
        }

        /* Benefits Section */
        .landing_5_benefits {
            background-color: var(--landing_5_white);
        }

        .landing_5_benefits_card {
            background-color: var(--landing_5_white);
            border-radius: 15px;
            box-shadow: var(--landing_5_shadow);
            padding: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .landing_5_benefits_list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .landing_5_benefit_item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            font-size: 18px;
        }

        .landing_5_benefit_icon {
            color: var(--landing_5_red);
            font-size: 24px;
            min-width: 30px;
        }

        /* Preparation Steps */
        .landing_5_preparation {
            background-color: var(--landing_5_gray-bg);
        }

        .landing_5_preparation_content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .landing_5_preparation_image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--landing_5_shadow);
        }

        .landing_5_preparation_steps {
            flex: 1;
        }

        .landing_5_step_list {
            list-style: none;
            margin-bottom: 30px;
        }

        .landing_5_step_item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 18px;
        }

        .landing_5_step_number {
            background-color: var(--landing_5_red);
            color: var(--landing_5_white);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .landing_5_btn_wrapper {
            text-align: center;
            margin-top: 30px;
        }

        /* Why Choose Us */
        .landing_5_why_choose {
            background-color: var(--landing_5_gray-bg);
        }

        .landing_5_why_choose_content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .landing_5_why_choose_list {
            flex: 1;
        }

        .landing_5_why_choose_image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--landing_5_shadow);
        }

        .landing_5_why_choose_item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 18px;
        }

        /* Pricing Section */
        .landing_5_pricing {
            background-color: var(--landing_5_white);
        }

        .landing_5_pricing_container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .landing_5_price_display {
            margin-bottom: 30px;
        }

        .landing_5_old_price {
            font-size: 28px;
            color: #999;
            text-decoration: line-through;
            margin-right: 15px;
        }

        .landing_5_new_price {
            font-size: 48px;
            color: var(--landing_5_accent-red);
            font-weight: 700;
        }

        .landing_5_weight_options {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .landing_5_weight_option {
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 20px 30px;
            cursor: pointer;
            transition: var(--landing_5_transition);
            min-width: 180px;
        }

        .landing_5_weight_option:hover,
        .landing_5_weight_option.active {
            border-color: var(--landing_5_red);
            background-color: rgba(227, 6, 19, 0.05);
            box-shadow: 0 5px 15px rgba(227, 6, 19, 0.1);
        }

        .landing_5_weight_name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .landing_5_weight_price {
            font-size: 22px;
            font-weight: 700;
            color: var(--landing_5_red);
        }

        .landing_5_offer_note {
            color: var(--landing_5_red);
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 30px;
        }



        /* Footer */
        .landing_5_footer {
            background-color: #333;
            color: var(--landing_5_white);
            padding: 30px 0;
            text-align: center;
        }

        .landing_5_footer_container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .landing_5_footer_left {
            text-align: left;
        }

        .landing_5_footer_right {
            text-align: right;
        }

        .landing_5_footer_link {
            color: var(--landing_5_white);
            text-decoration: none;
            font-weight: 600;
            transition: var(--landing_5_transition);
        }

        .landing_5_footer_link:hover {
            color: var(--landing_5_yellow);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .landing_5_hero_title {
                font-size: 40px;
            }

            .landing_5_ingredients_grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .landing_5_preparation_content,
            .landing_5_why_choose_content {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .landing_5_nav {
                display: none;
            }

            .landing_5_menu_btn {
                display: block;
            }

            .landing_5_hero {
                padding: 150px 0 80px;
            }

            .landing_5_hero_title {
                font-size: 32px;
            }

            .landing_5_section {
                padding: 70px 0;
            }

            .landing_5_section_title {
                font-size: 30px;
            }

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

            .landing_5_preparation_content,
            .landing_5_why_choose_content {
                flex-direction: column;
            }

            .landing_5_preparation_image,
            .landing_5_why_choose_image {
                order: -1;
            }

            .landing_5_weight_options {
                flex-direction: row;
                align-items: center;
            }

            .landing_5_product_selection {
                flex-direction: column;
                text-align: center;
            }

            .landing_5_product_price {
                text-align: center;
                margin-top: 15px;
            }

            .landing_5_footer_container {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .landing_5_footer_left,
            .landing_5_footer_right {
                text-align: center;
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .landing_5_hero_title {
                font-size: 28px;
            }

            .landing_5_section_title {
                font-size: 26px;
            }

            .landing_5_section_subtitle {
                font-size: 18px;
            }

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

            .landing_5_form_container {
                padding: 25px;
            }
        }
            /* Basic section wrapper */
    .landing_5_order_form{
      background: linear-gradient(180deg, #fff 0%, #fff9f9 100%);
      display: flex;
      justify-content: center;
    }

    .landing_5_form_container{
      background: var(--landing_5_white);
      border-radius: 18px;
      box-shadow: var(--box-shadow);
      overflow: hidden;
      padding: 28px;
      border: 2px solid var(--landing_5_red);
    }

    .landing_5_form_title{
      text-align: center;
      margin-bottom: 18px;
      font-size: 28px;
      color: #222;
      font-weight: 800;
      letter-spacing: 0.2px;
    }

    .landing_5_form_title span{ color: var(--landing_5_red); }

    /* Products grid (compact two-column) */
    .landing_5_products_grid{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 20px;
    }

    .landing_5_product_card{
      display: flex;
      gap: 12px;
      align-items: center;
      background: linear-gradient(180deg,#fff,#fff8f8);
      border-radius: 12px;
      padding: 10px;
      border: 1px solid #ffecec;
      box-shadow: var(--small-shadow);
      min-height: 86px;
      transition: transform var(--landing_5_transition), box-shadow var(--landing_5_transition);
    }

    .landing_5_product_card:hover{
      transform: translateY(-4px);
      box-shadow: 0 10px 22px rgba(227,6,19,0.08);
    }

    .landing_5_product_thumbnail{
      width: 84px;
      height: 84px;
      min-width: 84px;
      border-radius: 10px;
      overflow: hidden;
      background: linear-gradient(135deg,#fff8f5,#fff);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.04);
    }

    .landing_5_product_thumbnail img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      vertical-align: middle;
    }

    .landing_5_product_body{
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .landing_5_product_name{
      font-size: 15px;
      font-weight: 700;
      color: #222;
      line-height: 1.1;
    }

    .landing_5_product_meta{
      font-size: 13px;
      color: #666;
    }

    .landing_5_product_controls{
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
      justify-content: flex-start;
    }

    .landing_5_quantity_btn{
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: var(--landing_5_red);
      color: #fff;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      transition: transform var(--landing_5_transition);
    }

    .landing_5_quantity_btn:active{ transform: scale(.98); }

    .landing_5_quantity_input{
      width: 56px;
      height: 34px;
      border-radius: 8px;
      border: 1px solid #eee;
      text-align: center;
      font-weight: 700;
      font-size: 14px;
      background: #fff;
    }

    .landing_5_product_price{
      font-weight: 800;
      color: var(--landing_5_red);
      font-size: 16px;
      min-width: 90px;
      text-align: left;
    }

    /* Order container: form + summary */
    .landing_5_order_container{
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 18px;
      align-items: start;
    }

    @media (max-width: 1024px){
      .landing_5_order_container{ grid-template-columns: 1fr 320px; }
    }

    @media (max-width: 880px){
      .landing_5_products_grid{ grid-template-columns: 1fr; }
      .landing_5_order_container{ 
        grid-template-columns: 1fr; 
    }
    }

    /* left form column */
    .landing_5_form_column{
      padding: 6px 2px;
      max-width: 94%;
    }

    .landing_5_section_title{
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #333;
    }

    .landing_5_form_group{
      margin-bottom: 14px;
    }

    .landing_5_form_label{
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #444;
      font-size: 14px;
    }

    .landing_5_form_input{
      width: 100%;
      padding: 12px 14px;
      border-radius: 10px;
      border: 1px solid #eee;
      font-size: 14px;
    }

    .landing_5_form_input:focus{
      outline: none;
      border-color: var(--landing_5_red);
      box-shadow: 0 0 0 4px rgba(227,6,19,0.06);
    }

    /* right summary column */
    .landing_5_order_summary{
      background: #fff;
      border-radius: 12px;
      padding: 18px;
      border: 1px solid #f2eaea;
      box-shadow: 0 6px 18px rgba(0,0,0,0.03);
    }

    .landing_5_summary_title{
      text-align: center;
      color: var(--landing_5_red);
      font-weight: 800;
      margin-bottom: 12px;
      font-size: 18px;
    }

    .landing_5_items_container{
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 12px;
    }

    .landing_5_summary_item{
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      padding: 8px;
      border-radius: 8px;
      background: #fffafa;
      border: 1px solid #fff0f0;
      font-size: 14px;
    }

    .landing_5_summary_item .label{
      font-weight: 600;
      color: #333;
    }

    .landing_5_summary_item .value{
      font-weight: 700;
      color: #222;
    }

    .landing_5_summary_row{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
    }

    .landing_5_summary_row:last-child{ border-bottom: none; }

    .landing_5_summary_label{ color: #666; font-weight: 600; }
    .landing_5_summary_value{ font-weight: 800; color: var(--landing_5_red); }

    .landing_5_cod_text{
      margin-top: 14px;
      padding: 12px;
      border-radius: 10px;
      background: #fff3f3;
      border: 1px solid #ffdfdf;
      color: #444;
      font-weight: 600;
      font-size: 13px;
      line-height: 1.4;
      text-align: center;
    }

    .landing_5_btn_block{
      display: inline-block;
      width: 100%;
      text-align: center;
      border: none;
      padding: 14px 16px;
      margin-top: 14px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      background: var(--landing_5_red);
      cursor: pointer;
      transition: transform var(--landing_5_transition), box-shadow var(--landing_5_transition);
    }

    .landing_5_btn_block:hover{
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(227,6,19,0.12);
      background: var(--landing_5_red-hover);
    }

    .landing_5_contact{
      text-align: center;
      margin-top: 12px;
      font-size: 14px;
    }

    .landing_5_contact_number{
      color: var(--accent);
      font-weight: 800;
      text-decoration: none;
      margin-top: 6px;
      display: inline-block;
    }

    /* small screens adjustments */
    @media (max-width: 480px){
        .landing_5_container{
            padding: 0 5px;
        }
        .landing_5_form_container{
            padding: 10px;
        }
        .landing_5_hero_content {
            padding: 10px;
        }
      .landing_5_products_grid{ 
        grid-template-columns: 1fr;
         gap: 10px; 
        }
      .landing_5_form_title{ 
        font-size: 20px;
     }
      .landing_5_product_price{ 
        font-size: 15px;
        min-width: 70px; }
      .landing_5_product_thumbnail{ 
        width: 70px; 
        height: 70px; 
        min-width: 70px; }
    }

    /* utility for hidden (visually) but accessible labels */
    .sr-only{ 
        position: absolute !important; 
        width: 1px; height: 1px; padding: 0; 
        margin: -1px; overflow: hidden; 
        clip: rect(0,0,0,0); 
        white-space: nowrap; 
        border: 0; 
    }
/* langing page five end ------------
----------------------------------------- */