* {
    margin: 0;
    padding: 0;
    outline: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li,
span {
    margin: 0;
    padding: 0;
}

/* Common css end */
/* ======= Header underline style  start ======= */
.section-title {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #28a745; /* green underline */
  border-radius: 2px;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 40%, 80%, 100% {
    transform: translateX(-50%) scaleX(1);
  }
  20%, 60% {
    transform: translateX(-50%) scaleX(1.5);
  }
}

/* ======= Header underline style  end ======= */
/* ======= Menu Part start ======= */
.main_menu .navbar-brand a {
    display: inline-block;
}
.main_menu .navbar-brand img {
    height: 45px;
     /* width: 160px;  */
}

.main_menu .navbar-brand h6 {
    font-size: 14px;
    color: #222;
}
/* .main_menu {
  
   background: #fff;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
} */

.main_menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.main_menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    /* background: #fff; */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    animation: slideDown 0.3s ease forwards;
}


/* Fixed Navbar on scroll down */


/* Fixed Navbar when scrolling up */
 /* .main_menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: #161F6F; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
} */

/* Navbar links when fixed */
/* .main_menu.fixed .nav-link {
    color: #fff;
}  */
/* ---------- Navbar Base ---------- */
.nav {
  width: 100%;
  padding: 20px;
  transition: all 0.3s ease;
  z-index: 999;
}

.navbar-nav .nav-item {
  position: relative;
  transition: all 0.4s linear;
}

.navbar-nav .nav-link {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 60px;
  padding: 0 15px !important;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}

/* Parent link hover effect */
.navbar-nav .nav-item:hover > .nav-link,
.navbar-nav .nav-item.show > .nav-link,
.navbar-nav .nav-item:focus-within > .nav-link,
.navbar-nav .nav-item > .nav-link[aria-expanded="true"] {
  background-color: #1959bf;
  color: #fff !important;
}

/* ---------- Dropdowns ---------- */
/* Dropdown menu base style */
.navbar .dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 0;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

/* Dropdown items */
.dropdown-menu a {
  /* color: #fff; */
  color: #222;
  padding: 10px 20px;
  display: block;
}

.dropdown-menu a:hover {
  /* background-color: #84adef; */
  background-color:  #1959bf;;
  color: #fff !important;
}

/* Submenu styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

/* ---------- Mega Dropdown ---------- */
.mega-dropdown {
  position: relative;
}

.mega-dropdown-menu {
  display: none;
  flex-wrap: wrap;
  width: 800px; /* adjust width as needed */
  padding: 15px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1100;
  transition: all 0.3s ease;
}

/* Show mega-dropdown on hover */
.nav-item.mega-dropdown:hover > .mega-dropdown-menu,
.nav-item.mega-dropdown.show > .mega-dropdown-menu,
.nav-item.mega-dropdown:focus-within > .mega-dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega-dropdown links */
.mega-dropdown-menu li a {
  color: #222;
  text-decoration: none;
  padding: 5px 10px;
}

.mega-dropdown-menu li a:hover {
  color: #fff;
  background-color: #1959bf;
}

.mega-dropdown-menu .dropdown-header a {
  font-weight: 600;
  color: #333;
}

/* ---------- Search Styling ---------- */
.navbar .search-form {
    margin-left: 20px;
    flex-grow: 1;
    max-width: 280px;
    display: flex;
}

.navbar .search-form .input-group {
    width: 100%;
}

.navbar .search-form .form-control {
    border-radius: 20px 0 0 20px;
    height: 35px;
    border: 1px solid #ccc;
}

.navbar .search-form .input-group .btn {
    border-radius: 0 20px 20px 0;
    height: 35px;
    border: 1px solid #1959bf;
    background-color: #1959bf;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    transition: background 0.3s ease;
}

.navbar .search-form .input-group .btn:hover {
    background-color: #0848a2;
    color: #fff;
}
.search-form {
  margin-left: 20px;
  width: 50px;  /* <<< THIS is why the search is tiny */
}

