
.add-to-cart-button {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #f4f4f4, #ddd);
  border-radius: 40px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  padding: 10px 20px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease;
  /* box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2); */
  /* background-color: rgb(222, 135, 135); */
    /* background: linear-gradient(to right, rgb(199, 109, 93), #2f4c85); */
    /* background-color:hsla(160, 5%, 60%, 0.5); */

}

.add-to-cart-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(to bottom, #f4f4f4, #ddd);
}

.icon-circle-cart1 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /* background: linear-gradient(to bottom, #054877, #b61000); */
  /* background-color: #054877; */
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  /* box-shadow: inset 0 1px 2px rgba(255,255,255,0.6), 0 2px 4px rgba(0,0,0,0.1); */
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);

 
  
}

.icon-circle-cart2 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /* background: linear-gradient(to bottom, #b61000, #054877); */
  /* background-color: #054877; */
  background-color: rgb(255, 255, 255);

  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.6), 0 2px 4px rgba(187, 155, 155, 0.1);
   box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);

}




.icon-circle-cart1 i {
  color: white;
  font-size: 20px;
  

}

.icon-circle-cart2 i {
  color: white;
  font-size: 20px;
}


.text {
  font-size: 18px;
  color:black;
  font-weight: 500;
  
   /* text-shadow: 1px 1px 0  #cee9ff, 1px 2px 0  #cee9ff, 1px 3px 0  #cee9ff, 1px 4px 0  #cee9ff; */

}








        input[type="radio"] {
            display: none;
        }

        input[type="radio"]:not(:disabled) ~ label {
            cursor: pointer;
        }

        input[type="radio"]:disabled ~ label {
            color: hsla(150, 5%, 75%, 1);
            border-color: hsla(150, 5%, 75%, 1);
            box-shadow: none;
            cursor: not-allowed;
        }

        .radioLabel {
            padding-top: 10px;
            height: 70%;
            display: block;
            background: white;
            /* border: 2px solid rgba(72, 85, 230, 0.399); */
            border-radius: 20px;
            padding: 1rem;
            margin-bottom: 1rem;
            text-align: center;
            box-shadow: 0px 3px 10px -2px hsla(150, 5%, 65%, 0.5);
            position: relative;
            transition: all 0.3s ease;
        }

        input[type="radio"]:checked + label {
            background: #054877;
            color: hsla(215, 0%, 100%, 1);
            /* box-shadow: 0px 0px 20px rgba(72, 85, 230, 0.817);; */
            padding-top:25px;
           width:auto;
          
            
        }

        input[type="radio"]:checked + label::after {
            
            color: rgba(102, 126, 234, 0.4);
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            border: 2px solid #b41801;
            content: "\f00c";
            font-size: 15px;
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            height: 50px;
            width: 50px;
            line-height: 50px;
            text-align: center;
            border-radius: 50%;
            background: #b41801;
            color:white;
            box-shadow: 0px 2px 5px -2px hsla(0, 0%, 0%, 0.25);
        }

        input[type="radio"]#control_05:checked + label {
            background: red;
            border-color: red;
        }


  .radio-row {
      padding:5px;
    display: flex;
    gap: 1rem; /* space between the radio buttons */
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    margin-top: 5px;;
  }
        

.logo-text1{
    color:#b61000 ;
}
.logo-text2{
    color:  rgb(11,172,140);
}
.logo-text3{
    color: #b41801;
}
.logo-text4{
    color: #014d7f;
}

    
/* Common style for checked radio labels */
input[type="radio"]:checked + label {
    color: white;
    padding-top: 25px;
    width: auto;
}

/* ARAPROJECT style */
input[type="radio"]#control_01:checked + label {
    background: #054877; /* Dark Blue */
}

