* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
  }

  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 20px;
    font-size: 14px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
  }
  
  .top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .top-left a {
      text-decoration: none;
      color: black;
  }
  
  .top-bar a {
    color: black;
    text-decoration: none;
  }
  
  .top-bar i {
    color: #555;
  }
  
  #language-select {
    padding: 4px 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
    color: #333;
  }
  
  @media (max-width: 600px) {
    .top-bar {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }
  }

  /* Hide Google Translate banner */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}


/* Hide the Google Translate overlay if it appears */
.goog-te-gadget-icon {
  display: none !important;
}

  
  

  header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }

  .navbar {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }

  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #00aeb7;
  }

  nav {
    display: flex;
    align-items: center;
  }
nav ul {
  margin-bottom: none !important;
}
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
   
  }

  .nav-links li {
    position: relative;
  }

  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    display: none;
    z-index: 1000;
    width: 400px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* .nav-links li:hover .dropdown-menu {
    display: grid;
  } */

  .dropdown-column h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #00aeb7;
  }
  .dropdown-column {
   padding: 10px;
  }

  .dropdown-column a {
    display: block;
    color: #333;
    text-decoration: none;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .search-box {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .search-box input {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .search-box button {
    background-color: #00aeb7;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
  }

  /* Responsive */
  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #fff;
      position: absolute;
      top: 60px;
      left: 0;
      z-index: 99999;
      padding: 20px;
      border-top: 1px solid #ddd;
    }
    
    .nav-links ul {background-color: #fff;
        z-index: 999999;
    }

    .nav-links.active {
      display: flex;
    }

    .dropdown-menu {
      position: static;
      width: 100%;
      display: none;
      grid-template-columns: 1fr;
    }

    .nav-links li:hover .dropdown-menu {
      display: grid;
    }

    .menu-toggle {
      display: block;
    }

    .search-box {
      margin-top: 10px;
      width: 100%;
    }
  }

   /* Navbar Specific Styles */
    .vra-nav-top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #00aeb7;
      padding: 10px 20px;
      font-size: 14px;
      flex-wrap: wrap;
      color: white;
      font-family: Arial, sans-serif;
      z-index: 1002;
      position: relative;
    }

.vra-nav-top-left, .vra-nav-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vra-nav-top-bar a {
  color: black;
  text-decoration: none;
}

.vra-nav-top-bar i {
  color: #555;
}

#vra-nav-language-select {
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fff;
  color: #333;
}

@media (max-width: 600px) {
  .vra-nav-top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.vra-nav-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1001;
}

.vra-nav-navbar {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.vra-nav-logo {
  font-size: 24px;
  font-weight: bold;
  color: #00aeb7;
  z-index: 1003;
}

.vra-nav-nav {
  display: flex;
  align-items: center;
}

.vra-nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.vra-nav-links li {
  position: relative;
}

.vra-nav-links > li > a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  transition: color 0.3s;
}

.vra-nav-links > li > a:hover {
  color: #00aeb7;
}

.vra-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 1004;
  width: 400px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-radius: 8px;
}

.vra-nav-dropdown-column h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #00aeb7;
  display: flex;
  align-items: center;
}

.vra-nav-dropdown-column a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.3s;
}

.vra-nav-dropdown-column a:hover {
  color: #00aeb7;
}

.vra-nav-search-box {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vra-nav-search-box input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 200px;
}

.vra-nav-search-box button {
  background-color: #00aeb7;
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.vra-nav-search-box button:hover {
  background-color: #008c95;
}

.vra-nav-close-btn {
  display: none;
  font-size: 24px;
  margin-bottom: 15px;
  cursor: pointer;
  color: #333;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.vra-nav-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  z-index: 1003;
  transition: transform 0.3s;
  background: none;
  border: none;
  padding: 5px;
}

/* Dropdown icon */
.vra-nav-dropdown-toggle {
  position: relative;
  padding-right: 20px !important;
}

.vra-nav-dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: transform 0.3s;
}

.vra-nav-dropdown-toggle.active::after {
  transform: translateY(-50%) rotate(180deg);
}