/* ======= Menu Part end ======= */
/* ======= Banner Part start ======= */
/* Slider container */

#single_slider {
  padding-top: 20px;
  position: relative;
  width: 100%;
  /* height: 100vh;  */
   height: auto; 
  overflow: hidden;
  padding-top: 60px;
}

/* Each slide image */
#single_slider .swiper-slide img {
  width: 100%;
  /* height: 100vh;        */
   height: auto;
  object-fit: cover;   /* cover entire slide */
}

/* Optional: overlay text on slide */
.slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.slide-overlay h2 {
  font-size: 48px;
  font-weight: bold;
}

.slide-overlay h4 {
  font-size: 24px;
  margin-top: 10px;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.7);
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* Responsive font sizes */
@media (max-width: 768px) {
  .slide-overlay h2 {
    font-size: 32px;
  }
  .slide-overlay h4 {
    font-size: 18px;
  }
}

/* ======= Banner Part end ======= */


/* ======= Featured Products Part start ======= */

/* Featured slider container */
.featured-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Scrolling content */
.featured-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  width: max-content;
  animation: scrollLeft linear infinite;
  animation-duration: calc(10s * var(--scroll-speed, 6)); /* dynamic speed */
}

/* Each product card */
.feature-card {
  background: #fff;
  border-radius: 15px;
  padding-bottom: 20px;
  text-align: center;
  width: 350px;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Keyframes — scroll full width automatically */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.featured-slider-wrapper:hover .featured-slider {
  animation-play-state: paused;
}
/* Image Wrapper */
.image-wrapper {
  width: 100%;
  height: 350px;              /* fixed uniform height for all product images */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #fff;  /* light background behind transparent images */
}

/* Product Image */
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;         /* keeps image ratio without cropping */
  transition: transform 0.3s ease;
}

.feature-card:hover .image-wrapper img {
  transform: scale(1.05);      /* subtle zoom effect on hover */
}




/* ======= Featured Products Part end ======= */

/* ======= About Part start ======= */
/* About Section */
.about-section {
  position: relative;
  color: #fff;
  z-index: 1;
}

/* ✅ Keep overlay transparent or semi-transparent, not another image */
.about-section .overlay {
  background: rgba(0, 0, 0, 0.5); /* Optional: add slight dark layer for readability */
  padding: 100px 20px;
  position: relative;
  z-index: 2;
}

/* Header (small top text) */
.home-about-header {
  font-size: 40px; 
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffc107;
}

/* Big Title */
.about-title {
  /* font-size: 2.5rem; */
  font-weight: 700;
  line-height: 1.3;
}

/* Description Paragraph */
.about-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f8f9fa;
}




/* ======= About Part end ======= */

/* ======= Image & Video Section ======= */
/*====gallery part start===*/
#gallery_part{
   padding-top: 120px;
    padding-bottom: 60px;
}

 .album-folder {
      text-align: center;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 6px;
      transition: 0.3s;
      background-color: #f8f9fa;
    }

    .album-folder:hover {
      background-color: #fff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      transform: translateY(-5px);
    }

    .album-image {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 6px;
    }
    .album-images {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 6px;
    }

    .album-title {
      margin-top: 10px;
      font-weight: 600;
      font-size: 1rem;
      color: #333;
    }
/*====gallery part end===*/


/*====video part start===*/
#video_part{
  padding-top: 120px;
  padding-bottom: 60px;
}