/* ARABOOKS style */
input[type="radio"]#control_02:checked + label {
    background: rgb(11,172,140); /* Deep Red */
}







        /* MOBILE-OPTIMIZED RADIO ROW */
        .radio-row {
            display: flex;
            flex-direction: column; /* Stack vertically on mobile by default */
            gap: 1rem;
            justify-content: center;
            align-items: stretch; /* Full width items */
            margin-top: 5px;
            padding: 5px;
        }

        /* Desktop view - horizontal layout */
        @media (min-width: 768px) {
            .radio-row {
                flex-direction: row;
                align-items: center;
            }
            
            .radioLabel {
                flex: 1; /* Equal width distribution */
            }
        }

        /* Specific brand colors */
        .logo-text1 { color: #b61000; }
        .logo-text2 { color: rgb(11,172,140); }
        .logo-text3 { color: #b41801; }
        .logo-text4 { color: #014d7f; }

        /* ARAPROJECT style */
        input[type="radio"]#control_01:checked + label {
            background: #054877;
        }

        /* ARABOOKS style */
        input[type="radio"]#control_02:checked + label {
            background: rgb(11,172,140);
        }

        /* Red option style */
        input[type="radio"]#control_05:checked + label {
            background: red;
            border-color: red;
        }

        /* ADDITIONAL MOBILE OPTIMIZATIONS */
        
        /* Larger touch targets on mobile */
        @media (max-width: 767px) {
            .radioLabel {
                min-height: 80px; /* Larger touch target on mobile */
                padding: 1.5rem;
                font-size: 16px; /* Prevent zoom on iOS */
            }
            
            /* Ensure checkmark is properly positioned on mobile */
            input[type="radio"]:checked + label::after {
                top: -30px;
                height: 60px;
                width: 60px;
                line-height: 60px;
                font-size: 18px;
            }
            
            input[type="radio"]:checked + label {
                padding-top: 35px;
            }
        }

        /* Hover effects only on desktop */
        @media (hover: hover) {
            .radioLabel:hover {
                transform: translateY(-2px);
                box-shadow: 0px 5px 15px -2px hsla(150, 5%, 65%, 0.3);
            }
        }

        /* Focus styles for accessibility */
        input[type="radio"]:focus + label {
            outline: 2px solid #054877;
            outline-offset: 2px;
        }









/* style for arasoft and arabook styles  */

.add-to-cart-button {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #f4f4f4, #ddd);
  border-radius: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  padding: 10px 20px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-wrap: wrap;
}

.add-to-cart-button:hover {
  transform: translateY(-2px);
}

.icon-circle-cart1,
.icon-circle-cart2 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1),
              0 0 0 1px rgba(255, 255, 255, 0.2);
}

.text {
  font-size: 18px;
  color: black;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .aux-modern-button-wrapper {
    justify-content: center;
    margin-bottom: 10px;
  }

  .add-to-cart-button {
    justify-content: center;
  }
}





/* ////////////////  nav sub menu styles //////////////// */

/* Hide all submenus by default with smooth transitions */
.aux-master-menu .sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  /* left: 0; */
  left: -417px;
  background-color: #ffffff;
  /* background: linear-gradient(45deg, #054877, #b61000); */
  /* background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 50%, #8b4513 100%); */
  box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 4px 10px rgba(139, 69, 19, 0.1);
  z-index: 9999;
  padding: 15px 20px;
  min-width: 220px;
  border-radius: 12px;
  /* border: 2px solid rgba(139, 69, 19, 0.3); */
  /* Animation properties */
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  
}

/* Parent should be positioned relatively */
.aux-master-menu li {
  position: relative;
}

/* Show submenu on hover with smooth animation */
.aux-master-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}

/* Style submenu container with subtle inner shadow */
.aux-master-menu .sub-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 440px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #2c5aa0;
  z-index: 1;
}

/* Style individual submenu items */
.aux-master-menu .sub-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.aux-master-menu .sub-menu li:last-child {
  border-bottom: none;
}