/* Mobile Styles */
@media (max-width: 768px) {
  .vra-nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    /* position: fixed;
    top: 0; */
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 20px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1002;
    overflow-y: auto;
    /* text-align: center; */

    margin-top: 0; /* REMOVE push down effect */
    top: auto;      /* Prevent absolute top stacking */
    position: relative; /* Keeps inside flow */
    padding-top: 0;

  }

  .vra-nav-links.active {
    display: flex;
  }
  
  .vra-nav-dropdown-menu {
    position: relative;
    width: calc(100% - 30px);
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 5px auto 0 auto;
  }
  
  .vra-nav-dropdown-column {
    padding: 5px 0;
  }
  
  .vra-nav-dropdown-column h4 {
    margin: 0 0 5px 0;
    justify-content: center;
    padding: 0;
  }
  
  .vra-nav-dropdown-column a {
    margin: 0;
    padding: 8px 0;
    /* text-align: center; */
  }
  
  .vra-nav-close-btn {
    display: block;
    position: absolute;
    top: 20px;
    left: 100px;
    width: auto;
  }
  
  .vra-nav-menu-toggle {
    display: block;
  }
  
  .vra-nav-search-box {
    margin: 20px 0 0 0;
    width: 100%;
  }
  
  .vra-nav-search-box input {
    flex-grow: 1;
  }
  
  .vra-nav-links > li {
    margin-bottom: 10px;
  }
  
  /* Improved dropdown toggle spacing */
  .vra-nav-dropdown-toggle {
    padding-right: 25px !important;
  }
  
  .vra-nav-dropdown-toggle::after {
    right: 5px;
  }
  
  /* Parent indicator in mobile dropdown */
  .vra-nav-dropdown-menu::before {
    /* content: "Products"; */
    display: block;
    font-weight: bold;
    color: #00aeb7;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
  }
  
  /* Better spacing for dropdown items */
  .vra-nav-dropdown-column a {
    margin: 5px 0;
  }
  
  /* Fix for dropdown items appearing too low */
  .vra-nav-links > li > .vra-nav-dropdown-menu {
    margin-top: 5px;
  }
}

  .pet-section {
    text-align: center;
    padding: 80px 20px;
    position: relative;
  }

  .pet-image {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid #d6f0fa;
    background: #b2e7fc;
    position: relative;
    z-index: 1;
  }

  .feature-box {
    max-width: 200px;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: absolute;
  }

  .feature-box img {
    width: 40px;
  }

  .feature-box h6 {
    font-weight: bold;
    margin-top: 10px;
  }

  .feature-box p {
    font-size: 14px;
    margin: 0;
  }

  .feature-top-left {
    top: 10%;
    left: 10%;
  }

  .feature-bottom-left {
    bottom: 10%;
    left: 10%;
  }

  .feature-top-right {
    top: 10%;
    right: 10%;
  }

  .feature-bottom-right {
    bottom: 10%;
    right: 10%;
  }

  .read-more-btn {
    margin-top: 30px;
  }

  @media (max-width: 768px) {
    .feature-box {
      position: static;
      margin: 20px auto;
    }

    .pet-image {
      margin-bottom: 30px;
    }
  }

  .about-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #ffffff, #fdfdfd);
  }

  .speech-bubble {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }

  .speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: #fff;
    transform: rotate(45deg);
    box-shadow: -5px 5px 10px rgba(0,0,0,0.05);
  }

  .about-heading {
    display: inline-block;
    background: url('images/hen.png') no-repeat;
    background-size: contain;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 30px;
  }

  .about-image {
    max-width: 100%;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .speech-bubble::after {
      left: 20px;
    }

    .about-heading {
      font-size: 22px;
    }
  }


  ul {padding-left: 0px !important;
    margin-bottom: 0px !important;
  }



        
        
        