.video-album {
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.video-album:hover {
  transform: translateY(-5px);
}

.video-album .overly {
  height: 160px;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border-radius: 10px;
  background: rgba(26, 25, 25, 0.5);
  opacity: 1;
  transition: all linear 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .video-album:hover .overly {
  opacity: 1;
} */

.video-album .overly i {
  color: #fff;
  font-size: 40px;
}

.album-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.album-title {
  margin-top: 10px;
  font-weight: 600;
}

video {
  width: 100%;
  border-radius: 8px;
}


/*====video part end===*/


/* ======= Blog Section ======= */
.blog-section {
  background-color: #f8f9fa;
}

.section-subtitle {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

/* Blog Card */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-img img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.blog-desc {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .blog-img img {
    height: 180px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .blog-img img {
    height: 160px;
  }
  .section-title {
    font-size: 1.6rem;
  }
}



/* ======= Product details Part start ======= */
/* Main Product Image */
/* Main Product Image */
.product-main-img {
  width: 100%;
  height: 400px; /* Set fixed height for all products */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  background: #fff;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps image aspect ratio while filling container */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth change */
  display: block;
}


/* Thumbnails below main image */
.product-thumbnails {
  flex-wrap: wrap;
}

.thumb-item {
  flex: 1 1 calc(25% - 0.5rem);
  cursor: pointer;
}

.thumb-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  /* transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid transparent; */
}

.thumb-item img:hover {
  transform: scale(1.05);
  /* border: 2px solid #28a745; */
}

/* Responsive */
@media(max-width:768px){
  .thumb-item img {
    height: 60px;
  }
}

/* ======= Product details Part end ======= */
/* ======= Footer Part start ======= */
.footer_main{
  padding: 40px 0;
}
.footer_social h6{
  /* color:#222; */
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Aptos';
  padding-bottom: 15px;
}
.footer_social a{
  height: 35px;
  width: 35px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Aptos';
  margin-right: 5px;
  /* border: 1px solid  #063F9A; */
  border: 1px solid  #fff;
  border-radius: 5px;
  /* padding: 1px 10px; */
  transition: all linear .4s;
  -webkit-transition: all linear .4s;
  -moz-transition: all linear .4s;
  -o-transition: all linear .4s;
  -ms-transition: all linear .4s;
  position:relative;
  
}
.footer_social a i {
    position: absolute;
    top: 25%;
    left: 19%;
}
.footer_social a:hover{
  background: #3165b9;
  border: 1px solid  #3165b9;
}
.footer_office_address h6{
    padding-bottom: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Aptos';
}
.footer-bottom-inner p{
  color: #fff;
}
/* ======= Footer Part end ======= */


/* ==== abour part start === */
#about_part{
    padding-top: 100px;
    padding-bottom: 60px;
    
}

.about_head h2{
    text-align: center;
}
.about_inner{
  text-align: justify;
}
.about_item{
    background-color: #fff;
    padding: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border-radius: 12px;
}
/* ==== abour part end === */

/* ==== all product part start === */
.product-card {
  border: none;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Image & Button */
.product-img {
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover img {
  transform: scale(1.1);
}
.add-to-cart {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
}
.product-card:hover .add-to-cart {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Product Info */
.product-info {
  background: #fff;
}
.product-name {
  font-size: 18px;
  font-weight: 600;
}
.price {
  font-size: 20px;
  font-weight: bold;
}
.product_details{
  padding-top: 10px;
  padding-bottom: 10px;
}
.form-label{
  padding-top: 10px;
  font-weight: 600;
}
/* ==== all product part end === */


/* ==== register meter part start === */
/* General Section Styling */
#register_form_section {
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #f9f9f9;
}

/* .page-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
} */

/* .page-section hr.border-primary {
    border-top: 3px solid #28a745;
    width: 80px;
    margin: 0 auto 30px auto;
} */

/* Form Card */
.register_form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
form h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    /* border-bottom: 2px solid #28a745; */
    display: inline-block;
    padding-bottom: 5px;
}

/* Input Fields */
.form-control, .form-select {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.25);
    outline: none;
}

/* Checkbox Styling */
.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.form-check-label {
    font-size: 0.95rem;
    color: #555;
}

/* Submit Button */
.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    border-radius: 8px;
    padding: 10px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Alerts */
.alert {
    border-radius: 8px;
    padding: 15px;
    font-size: 0.95rem;
}

/* Responsive Fixes */
@media (max-width: 767px) {
    form {
        padding: 20px;
    }
    form h4 {
        font-size: 1.4rem;
    }
}

/* ==== register meter part end === */

/* ==== register meter part end === */
/* ==== register meter part end === */

/* ==== What is Diabetes part start === */
.live_head{
    padding-top: 70px;
    padding-bottom: 60px;
    
}

/* Page Section */
.page-section {
    background-color: #fff;
    padding: 60px 0;
}

/* Section Header */
.page-section h2 {
    font-weight: 700;
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
}

.page-section hr.border-primary {
    border-top: 3px solid #0d6efd;
    width: 60px;
    margin: 0 auto 30px auto;
}

/* Sidebar submenu with smooth transition */
.category-wrapper ul li {
    position: relative;
}

.category-wrapper ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    display: block;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
    position: relative;
}

/* Hover effect: left border */
.category-wrapper ul li a:hover {
    background-color: #f0f8ff;
    color: #0d6efd;
}

.category-wrapper ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.category-wrapper ul li a:hover::before {
    background-color: #0d6efd;
}

/* Submenu style with slide animation */
.category-wrapper ul li ul {
    list-style: none;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.category-wrapper ul li.active > ul {
    max-height: 500px; /* adjust if you have many items */
    opacity: 1;
}



/* Main content */
.product-wrapper {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.product-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
}

.product-wrapper h4 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}

.product-wrapper p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.product-wrapper ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-wrapper ul li {
    margin-bottom: 8px;
    color: #555;
}

 .custom-list {
    list-style: none;
    padding-left: 0;
  }
  .custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  .custom-list li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0d6efd; /* Bootstrap primary color */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
  }

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-wrapper {
        margin-bottom: 20px;
    }
}
/* ==== What is Diabetes part end === */
/* ==== Living With Diabetes part end === */
/* Card styling */
.card-body {
  padding: 2rem;
}

