* {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

#app {
  min-height: calc(100vh - 266px);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.7;
}

.modal-body {
  min-height: 85vh;
}

.modal-body object {
  width: 100%;
  height: 100%;
}


.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}
.layout_padding_bottom {
  padding-bottom: 90px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.heading_container .heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.heading_container .heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 60px;
  height: 4px;
  
  border-radius: 2px;
}

.heading_container .heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 60px;
  width: 0;
  height: 3px;
  background-color: #24d278;
  opacity: 0.5;
  transition: width 0.3s ease;
}

.heading_container:hover .heading::after {
  width: calc(100% - 60px - 30px);
}

.heading_container span {
  display: none;
}

@media (max-width: 768px) {
  .heading_container .heading {
    font-size: 1.75rem;
    padding-right: 20px;
  }
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
}

.hero_side_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url(../images/hero-side-bg.png);
  background-size: cover;
  background-position: left center;
}

.hero_filter {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: grayscale(1);
}

.sub_page .hero_area {
  height: auto;
  background-size: auto;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36, 210, 120, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header_section.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.header_section .user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_section .user_option a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_section .user_option a img {
  min-width: 20px;
  height: 20px;
  margin-right: 5px;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 12px 20px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}


a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.custom_nav-container form {
  padding-top: 7px;
}

.navbar-brand {
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-brand img {
  max-height: 100px;
  transition: all 0.3s ease;
}

.header_section.scrolled .navbar-brand img {
  max-height: 50px;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  height: 70px;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 35px;
  height: 35px;
  position: relative;
  border: none;
  background: transparent;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 50px;
  width: 30px;
  height: 30px;
}

.lg_toggl-btn {
  background-color: transparent;
  border: none;
  outline: none;
  width: 56px;
  height: 40px;
  cursor: pointer;
}

.lg_toggl-btn:focus {
  outline: none;
}

.login_btn-container {
  padding-top: 30px;
}

.login_btn-container a {
  color: #24d278;
  text-transform: uppercase;
}

/*end header section*/
/* slider section */
.slider_section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Height of header */
}

.hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: center;
}

.hero_side_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url(../images/hero-side-bg.png);
  background-size: cover;
  background-position: left center;
}

/* Slider Content */
.slider_section .container {
  position: relative;
  z-index: 1;
}

.slider_section .carousel-item {
  padding: 45px 0;
}

.slider_section .detail-box {
  position: relative;
  z-index: 1;
  padding-right: 50px;
}

.slider_section .detail-box h1 {
  color: #252525;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 3rem;
  text-shadow: none;
}

.slider_section .detail-box h1 span {
  color: #24d278;
  display: block;
  font-size: 2.5rem;
  margin-top: 10px;
}

.slider_section .detail-box p {
  color: #555555;
  margin-bottom: 35px;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: none;
}

.slider_section .img-box img {
  width: 100%;
  max-width: 445px;
  margin: auto;
  filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
}

/* Carousel Controls - Repositioned and Styled */
.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  background-color: rgba(36, 210, 120, 0.8);
  border-radius: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

/* Position arrows outside the content */
.carousel-control-prev {
  left: -60px; /* Move outside the container */
}

.carousel-control-next {
  right: -60px; /* Move outside the container */
}