.vpro-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header (using your existing header) */

        /* Hero Product Section */
        .vpro-product-hero {
            position: relative;
            padding: 60px 0;
            background: var(--vpro-light);
            overflow: hidden;
        }

        .vpro-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--vpro-gradient);
            opacity: 0.03;
            z-index: 0;
        }

        .vpro-product-display {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        /* Product Gallery - Modern Swiper Slider */
        .vpro-product-gallery {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .vpro-gallery-main {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            background: #fff;
            position: relative;
        }

        .vpro-gallery-main img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
            cursor: zoom-in;
        }

        .vpro-gallery-thumbs {
            padding: 10px 0;
        }

        .vpro-thumb-slide {
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .vpro-thumb-slide.swiper-slide-thumb-active {
            opacity: 1;
            border-color: var(--vpro-primary);
        }

        .vpro-thumb-slide img {
            width: 100%;
            height: 80px;
            object-fit: cover;
            display: block;
        }

        .vpro-gallery-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--vpro-accent);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
        }

        /* Product Details - Modern Card */
        .vpro-product-details {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .vpro-details-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: var(--vpro-gradient);
            opacity: 0.05;
            border-radius: 0 0 0 100px;
            z-index: 0;
        }

        .vpro-product-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--vpro-secondary);
            position: relative;
            z-index: 1;
        }

        .vpro-product-subtitle {
            font-size: 1.1rem;
            color: var(--vpro-primary);
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }



        .vpro-product-features {
            margin: 25px 0;
            position: relative;
            z-index: 1;
        }

        .vpro-features-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
            margin-top: 15px;
        }

        .vpro-features-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: rgba(0, 174, 183, 0.05);
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .vpro-features-list li:hover {
            background: rgba(0, 174, 183, 0.1);
            transform: translateY(-2px);
        }

        .vpro-features-list i {
            color: var(--vpro-primary);
            font-size: 16px;
        }

        /* Product Options - Modern Toggle */


        /* Action Buttons - Modern Glassmorphism */
        .vpro-action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0 20px;
            position: relative;
            z-index: 1;
        }

        .vpro-btn {
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: none;
            font-size: 16px;
            position: relative;
            overflow: hidden;
        }

        .vpro-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
            transition: all 0.3s ease;
            opacity: 0;
        }

        .vpro-btn:hover::before {
            opacity: 1;
        }

        .vpro-btn span {
            position: relative;
            z-index: 1;
        }

        .vpro-primary-btn {
            background: var(--vpro-primary);
            color: white;
            box-shadow: 0 5px 15px rgba(0, 174, 183, 0.3);
        }

        .vpro-primary-btn:hover {
            background: var(--vpro-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 174, 183, 0.4);
        }

        .vpro-secondary-btn {
            background: white;
            color: var(--vpro-primary);
            border: 1px solid var(--vpro-primary);
        }

        .vpro-secondary-btn:hover {
            background: rgba(0, 174, 183, 0.05);
            transform: translateY(-2px);
        }

        .vpro-wishlist-btn {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: white;
            color: #666;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .vpro-wishlist-btn:hover {
            color: var(--vpro-accent);
            border-color: var(--vpro-accent);
        }

        .vpro-wishlist-btn.active {
            color: var(--vpro-accent);
            border-color: var(--vpro-accent);
        }

        /* Product Highlights - Modern Grid */
        .vpro-highlights-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
        }

        .vpro-section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .vpro-section-title h2 {
            font-size: 2.2rem;
            color: var(--vpro-secondary);
            font-weight: 800;
            display: inline-block;
            position: relative;
        }

        .vpro-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--vpro-primary);
            border-radius: 2px;
        }

        .vpro-highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .vpro-highlight-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .vpro-highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .vpro-highlight-icon {
            width: 70px;
            height: 70px;
            background: var(--vpro-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
        }

        .vpro-highlight-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--vpro-secondary);
        }

        .vpro-highlight-text {
            color: #666;
            font-size: 15px;
        }

        /* Product Science - Modern Layout */
        .vpro-science-section {
            padding: 80px 0;
            background: var(--vpro-secondary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .vpro-science-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/science-pattern.png') center/cover;
            opacity: 0.05;
            z-index: 0;
        }

        .vpro-science-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .vpro-science-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .vpro-science-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .vpro-science-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--vpro-accent);
            color: white;
            padding: 15px;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
        }

        .vpro-science-text {
            flex: 1;
            min-width: 300px;
        }

        .vpro-science-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }

        .vpro-science-desc {
            margin-bottom: 30px;
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        .vpro-science-features {
            list-style: none;
        }

        .vpro-science-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .vpro-science-features i {
            color: var(--vpro-primary);
            font-size: 20px;
            margin-top: 3px;
        }

        /* Product Usage - Modern Steps */
        .vpro-usage-section {
            padding: 80px 0;
            background: white;
        }

        .vpro-usage-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 50px;
        }

        .vpro-step-card {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .vpro-step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .vpro-step-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(0, 174, 183, 0.1);
            line-height: 1;
        }

        .vpro-step-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 174, 183, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vpro-primary);
            font-size: 24px;
            margin-bottom: 20px;
        }

        .vpro-step-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--vpro-secondary);
        }

        .vpro-step-text {
            color: #666;
            font-size: 15px;
        }


        /* Product FAQ - Modern Accordion */
        .vpro-faq-section {
            padding: 80px 0;
            background: white;
        }

        .vpro-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .vpro-faq-item {
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .vpro-faq-item.active {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .vpro-faq-question {
            padding: 20px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--vpro-secondary);
            transition: all 0.3s ease;
        }

        .vpro-faq-question:hover {
            background: #f9f9f9;
        }

        .vpro-faq-question i {
            transition: transform 0.3s ease;
        }

        .vpro-faq-item.active .vpro-faq-question i {
            transform: rotate(180deg);
        }

        .vpro-faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: #f9f9f9;
        }

        .vpro-faq-item.active .vpro-faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* Related Products - Modern Grid */
        .vpro-related-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
        }

        .vpro-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .vpro-related-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }

        .vpro-related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .vpro-related-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--vpro-accent);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .vpro-related-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .vpro-related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .vpro-related-card:hover .vpro-related-image img {
            transform: scale(1.05);
        }

        .vpro-related-content {
            padding: 20px;
        }

        .vpro-related-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--vpro-secondary);
        }

        .vpro-related-price {
            font-weight: 800;
            color: var(--vpro-primary);
            margin-bottom: 15px;
        }

        .vpro-related-btn {
            display: inline-block;
            padding: 10px 20px;
            background: rgba(0, 174, 183, 0.1);
            color: var(--vpro-primary);
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .vpro-related-btn:hover {
            background: var(--vpro-primary);
            color: white;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .vpro-product-title {
                font-size: 2rem;
            }
            
            .vpro-current-price {
                font-size: 2rem;
            }
            
            .vpro-original-price {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 992px) {
            .vpro-section-title h2 {
                font-size: 1.8rem;
            }
            
            .vpro-highlight-card, .vpro-step-card {
                min-width: calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .vpro-product-hero {
                padding: 40px 0;
            }
            
            .vpro-product-title {
                font-size: 1.8rem;
            }
            
            .vpro-current-price {
                font-size: 1.8rem;
            }
            
            .vpro-section-title h2 {
                font-size: 1.6rem;
            }
            
            .vpro-highlight-card, .vpro-step-card, .vpro-related-card {
                min-width: 100%;
            }
            
            .vpro-action-buttons {
                justify-content: center;
            }
            
            .vpro-btn {
                width: 100%;
            }
            
            .vpro-wishlist-btn {
                width: 100%;
                height: auto;
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .vpro-product-title {
                font-size: 1.5rem;
            }
            
            .vpro-product-subtitle {
                font-size: 1rem;
            }
            
            .vpro-current-price {
                font-size: 1.5rem;
            }
            
            .vpro-original-price {
                font-size: 1rem;
            }
            
            .vpro-section-title h2 {
                font-size: 1.4rem;
            }
            
            .vpro-features-list {
                grid-template-columns: 1fr;
            }
        }

        /* Animation Keyframes */
        @keyframes vproFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .vpro-float {
            animation: vproFloat 3s ease-in-out infinite;
        }



/*Side fixed iocns Start*/

#prom-enquiry-forms .fixed-icons {
    position: fixed;
    left: 10px;
    bottom: 40%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#prom-enquiry-forms .fixed-icons a {
    margin: 5px 0;
    color: #fff;
    padding: 10px 10px;
    line-height: 0px !important;
    border-radius: 30px;
    text-align: center;
    font-size: 26px;
    transition: background-color 0.3s ease;
    /* border: 2px solid #fff; */
}  
#prom-enquiry-forms h4 {
  text-align: center;
  color: white;
  font-weight: 600;
}
#prom-enquiry-forms .fixed-icons .phone-icon {
    background-color: #1321a6;
}
#prom-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #27d648;
}
#prom-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d90000;
}