/* Style submenu links */
.aux-master-menu .sub-menu li a {
  display: block;
  padding: 12px 25px;
  white-space: nowrap;
  color: #313030;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  /* margin: 2px 8px; */
  margin: 2px -22px;

}

/* Hover effect for submenu links */
.aux-master-menu .sub-menu li a:hover {
  background: linear-gradient(45deg, #b61000 , #054877);
  color: #fff;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Add a subtle glow effect */
.aux-master-menu .sub-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #f4f4f4;
  /* background: linear-gradient(135deg, #054877, #b61000); */
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.aux-master-menu .sub-menu li a:hover::before {
  transform: scaleY(1);
}

/* Staggered animation for menu items */
.aux-master-menu li:hover .sub-menu li {
  animation: slideInFromLeft 0.4s ease forwards;
}

.aux-master-menu li:hover .sub-menu li:nth-child(1) { animation-delay: 0.1s; }
.aux-master-menu li:hover .sub-menu li:nth-child(2) { animation-delay: 0.2s; }
.aux-master-menu li:hover .sub-menu li:nth-child(3) { animation-delay: 0.3s; }
.aux-master-menu li:hover .sub-menu li:nth-child(4) { animation-delay: 0.4s; }
.aux-master-menu li:hover .sub-menu li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add a subtle pulse effect to the main menu item when hovered */
.aux-master-menu li:hover > .aux-item-content {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .aux-master-menu .sub-menu {
    min-width: 180px;
    left: -50px;
  }
  
  .aux-master-menu .sub-menu li a {
    padding: 10px 20px;
    font-size: 14px;
  }
}



/* style for  text style  */

.aux-modern-heading-description {
  text-align: center;
  padding: 1rem 2rem;
  /* background: linear-gradient(45deg, #b61000 , #054877); */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(235, 156, 156, 0.05);
  max-width: 500px;
  /* margin: 0 auto; */
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #054877;
  line-height: 1.8;
  padding-left:10ox;
}

.feature-list span {
  background: #ffffff;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  transition: background 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-list span:hover {
  background: rgb(237, 249, 255);
  color:#077705;
}

 .navbar {
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .main-menu {
            display: flex;
            list-style: none;
            align-items: center;
        }

        /* Menu Item Styling */
        .menu-item {
            position: relative;
        }

        .aux-item-content {
            display: block;
            padding: 20px 25px;
            color: #666;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .aux-item-content:hover,
        .menu-item.active .aux-item-content {
            color: #714B67;
        }

        .aux-menu-label {
            font-size: 16px;
        }

        /* Odoo-style Large Dropdown */
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 50px;
            background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 8px;
            padding: 30px;
            min-width: 800px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            list-style: none;
            z-index: 1000;
        }

        .menu-item.active .sub-menu,
        .menu-item:hover .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Grid Layout for Dropdown Content */
        .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }

        .dropdown-section {
            min-width: 180px;
        }

        .section-title {
            font-weight: 600;
            font-size: 14px;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Color coding for sections */
        .section-title.accounting { color: #17a2b8; }
        .section-title.project { color: #dc3545; }
        .section-title.business { color: #6f42c1; }
        .section-title.tools { color: #fd7e14; }

        .section-items {
            list-style: none;
        }

        .section-items li {
            margin-bottom: 8px;
        }

        .section-items a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
            display: block;
            padding: 4px 0;
        }

        .section-items a:hover {
            color: #714B67;
        }

        /* Simple dropdown for smaller menus */
        .simple-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 8px;
            padding: 15px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            list-style: none;
            z-index: 1000;
        }

        .menu-item.active .simple-dropdown,
        .menu-item:hover .simple-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .simple-dropdown li {
            margin: 0;
        }

        .simple-dropdown a {
            display: block;
            padding: 12px 25px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .simple-dropdown a:hover {
            color: #714B67;
            background-color: #f8f9fa;
            border-left-color: #714B67;
        }

        /* Additional links section */
        .additional-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 20px;
            background: #f8f9fa;
            border-top: 1px solid #e9ecef;
            margin: 20px -30px -30px -30px;
            border-radius: 0 0 8px 8px;
        }

        .additional-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

        .additional-link:hover {
            color: #714B67;
        }

        .link-icon {
            width: 16px;
            height: 16px;
            background: #666;
            border-radius: 50%;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .main-menu {
                flex-direction: column;
                align-items: stretch;
            }
            
            .sub-menu, .simple-dropdown {
                min-width: 300px;
                left: -100px;
            }
            
            .dropdown-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }

        /* Demo Content */
        .demo-content {
            padding: 40px 20px;
            text-align: center;
            color: #666;
        }

        .demo-content h2 {
            margin-bottom: 10px;
            color: #333;
        }






        /* //////////////////////////////////// */








        


.aux-master-menu .sub-menu-simple {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  /* left: -417px; */
  background-color: #ffffff;
  /* background: linear-gradient(45deg, #054877, #b61000); */
  /* background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 50%, #8b4513 100%); */
  box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 4px 10px rgba(139, 69, 19, 0.1);
  z-index: 9999;
  padding: 15px 20px;
  min-width: 220px;
  border-radius: 12px;
  /* border: 2px solid rgba(139, 69, 19, 0.3); */
  /* Animation properties */
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  
}

/* Parent should be positioned relatively */
.aux-master-menu li {
  position: relative;
}

/* Show submenu on hover with smooth animation */
.aux-master-menu li:hover > .sub-menu-simple {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}

/* Style submenu container with subtle inner shadow */
.aux-master-menu .sub-menu-simple::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #2c5aa0;
  z-index: 1;
}

/* Style individual submenu items */
.aux-master-menu .sub-menu-simple li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.aux-master-menu .sub-menu-simple li:last-child {
  border-bottom: none;
}

/* Style submenu links */
.aux-master-menu .sub-menu-simple li a {
  display: block;
  padding: 12px 25px;
  white-space: nowrap;
  color: #313030;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 2px 8px;
}

/* Hover effect for submenu links */
.aux-master-menu .sub-menu-simple li a:hover {
  background: linear-gradient(45deg, #b61000 , #054877);
  color: #fff;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Add a subtle glow effect */
.aux-master-menu .sub-menu-simple li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #f4f4f4;
  /* background: linear-gradient(135deg, #054877, #b61000); */
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.aux-master-menu .sub-menu-simple li a:hover::before {
  transform: scaleY(1);
}

/* Staggered animation for menu items */
.aux-master-menu li:hover .sub-menu-simple li {
  animation: slideInFromLeft 0.4s ease forwards;
}

.aux-master-menu li:hover .sub-menu-simple li:nth-child(1) { animation-delay: 0.1s; }
.aux-master-menu li:hover .sub-menu-simple li:nth-child(2) { animation-delay: 0.2s; }
.aux-master-menu li:hover .sub-menu-simple li:nth-child(3) { animation-delay: 0.3s; }
.aux-master-menu li:hover .sub-menu-simple-simple li:nth-child(4) { animation-delay: 0.4s; }
.aux-master-menu li:hover .sub-menu-simple li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add a subtle pulse effect to the main menu item when hovered */
.aux-master-menu li:hover > .aux-item-content {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .aux-master-menu .sub-menu-simple {
    min-width: 180px;
    left: -50px;
  }
  
  .aux-master-menu .sub-menu-simple li a {
    padding: 10px 20px;
    font-size: 14px;
  }
}



/* style for  text style  */

.aux-modern-heading-description {
  text-align: center;
  padding: 1rem 2rem;
  /* background: linear-gradient(45deg, #b61000 , #054877); */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(235, 156, 156, 0.05);
  max-width: 500px;
  /* margin: 0 auto; */
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #054877;
  line-height: 1.8;
  padding-left:10ox;
}

.feature-list span {
  background: #ffffff;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  transition: background 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-list span:hover {
  background: rgb(237, 249, 255);
  color:#077705;
}
 .navbar {
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .main-menu {
            display: flex;
            list-style: none;
            align-items: center;
        }

        /* Menu Item Styling */
        .menu-item {
            position: relative;
        }

        .aux-item-content {
            display: block;
            padding: 20px 25px;
            color: #666;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .aux-item-content:hover,
        .menu-item.active .aux-item-content {
            color: #714B67;
        }

        .aux-menu-label {
            font-size: 16px;
        }

        /* Odoo-style Large Dropdown */
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 50px;
            background: white;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 8px;
            padding: 30px;
            min-width: 800px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            list-style: none;
            z-index: 1000;
        }

        .menu-item.active .sub-menu-simple,
        .menu-item:hover .sub-menu-simple {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }


/* media query for responsive mobile view  */
@media (max-width: 768px) {
  .aux-elementor-header,
  .aux-overlay-header {
    /* background-color: pink;  */
    padding-bottom: 5px;
    margin-bottom:5px;
  }
  
.elementor-128 .elementor-element.elementor-element-d052931 .aux-burger .mid-line, .elementor-128 .elementor-element.elementor-element-d052931 .aux-burger:after, .elementor-128 .elementor-element.elementor-element-d052931 .aux-burger:before {
    border-color: #837d7d !important;


}
}

/* show items in mobile view  */
@media (max-width: 768px) {
  .sub-menu,
  .dropdown-container,
  .dropdown-grid,
  .dropdown-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    position: relative !important;
    z-index: 999 !important;
  }
    .sub-menu{
    background-color: #efe8e8;
    padding-left: 0px;
    margin-left: 147px;

    }
 

  .sub-menu {
    background: white;
    padding: 10px;
  }
  
}

@media (max-width: 768px) {
  /* Hide submenu by default */
  .sub-menu,
  .dropdown-container {
    display: none;
  }


/*  */


    .row {
        align-items: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
.product-container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping if absolutely needed */
  justify-content: center;
  gap: 0rem;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: -4rem;
}

.product-container > .elementor-element {
  flex: 1 1 auto;         /* Allow buttons to shrink/grow */
  max-width: 50%;         /* Two buttons per row on mobile */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

@media (max-width: 400px) {
  .product-container > .elementor-element {
    max-width: 100%; /* Stack if screen is really narrow */
  }
}


/*  */







  /* Show submenu only when mobile menu is open */
  body.aux-navigation-open .sub-menu,
  body.aux-navigation-open .dropdown-container {
    display: block;
  }
}


@media (max-width: 768px) {
  .add-to-cart-button {
    font-size: 12px !important;
    padding: 4px 8px !important;
    transform: scale(0.85);
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .icon-circle-cart1,
  .icon-circle-cart2 {
    width: 30px !important;
    height: 30px !important;
  }

  .logo-text1,
  .logo-text2,
  .logo-text3,
  .logo-text4 {
    font-size: 14px !important;
  }

  .add-to-cart-button .text {
    font-size: 12px !important;
  }
  .radio-row {
    padding: 5px;
    display: block;
  }
}
@media (max-width: 767px) {
    .elementor-126 .elementor-element.elementor-element-1087938 .aux-modern-heading-primary {
        font-size: 11px;
        padding-top: 18px;
    }
}



@media screen and (max-width: 1024px) {
    .aux-fs-popup .aux-panel-close {
        right: unset;
        left: calc(88% - 30px);
    }
}



/* redesign the logo */

/* .elementor-128 .elementor-element.elementor-element-c49eb21 .aux-has-logo img {
    width: 30%;
} */


/* subscription styles */
@media (max-width: 767px) {
    .elementor-126 .elementor-element.elementor-element-ceb4602 {
        margin-top: 80px;
        margin-bottom: 0;
    }
}

/* style for home .responsive */
@media (max-width: 1024px) {
    .elementor-126 .elementor-element.elementor-element-fbc4a2c>.elementor-element-populated {
        margin: 0;
        --e-column-margin-right: 0px;
        --e-column-margin-left: 0px;
        margin-top: 75px;
    }
}




/* style for contact form updated */


.aux-elementor-footer .aux-widget-contact-form .aux-no-gutter .wpcf7-response-output {
    background:rgb(255, 255, 255);
    color:red;
    border: 0;
    margin-left: 0;
    width: 97%;
}



@media (max-width: 1366px) {
  .goog-te-gadget .goog-te-combo {
    margin-top: 54px;
}

.elementor-128 .elementor-element.elementor-element-d052931 .aux-burger .mid-line, .elementor-128 .elementor-element.elementor-element-d052931 .aux-burger:after, .elementor-128 .elementor-element.elementor-element-d052931 .aux-burger:before {
    border-color: #837d7d !important;
    margin-left: 10px;
   
  }

/* .elementor-128 .elementor-element.elementor-element-d052931 .aux-burger .mid-line, .elementor-128 .elementor-element.elementor-element-d052931 .aux-burger:after, .elementor-128 .elementor-element.elementor-element-d052931 .aux-burger:before {
    border-color: #837d7d !important;
   
  } */
  
/* style for 3 line icon */
.aux-master-menu .sub-menu-simple {
  left: 50px;
  margin-left: 328px;
  display: inline-block;
}

.aux-master-menu .sub-menu {
   /* left: 50px; */
  margin-left: 448px;
  display: inline-block;
  /* background-color: blueviolet; */

}

/* .dropdown-section {
    min-width: 57px;
} */



.elementor-128 .elementor-element.elementor-element-d052931 .aux-menu-depth-0>.aux-item-content {
        line-height: 3.5em;
   
}
}





/* .aux-master-menu .sub-menu { */
@media (min-width: 768px) and (max-width: 1366px) {
 /* .aux-fs-popup .aux-fs-menu .aux-master-menu .menu-item .aux-item-content .aux-menu-label {
    color: #21da5b;
} */

.menu-item.active .sub-menu, .menu-item:hover .sub-menu {
    /* background-color: brown; */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* .aux-master-menu li:hover > .sub-menu {
  background-color: brown;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
} */




.menu-item.active .sub-menu, .menu-item:hover .sub-menu-simple {
    /* background-color: brown; */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* .aux-master-menu li:hover > .sub-menu-simple {
  background-color: brown;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
} */



}


@media (max-width: 768px) {
    .aux-master-menu .sub-menu {
        /* min-width: 286px;
        left: -211px; */
        min-width: 316px;
        left: -386px;
    }

.aux-master-menu .sub-menu::before {
  
  top: -8px;
  left: 200px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #2c5aa0;
  z-index: 1;
}


}





@media (max-width: 1366px) {
    .elementor-128 .elementor-element.elementor-element-d052931 .aux-menu-depth-0>.aux-item-content
 {
        line-height: 2.5em;
        left: -187px;
    }
}


.goog-te-gadget .goog-te-combo {
    height: 53px;
}



/* design for plain container  */

@media screen and (max-width: 768px) {
    
    .plans-container {
      /* background-color: brown; */
       
      padding-top: 1px;
    }

.subscribe-container {
    width: 100%;
    padding: 54px 20px;
}


    .elementor-column {
        width: 100%;
        padding-top: 0px;
    }


}
  
@media screen and (max-width: 768px) {
    .product-container {

    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0rem;
    flex-direction: row;
    margin-bottom: 0rem;
}
.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
}



}



@media screen and (max-width: 768px) {
    .elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: row;
    }
}


 @media only screen and (max-width: 767px) {
    .product-container .add-to-cart-button {
      display: none !important;
    }
  }