/* Arrow icon styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Slider Content Styles */
.slider_section .detail-box {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.slider_section .img-box {
  padding-left: 50px; /* Add space between content and image */
}

/* Responsive Styles */
@media (max-width: 1200px) {
  /* Move arrows inside on medium screens */
  .carousel-control-prev {
    left: 20px;
  }
  
  .carousel-control-next {
    right: 20px;
  }

  .slider_section .detail-box,
  .slider_section .img-box {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .slider_section {
    text-align: center;
    padding-top: 120px;
  }

  .slider_section .detail-box,
  .slider_section .img-box {
    padding: 0 20px;
  }

  .slider_section .detail-box {
    margin-bottom: 40px;
  }

  .slider_section .img-box img {
    max-width: 80%;
    margin: 0 auto;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .slider_section .detail-box {
    padding: 20px;
    margin: 0 15px;
  }

  .slider_section .detail-box h1 {
    font-size: 2rem;
  }

  .slider_section .detail-box h1 span {
    font-size: 1.8rem;
  }

  .slider_section .detail-box p {
    font-size: 1rem;
  }

  .slider_section .img-box img {
    max-width: 100%;
  }

  /* Adjust arrow positions for mobile */
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 35px;
    height: 35px;
    background-color: rgba(36, 210, 120, 0.9);
  }
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #24d278;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators li.active {
  background-color: #24d278;
  transform: scale(1.2);
}

/* Button Styles */
.btn-2 {
  display: inline-block;
  padding: 12px 35px;
  background-color: #24d278;
  color: #ffffff;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-2:hover {
  background-color: #1ca861;
  color: #ffffff;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero_side_bg {
    width: 100%;
    opacity: 0.3;
  }

  .slider_section {
    text-align: center;
  }

  .slider_section .img-container {
    margin-top: 45px;
  }

  .slider_section .detail-box h1 {
    font-size: 2.5rem;
  }

  .slider_section .detail-box h1 span {
    font-size: 2rem;
  }
}

/* About Section */
.about_section {
  position: relative;
  background: #f8f9fa;
  padding: 80px 0;
}

.about_section .heading_container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
}

.about_section .heading_container h2::after { 
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #24d278;

}

.about_section .detail-box {
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about_section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about_section .img-box {
  position: relative;
  padding: 20px;
}

.about_section .img-box img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about_section .img-box:hover img {
  transform: translateY(-5px);
}

/* Enhanced Read More Button */
.about_section .read-more-container {
  margin-top: 30px;
  text-align: left;
}

.about_section .read-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: #24d278;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
}

.about_section .read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #1ca861;
  border-radius: 50px;
  transition: all 0.5s ease;
  z-index: -1;
}

.about_section .read-more:hover::before {
  width: 100%;
}

.about_section .read-more::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.about_section .read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(36, 210, 120, 0.3);
}

.about_section .read-more:hover::after {
  transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .about_section .read-more-container {
    text-align: center;
  }

  .about_section .read-more {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

.contact_section {
  position: relative;
  background: #f8f9fa;
  padding: 80px 0;
}

.contact_section form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact_section form {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}


.contact_section .heading_container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
}

.contact_section .heading_container h2::after { 
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #24d278;

}
.contact_section input,
.contact_section .message-box {
  width: 100%;
  margin-bottom: 25px;
  padding: 15px;
 

  transition: all 0.3s ease;
}

.contact_section input:focus,
.contact_section .message-box:focus {
  border-color: #24d278;
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 210, 120, 0.1);
}

.contact_section .message-box {
  height: 120px;
  resize: none;
}

.contact_section button {
  padding: 12px 35px;
  background: #24d278;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact_section button:hover {
  background: #1ca861;
  transform: translateY(-2px);
}

.map_container {
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-responsive {
  height: 100%;
}

.map-responsive iframe {
  border-radius: 10px;
}

/* Info Section Styles */
.info_section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2c5d3f 100%);
    color: var(--white);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.info_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(36, 210, 120, 0.1), transparent);
    opacity: 0.5;
}

.info_section h4 {
    color: #24d278;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.info_section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #24d278;
}

/* Contact Information */
.info_contact .contact_item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.info_contact .contact_item:hover {
    background: rgba(36, 210, 120, 0.08);
    transform: translateX(5px);
    border-color: rgba(36, 210, 120, 0.2);
}