#prom-enquiry-forms .fixed-icons a:hover {
    background-color: #000;
}

/* Popup Form Styles */
#prom-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#prom-enquiry-forms .form-content {
    background-color: #00000094;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    margin: 0 10px;
    width: 100%;
}

#prom-enquiry-forms .form-content h2 {
    color: #fff;
}

#prom-enquiry-forms .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
}

#prom-enquiry-forms .popup-form form input,
#prom-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 7px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#prom-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: #00aeb7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    transition: background-color 0.4s ease;
}

#prom-enquiry-forms .popup-form form button:hover {
    background-color: #48914d;
}

/*Side fixed iocns ends*/




        



@media only screen and (max-width:426px) {
      .slider-container {

    min-height: 200px;
   
    }
  }
    @media only screen and (min-width:427px) and (max-width:768px) {
      .slider-container {

    min-height: 500px;
   
    }
  }
    @media only screen and (min-width:769px) {
      .slider-container {

    min-height: 600px;
   
    }
  }
    .slider-container {
      position: relative;
      width: 100%;
      
      margin: auto;
      overflow: hidden;
    }

    .slider-item {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slider-item img {
      width: 100%;
      /* height: 100%; */
      object-fit: cover;
    }

    .slider-item.is-active.is-auto {
      opacity: 1;
      z-index: 1;
    }

    .slider-item.is-active.is-manual {
      animation: slideIn 0.6s forwards;
      z-index: 2;
    }

    @keyframes slideIn {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .slider-dots {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
    }

    .slider-dot {
      height: 15px;
      width: 15px;
      margin: 5px;
      background: #fff;
      border-radius: 50%;
      cursor: pointer;
      border: 1px solid #333;
    }

    .slider-dot.is-active {
      background: #333;
    }

    /* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .alternate .section-grid {
        grid-template-areas: "image" "content";
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
    }
    
    .nav-links.active {
        clip-path: circle(1000px at 90% -10%);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .product-slide {
        flex: 0 0 250px;
        height: 350px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .product-slide {
        flex: 0 0 200px;
        height: 300px;
    }
}