/* Section titles */
h3.fw-bold {
  font-size: 1.8rem;
}

h5.fw-semibold {
  font-size: 1.2rem;
  color: #0d6efd; /* Bootstrap primary color */
}

.custom-list-menu {
    list-style: none;
    padding-left: 0;
  }
  .custom-list-menu li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  .custom-list-menu li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0d6efd; /* Bootstrap primary color */
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 14px;
  }
/* ==== Living With Diabetes part end === */

/* ==== Teenager part start === */
/* Card padding */
.card-body {
  padding: 2rem;
}

/* Headings */
h3.fw-bold {
  font-size: 1.8rem;
}

h5.fw-semibold {
  font-size: 1.2rem;
  color: #0d6efd; /* Bootstrap primary color */
}

/* List styling */
.custom-list-teenager .list-group-item {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #f9f9f9;
  margin-bottom: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
}

.custom-list-teenager .list-group-item:hover {
  background-color: #e7f1ff;
}

/* Optional: bullet icon */
.custom-list-teenager .list-group-item::before {
  content: "\2022"; /* bullet symbol */
  color: #0d6efd;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -2rem;
}
/* ==== Teenager part end === */

/* ==== Parent part start === */
/* Card padding */
.card-body {
  padding: 2rem;
}

/* Headings */
h3.fw-bold {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0d6efd; /* Bootstrap primary */
}