.info_contact .img-box {
    width: 40px;
    height: 40px;
    background: rgba(36, 210, 120, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.info_contact .contact_item:hover .img-box {
    background: rgba(36, 210, 120, 0.25);
}

.info_contact .detail {
    flex: 1;
}

.info_contact .detail p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Business Hours */
.info_time .time_container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.info_time .day_time {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info_time .day_time:last-child {
    border-bottom: none;
}

.info_time .day_time p {
    margin: 0;
    font-size: 1rem;
}

.info_time .day_time p:first-child {
    color: #24d278;
    font-weight: 500;
}

.info_time .day_time p:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* Social Links */
.info_social .social_container {
    display: flex;
    gap: 15px;
}

.info_social .social-link {
    background: rgba(36, 210, 120, 0.15);
    transition: all 0.3s ease;
}

.info_social .social-link:hover {
    background: #24d278;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(36, 210, 120, 0.3);
}

.social_container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Footer Section */
.footer_section {
    background: #143821;
    padding: 25px 0;
    border-top: 1px solid rgba(36, 210, 120, 0.1);
}

.footer_content {
    text-align: center;
}

.footer_content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .info_section {
        padding: 60px 0;
    }
    
    .info_contact, .info_time {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .info_section {
        padding: 50px 0;
    }

    .info_contact .contact_item,
    .info_time .time_container {
        padding: 15px;
    }

    .info_section h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}

#navbarSupportedContent {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#navbarSupportedContent.lg_nav-toggle {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.custom_menu-btn {
  display: none;
}

.custom_menu-btn button {
  margin-top: 12px;
  outline: none;
  border: none;
  background-color: transparent;
}

.custom_menu-btn button span {
  display: block;
  width: 34px;
  height: 3.5px;
  /* background-color: #fff; */
  background-color: #0c0c0c;
  margin: 8.5px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_menu-btn .s-2 {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  width: 17px;
  margin-left: auto;
}

.menu_btn-style button .s-1 {
  -webkit-transform: rotate(45deg) translate(7px, 10px);
          transform: rotate(45deg) translate(7px, 10px);
}

.menu_btn-style button .s-2 {
  /* -webkit-transform: translateX(100px); */
          /* transform: translateX(100px); */
  -webkit-transform: scale(0);
          transform: scale(0);
}

.menu_btn-style button .s-3 {
  -webkit-transform: rotate(-45deg) translate(7px, -10px);
          transform: rotate(-45deg) translate(7px, -10px);
}
/*# sourceMappingURL=style.css.map */

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: #24d278;
    margin: 1rem auto;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-content p {
    color: #666;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-more,
.btn-product,
.btn-view-all {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-more {
    background: #24d278;
    color: #fff;
}

.btn-product {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-view-all {
    background: #24d278;
    color: #fff;
    padding: 1rem 2rem;
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Navigation Styles */
.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-item {
    padding: 0 15px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 20px 0;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    height: 2px;
    background: #24d278;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .current-menu-item .nav-link::after {
    width: 100%;
}

.navbar-nav .current-menu-item .nav-link {
    color: #24d278;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .custom_menu-btn {
        display: block;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
        outline: none;
    }

    .custom_menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #333;
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    .navbar-toggler[aria-expanded="true"] .s-1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .navbar-toggler[aria-expanded="true"] .s-2 {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .s-3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .navbar-nav .nav-link::after {
        bottom: 8px;
    }
}



/* Single Product Page */
.single-product-page {
    padding: 120px 0 60px;
}

.product-gallery {
    position: relative;
}

.main-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnails .thumb {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.product-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.category-badge {
    display: inline-block;
    padding: 5px 10px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.product-specifications {
    margin: 2rem 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-specifications ul {
    list-style: none;
    padding: 0;
}

.product-specifications li {
    margin-bottom: 10px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

/* Enhanced Header Styles */
.header_section {
    transition: all 0.3s ease;
}

.header_section.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Search Form */
.search-form {
    position: relative;
    margin-left: 20px;
}

.search-field {
    padding: 8px 35px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-field:focus {
    width: 250px;
    border-color: #24d278;
    outline: none;
}

.search-submit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    padding: 0;
}

/* Language Switcher */
.language-switcher {
    margin-left: 15px;
}

.language-switcher a {
    padding: 5px 8px;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.language-switcher a:hover {
    color: #24d278;
}

/* Page Title Section */
.page-title-section {
    padding-top: 120px;
    padding-bottom: 30px;
    background: #f8f9fa;
}

.page-title-section .heading_container {
    margin-bottom: 0;
}

.page-title-section .heading {
    margin-bottom: 0;
    font-size: 2rem;
}

/* Custom Navbar Toggler */
.navbar-toggler {
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: block;
    position: relative;
    background: transparent;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #24d278;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* Animated Toggler Icon */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background: #1ca861;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
    background: #1ca861;
}

/* Hover effect */
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
    background: #1ca861;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        margin-top: 15px;
    }

    .navbar-nav .nav-item {
        padding: 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-radius: 4px;
    }

    .navbar-nav .nav-link:hover {
        background: #f8f9fa;
    }
}

/* Adjust for WordPress admin bar */
.admin-bar .header_section {
    top: 32px; /* Height of WP admin bar */
}

.admin-bar .slider_section {
    padding-top: 112px; /* 80px + 32px admin bar height */
}

/* Adjust for mobile admin bar */
@media screen and (max-width: 782px) {
    .admin-bar .header_section {
        top: 46px; /* WP admin bar is taller on mobile */
    }

    .admin-bar .slider_section {
        padding-top: 126px; /* 80px + 46px admin bar height */
    }
}

/* Color Variables */
:root {
    --primary: #24d278;
    --primary-dark: #1ca861;
    --primary-light: rgba(36, 210, 120, 0.1);
    --secondary: #1a472a;
    --text-dark: #252525;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
}

/* Global Styles Enhancement */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Enhanced Header */
.header_section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(36, 210, 120, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 70px;
    transition: all 0.3s ease;
}

.header_section.scrolled .navbar-brand img {
    max-height: 50px;
}

/* Enhanced Navigation */
.custom_nav-container.navbar-expand-lg .navbar-nav {
    gap: 10px;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item {
    position: relative;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect for Nav Links */
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link:hover::before,
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link::before {
    transform: scaleX(1);
    transform-origin: left;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link:hover,
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: var(--primary);
}

/* Active Link Indicator */
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* Contact Button in Nav */
.custom_nav-container .nav-contact-btn {
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary);
    margin-left: 15px;
}

.custom_nav-container .nav-contact-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(36, 210, 120, 0.15);
}

/* Hamburger Menu Enhancement */
.custom_nav-container .navbar-toggler {
    padding: 0;
    width: 35px;
    height: 35px;
    position: relative;
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--primary);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
    background: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .custom_nav-container.navbar-expand-lg .navbar-nav {
        background: rgba(255, 255, 255, 0.98);
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }

    .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .custom_nav-container .nav-contact-btn {
        margin: 10px 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header_section {
        padding: 10px 0;
    }

    .navbar-brand img {
        max-height: 55px;
    }
}

/* About Page Styles */
.about-page-wrapper {
    overflow: hidden;
}

/* Hero Section */
.about_hero_section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(36, 210, 120, 0.1), transparent);
    transform: skewX(-15deg);
}

.hero_content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero_content .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero_image {
    position: relative;
    padding: 20px;
}

.hero_image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero_image:hover img {
    transform: translateY(-10px);
}

/* Main About Section */
.about_main_section {
    padding: 80px 0;
    background: #ffffff;
}

.section_heading {
    margin-bottom: 40px;
    position: relative;
}

.section_heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section_heading h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.content_wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about_content .content_wrapper {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.about_content .content_wrapper p {
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
  font-size:1.1rem;
}

.read-more-container {
  text-align: center;
  margin-top: 30px;
}

.read-more {
  display: inline-block;
  padding: 12px 35px;
  background: #24d278;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.read-more:hover {
  background: #1ca861;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Values Section */
.values_section {
    padding: 80px 0;
    background: #f8f9fa;
}

.value_box {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.value_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(36, 210, 120, 0.1);
}

.value_box .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 210, 120, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value_box:hover .icon {
    background: var(--primary);
}

.value_box:hover .icon img {
    filter: brightness(0) invert(1);
}

.value_box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value_box p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Partners Section */
.partners_section {
    padding: 80px 0;
    background: #ffffff;
}

.partner_logos {
    margin-top: 40px;
}

.partner_logo {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner_logo img {
    max-width: 200px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner_logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about_hero_section {
        padding: 100px 0 60px;
    }

    .hero_content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about_hero_section {
        padding: 80px 0 40px;
    }

    .hero_content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero_content h1 {
        font-size: 2.2rem;
    }

    .section_heading h2 {
        font-size: 2rem;
    }

    .value_box {
        padding: 30px 20px;
    }
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