/* List styling */
.custom-list-parent .list-group-item {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #f9f9f9;
  margin-bottom: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.custom-list-parent .list-group-item:hover {
  background-color: #e7f1ff;
}

/* Optional: colored bullet points */
.custom-list-parent .list-group-item::before {
  content: "\2022"; /* bullet symbol */
  color: #0d6efd;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -2rem;
}
/* ==== Parent part end === */

/* ==== Senior part start === */
/* Card padding */
.card-body {
  padding: 2rem;
}

/* Section Title */
h3.fw-bold {
  font-size: 1.8rem;
  color: #0d6efd; /* Bootstrap primary color */
  margin-bottom: 1rem;
}

/* List styling */
.custom-list-senior .list-group-item {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #f9f9f9;
  margin-bottom: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.custom-list-senior .list-group-item:hover {
  background-color: #e7f1ff;
}

/* Bullet points */
.custom-list-senior .list-group-item::before {
  content: "\2022"; /* bullet symbol */
  color: #0d6efd;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -2rem;
}
/* ==== Senior part end === */

/* ==== Exercise part start === */
/* Card padding */
.card-body {
  padding: 2rem;
}

/* Headings */
h3.fw-bold {
  font-size: 1.6rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}

/* List styling */
.custom-list-exercise .list-group-item {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #f9f9f9;
  margin-bottom: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.custom-list-exercise .list-group-item:hover {
  background-color: #e7f1ff;
}

/* Bullet points */
.custom-list-exercise .list-group-item::before {
  content: "\2022"; /* bullet symbol */
  color: #0d6efd;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -2rem;
}
/* ==== Exercise part end === */

/* ==== Highs & Lows part start === */
.card-body {
  padding: 2rem;
}

/* Headings */
h3.fw-bold, h4.fw-bold {
  color: #0d6efd;
}

h3.fw-bold {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

h4.fw-bold {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* List styling */
.custom-list-hight .list-group-item {
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: none;
  background-color: #f9f9f9;
  margin-bottom: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.custom-list-hight .list-group-item:hover {
  background-color: #e7f1ff;
}

/* Bullet points */
.custom-list-hight .list-group-item::before {
  content: "\2022";
  color: #0d6efd;
  font-weight: bold;
  display: inline-block;
  width: 1rem;
  margin-left: -2rem;
}
/* ==== Highs & Lows part end === */

/* ==== Eyes part start === */
.card-body {
    padding: 2rem;
}

/* Headings */
h3.fw-bold {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0d6efd; /* Bootstrap primary color */
}

/* Paragraphs */
.card-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Card hover effect (optional) */
.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}
/* ==== Eyes part end === */

/* ==== Feet part start === */
.product-wrapper h3 {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.product-wrapper h4 {
    font-size: 20px;
    color: #212529;
    margin-top: 15px;
    margin-bottom: 10px;
}

.product-wrapper p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.product-wrapper ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.product-wrapper ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

/* ==== Feet part end === */

/* ==== Travelling & Diabetes part start === */
.parent-tips li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Add a custom icon before each list item */
.parent-tips li::before {
    content: "\f058"; /* Font Awesome check-circle icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: #0d6efd;
    font-size: 16px;
    line-height: 1.7;
}

/* Headings */
.product-wrapper h3 {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 20px;
    font-weight: 700;
}

/* ==== Travelling & Diabetes part end === */

/* ==== Travelling & Diabetes part end === */
/* Headings */
.product-wrapper h3 {
    color: #0d6efd;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}

/* Paragraphs */
.product-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* List items with custom icon */
.healthy-eating-tips li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Add a checkmark before each list item */
.healthy-eating-tips li::before {
    content: "\f058"; /* Font Awesome check-circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: #0d6efd;
    font-size: 16px;
    line-height: 1.7;
}

/* Card body spacing */
.product-wrapper .card-body {
    padding: 30px;
}

/* Optional hover effect for list items */
.healthy-eating-tips li:hover {
    background-color: #f0f8ff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* ==== Travelling & Diabetes part end === */

/* ==== All Product part start === */
#all_product{
  padding-top: 30px;
  padding-bottom: 60px;
}
.product-info h5{
  padding-bottom: 10px;
}
/* ==== All Product part end === */

/* ==== All Product part end === */
#contact{
   padding-top: 40px;
  padding-bottom: 40px;
}
/* ==== All Product part end === */