body {
  margin: 0;
  font-family: Arial;
  background: #f4f7f6;
}

.dashboard-teal-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #408543; /* Teal কালার */
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 172, 193, 0.4);
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-teal-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 172, 193, 0.6);
}

/* 4 White Boxes Design */
.teal-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 3px; 
}

.teal-grid-inner span {
  display: block;
  width: 6px; 
  height: 6px; 
  background-color: #ffffff;
  border-radius: 1px;
}

/* HERO */

/* .hero {
  height: 650px;
  background: url("")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-size: 80px;
  font-weight: 700;
  z-index: 2;
}

.hero p {
  font-size: 28px;
  color: #ffe600;
  z-index: 2;
} */

/* NAVBAR */

.custom-navbar {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  /* background: #f3f3f3; */
  border-radius: 20px;
  transition: 0.4s;
  z-index: 999;
  padding-top: 30px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

/* STICKY */

.custom-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  padding-top: 0;
}

/* TOP BAR */

.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 20px;
  /* border-bottom: 1px solid #ddd; */
  align-items: center;
}

.top-bar select {
  width: 170px;
}

/* SEARCH */

.search-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: #e9ecef;
  border-radius: 6px;
}

/* MENU */

.menu-bar {
  padding: 10px 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ff5a00;
  /* padding-top: 20px; */
}
.logo img {
  width: 190px;
}

/* NAV LINK */

.navbar-nav .nav-link {
  margin: 0 5px;
  font-weight: 500;
  color: #333 !important;
}

/* DROPDOWN */

.dropdown-menu {
  border: none;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

  display: block;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.3s;

  /* BLUE LINE */
  border-top: 3px solid #2d7c34;
}

/* SHOW ON HOVER */

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN ITEM */

.dropdown-item {
  padding: 10px 20px;
  transition: 0.2s;
}

.dropdown-item:hover {
  background: #f1f4ff;
  padding-left: 26px;
}
/* CARD */

.product-card {
  background: white;
  text-align: left;
  transition: 0.3s;
  height: 100%;
  border-radius: 8px;
  border: solid 1px #cccc;
}

.product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-img img {
  max-height: 180px;
  transition: 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* CATEGORY */

.category {
  color: #777;
  font-size: 14px;
  margin-bottom: 5px;
}

/* TITLE */

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ITEM CODE */

.item-code {
  color: #2d7c34;
  font-weight: 500;
  margin-bottom: 15px;
}

/* DIVIDER */

.line {
  height: 1px;
  background: #ddd;
  margin-bottom: 12px;
}

/* VIEW DETAILS BUTTON */

.view-btn {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: 0.3s;
}

/* UNDERLINE ANIMATION */

.view-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #2d7c34;
  transition: 0.3s;
}

.view-btn:hover {
  color: #2d7c34;
}

.view-btn:hover::after {
  width: 100%;
}

.footer {
  background: #f5f5f5;
  padding-top: 60px;
  font-family: arial;
}

.footer h5 {
  font-weight: 600;
  color: #0b5ea6;
  margin-bottom: 15px;
}

.footer a {
  display: block;
  text-decoration: none;
  color: #444;
  margin-bottom: 7px;
  font-size: 14px;
  transition: 0.3s;
}

.footer a:hover {
  color: #0b5ea6;
  padding-left: 5px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.payment img {
  height: 30px;
  margin-right: 10px;
}

.store img {
  height: 45px;
  margin-right: 10px;
}

.social i {
  font-size: 18px;
  margin-right: 12px;
  color: #0b5ea6;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.welcome-section {
  padding: 80px 0;
  background: #fff;
}

.small-title {
  color: #0d5c55;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  color: #0d5c55;
  margin-top: 10px;
  line-height: 1.2;
}

.title-line {
  width: 60px;
  height: 6px;
  background: #0d5c55;
  margin: 20px 0;
}
.title_line_custom {
  background-color: #2d7c34 !important;

  margin: 25px;
}

.welcome-text {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.image-grid img {
  width: 100%;
  border-radius: 6px;
  transition: 0.5s;
}

.image-grid img:hover {
  transform: scale(1.09);
}

.grid-gap {
  margin-bottom: 20px;
}

.others_page_bg {
  position: relative;
  background-image: url("../images/others-p-b.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 225px 0 60px;
}

.about_left_content h3 {
  font-size: 24px;
  font-weight: 600;
}
.about_left_content p {
  font-size: 14px;
  font-weight: 400;
}
.about_left_content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about_left_content ul > li {
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: flex;
}
.about_left_content ul > li > span {
  padding-right: 0.75rem;
}
.about_left_content ul > li > span > i {
  color: #05559d;
}
.disp_cell {
  display: table-cell;
  vertical-align: middle;
}
.about_mission_vission {
  position: relative;
  padding: 60px 0px 60px;
  background-color: #dce7f1;
}
.about_mv_content {
  background-color: #fff;
  border-radius: 8px;
}
.about_mv_info {
  padding: 0.75rem 1rem;
  transition: all 0.5s ease;
  max-height: 500px;
  min-height: 155px;
}
.about_mv_info h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.about_mv_info ul {
  margin-left: 1.5rem;
  padding: 0;
}
.about_mv_info ul > li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.board_directors_info h1 {
  font-size: 20px;
  color: #05559d;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.board_directors_info h3 {
  color: #e9242a;
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 400;
}
.kl_thumb {
  position: relative;
}
.kl_business_info .business_tumb {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0px;
  -webkit-animation: none;
  animation: none;
}
.nine_ways {
  background-color: #dce7f1;
  padding: 60px 0px 40px;
}
.nine_ways:before {
  content: "";
  background-image: url("");
  background-repeat: no-repeat;
  background-position: bottom;
  width: 48%;
  position: absolute;
  height: 100%;
  z-index: -1;
  right: 0;
  bottom: 0px;
}
.nine_ways_title {
  font-size: 30px;
  color: #05559d;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.nine_ways_income {
  background-color: rgb(239, 247, 255, 0.5);
  border: 1px solid #05559d;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 2rem;
}
.nine_ways_income h3 {
  font-size: 26px;
  color: #05559d;
  font-weight: 600;
  margin-bottom: 1rem;
}
.nine_ways_income p {
  font-size: 14px;
  color: #05559d;
  font-weight: 400;
  margin-bottom: 0rem;
}

.kl_bo_plan {
  padding: 60px 0px 60px;
  position: relative;
}
.kl_bo_plan::before {
  content: "";
  position: absolute;
  background-color: #05559d;
  top: 0;
  padding: 100px 0px 100px;
  height: auto;
  width: 100%;
}
.kl_plan_title {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}

.kl_bo_plan_bg {
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0px;
  z-index: 1;
  position: relative;
  border-radius: 12px;
}
.kl_bo_plan_info img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
.kl_bo_plan_info .view_plans {
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  padding: 1rem 0;
  text-align: center;
}
.kl_bo_plan_info .view_plans a {
  color: #fff;
  text-decoration: none;
  border-radius: 65px;
  background-color: #a7c3db;
  font-size: 13px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.cat_title {
  font-size: 40px;
  color: #05559d;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.card-custom {
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  margin-top: 25px;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Overlay (start from bottom) */
.overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: 0.5s ease;
}

/* Show overlay on hover */
.card-custom:hover .overlay {
  bottom: 0;
}

/* Social icons */
.overlay a {
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  background: #ffffff33;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  transform: translateY(30px);
  opacity: 0;
}

/* Animate icons */
.card-custom:hover .overlay a {
  transform: translateY(0);
  opacity: 1;
}

.overlay a:hover {
  background: #fff;
  color: #000;
}

/* Button */
.read-btn {
  border: 1px solid #000;
  background: transparent;
  padding: 8px 20px;
  border-radius: 5px;
  transition: 0.3s;
}

.card-custom:hover .read-btn {
  background: #000;
  color: #fff;
}

.card-body h5 {
  font-weight: 600;
}

.kl_health_content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.kl_health_content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kl_health_content .healthconcept_info {
  margin-bottom: 1.5rem;
}
.kl_health_content .healthconcept_info {
  border: 1px solid #4c99eb;
  padding: 10px 15px;
  border-left: 3px solid #4c99eb;
  border-radius: 5px;
  background-color: #eff7ff;
}
.kl_health_content .healthconcept_info h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  /* color: #05559D; */
}
.kl_health_content .healthconcept_info span {
  background-color: #4c99eb;
  margin-right: 0.5rem;
  border-radius: 65px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.kl_health_content .healthconcept_info p {
  font-size: 15px;
  margin: 0px;
  color: #212529;
}
.kl_health_content .healthconcept_info.hp_color1 {
  border: 1px solid #fcd64c;
  border-left: 3px solid #fcd64c;
  background-color: #fffbef;
}
.kl_health_content .healthconcept_info.hp_color2 {
  border: 1px solid #84be39;
  border-left: 3px solid #84be39;
  background-color: #f3ffe4;
}
.kl_health_content .healthconcept_info.hp_color3 {
  border: 1px solid #e27574;
  border-left: 3px solid #e27574;
  background-color: #ffebeb;
}
.kl_health_content img {
  border-radius: 30px;
}

.testimonial-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-weight: 700;
  font-size: 36px;
}

.review-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-8px);
}

.customer {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.customer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
}

.customer-name {
  font-weight: 600;
}

.product-name {
  font-size: 14px;
  color: #777;
}

.stars {
  color: #ffc107;
  margin: 10px 0;
}

.review-text {
  font-size: 14px;
  color: #555;
}

.kl_contact_info {
  padding: 25px 25px 25px 25px;
  background: #0064be;
  border-radius: 10px;
  position: relative;
  display: block;
  border-top: 1px solid #0064be;
  border-right: 1px solid #b9cddf;
  border-left: 1px solid #aec1dd;
  height: 100%;
}
.kl_contact_info .add_icon {
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  padding: 10px;
  background-color: #dfe8f5;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  border-radius: 65px;
  border-top: 4px solid #0064be;
}
.kl_contact_info p {
  font-size: 14px;
  margin-bottom: 0.25rem;
  color: #fff;
}
#kl_contact_map {
  max-height: 100%;
  height: 443px;
  display: block;
  width: 100%;
  border-radius: 12px;
  padding: 10px;
  background: #dfe8f5;
}

/* product view */

.productview-img {
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.product-title {
  font-size: 18px;
  font-weight: 700;
}

.pv-badge {
  background: #1e73be;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  display: inline-block;
  margin: 10px 0;
}

.mrp {
  text-decoration: line-through;
  color: #777;
}

.dp {
  font-size: 24px;
  font-weight: 700;
  color: #1e73be;
}

/* qty */

.qty-box {
  display: flex;
  width: 160px;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.qty-box button {
  width: 40px;
  border: none;
  background: #eee;
  font-size: 20px;
}

.qty-box input {
  border: none;
  text-align: center;
  width: 80px;
}

/* cart */

.cart-btn {
  background: #1e73be;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  width: 220px;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
}

/* tabs */

.tab-content {
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
  border-top: none;
}

/* product list */

.filter-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.filter-title {
  font-weight: 600;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.clear-btn {
  background: #28a745;
  color: white;
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
}

/* product */

.product-card {
  width: 270px;
  margin: 50px auto;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  padding-top: 25px;
  padding-bottom: 25px;
}

/* SOCIAL ICON TOP */
.social-icons {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: 0.3s;
  z-index: 2;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #2d7c34;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #000;
}

/* SHOW ON HOVER */
.product-card:hover .social-icons {
  top: 15px;
}

.card-body {
  text-align: center;
  padding: 15px;
}
.card-body h6 {
  font-size: 12px;
}
.card-body h5 {
  font-size: 15px;
}
.card-body p {
  font-size: 13px;
}

.item-code {
  color: #2d7c34;
  font-weight: 600;
}

/* BUTTON STYLE */
.view-btn {
  width: 100%;
  border: none;
  padding: 18px;
  background: #fff;
  transition: 0.3s;
  font-weight: 500;
}

.product-card:hover .hover__btn button {
  color: #fff;
  visibility: visible;
  margin-top: 75px;
  transition: all ease-in-out 0.4s;
}
.product-card:hover .hover__btn {
  /* margin-top: 75px; */
  transition: all ease-in-out 0.4s;
  position: absolute;
  bottom: 0px;
}
.hover__btn {
  position: absolute;
  bottom: 75px;
  width: 275px;
  z-index: 1;
  transition: all ease-in-out 0.4s;
}
.hover__btn button {
  background-color: #2d7c34 !important;
  color: #fff;
  visibility: hidden;
  transition: all ease-in-out 0.4s;
}
.carousel-2 .item {
  position: relative;
}

.gap_140 {
  padding-top: 140px;
}

.owl-carousel .owl-nav.disabled {
  display: block !important;
}

.carousel-1 .owl-nav {
  font-size: 100px;
  color: #fff;
}
.carousel-1 .owl-prev {
  position: absolute;
  left: 70px;
  top: 43%;
}
.carousel-1 .owl-next {
  position: absolute;
  top: 43%;
  right: 70px;
}
.carousel-2 .owl-nav {
  font-size: 100px;
  color: #515050;
}
.carousel-2 .owl-prev {
  position: absolute;
  left: -60px;
  top: 27%;
}
.carousel-2 .owl-next {
  position: absolute;
  top: 27%;
  right: -60px;
}
.carousel-2 .owl-nav [class*="owl-"]:hover {
  background: #fff !important;
  color: #515050 !important;
  text-decoration: none;
}
.carousel-3 .owl-nav {
  font-size: 100px;
  color: #515050;
}
.carousel-3 .owl-prev {
  position: absolute;
  left: -60px;
  top: 35%;
}
.carousel-3 .owl-next {
  position: absolute;
  top: 35%;
  right: -60px;
}
.carousel-3 .owl-nav [class*="owl-"]:hover {
  background: #fff !important;
  color: #515050 !important;
  text-decoration: none;
}

.carousel-4 .owl-nav {
  font-size: 100px;
  color: #515050;
}
.carousel-4 .owl-prev {
  position: absolute;
  left: -60px;
  top: 23%;
}
.carousel-4 .owl-next {
  position: absolute;
  top: 23%;
  right: -60px;
}
.carousel-4 .owl-nav [class*="owl-"]:hover {
  background: #fff !important;
  color: #515050 !important;
  text-decoration: none;
}
.carousel-4 .item {
  display: flex;
  justify-content: center;
}

.carousel-5 .owl-nav {
  font-size: 100px;
  color: #fff;
}
.carousel-5 .owl-prev {
  position: absolute;
  left: -30px;
  top: 23%;
}
.carousel-5 .owl-next {
  position: absolute;
  top: 23%;
  right: -30px;
}
.carousel-5 .owl-nav [class*="owl-"]:hover {
  background: transparent !important;
  color: #fff !important;
  text-decoration: none;
}

.hedding_clr {
  color: #0d5c55;
}

/* HEADER */
.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.badge-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #000;
  color: #f5c542;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.title-box {
  background: #0b1c1c;
  color: #f5c542;
  padding: 15px 30px;
  border-radius: 40px;
  font-size: 28px;
  font-weight: 700;
}

/* CARD */
.story-card {
  background: #fff;
  overflow: hidden;
  border-radius: 5px;
  transition: 0.3s;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.img-box {
  position: relative;
}

.img-box img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.name-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.story-content {
  padding: 15px;
  font-size: 14px;
  color: #333;
  min-height: 110px;
}

.read-more {
  color: #2d7c34;
  text-decoration: none;
  font-size: 14px;
  float: right;
  cursor: pointer;
}

.read-more:hover {
  text-decoration: underline;
}

.award-section {
  visibility: visible;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 20px;
}

.awards-section {
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Golden line background */
.awards-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to right,
    rgba(255, 215, 0, 0.05),
    rgba(255, 215, 0, 0.05) 2px,
    transparent 2px,
    transparent 20px
  );
  top: 0;
  left: 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.award-card {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.circle {
  width: 200px;
  height: 200px;
  margin: auto;
  border-radius: 50%;
  border: 3px solid gold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, #1a1a1a, #000);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  transition: 0.4s;
}

.circle::before,
.circle::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 215, 0, 0.4);
}

.award-icon {
  font-size: 40px;
  color: gold;
  margin-bottom: 10px;
}

.award-title {
  font-weight: 700;
  color: gold;
  font-size: 18px;
  line-height: 1.3;
}

.award-text {
  margin-top: 20px;
  color: #ddd;
  font-size: 15px;
}

.award-card:hover .circle {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}
.product-box {
  text-align: center;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.product-box img {
  width: 100%;
  height: 250px;
  transition: all ease-in-out 1.1s;
  /* object-fit: contain; */
  /* padding: 20px; */
}
.product-box a {
  text-decoration: none;
}
.product-box:hover .social-icons {
  top: 15px;
}
/* .product-box:hover img {
  transform: scale(0.5);
  transition: all ease-in-out 0.7s;
} */

.box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-product img {
  width: 50px;
}

.product-title {
  font-weight: 600;
  color: #1a3c6e;
}

.cart_qty-box {
  display: flex;
  align-items: center;
}

.cart_qty-box button {
  width: 35px;
  height: 35px;
  border: none;
  background: #e9ecef;
}

.cart_qty-box input {
  width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  height: 35px;
}

.update-btn {
  height: 38px;
  background: #59c36a;
  border: none;
  color: white;
  padding: 0 25px;
  border-radius: 4px;
  font-size: 13px;
}

.remove {
  color: red;
  font-size: 13px;
  cursor: pointer;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.checkout-btn {
  width: 100%;
  background: #28a745;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
}

/* PRODUCT GALLERY */
.product-gallery {
  display: flex;
  gap: 15px;
}

.thumb-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumb-box img {
  width: 70px;
  height: 70px;
  border: 2px solid #ddd;
  cursor: pointer;
  border-radius: 6px;
  object-fit: cover;
  transition: 0.3s;
}

.thumb-box img:hover {
  border-color: green;
}

.active-thumb {
  border-color: red !important;
}

.main-img-box {
  overflow: hidden;
  position: relative;
}

.main-img-box img {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoomed {
  cursor: grab;
}

.zoomed:active {
  cursor: grabbing;
}
/* PRODUCT DETAILS */
.product-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.product-category {
  font-size: 16px;
}
.item-code {
  font-size: 16px;
}

.cart-btn {
  background: green;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
}

/* PRODUCT BOX */
.product-box {
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.product-img {
  height: 200px;
  object-fit: cover;
}

/* SECTION */
.contact-section {
  padding: 60px 0;
}

/* LEFT TEXT */
.contact-left h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.contact-left .email {
  color: #0b5ea6;
}

/* RIGHT FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.form-control {
  border-radius: 50px;
  padding: 12px 20px;
  border: 1px solid #ddd;
}

textarea.form-control {
  border-radius: 20px;
  height: 150px;
}

/* BUTTON */
.send-btn {
  background: #0b5ea6;
  border: none;
  color: #fff;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
}

.send-btn:hover {
  background: #0b5ea6;
}
.carousel-1 .owl-nav [class*="owl-"]:hover {
  background: #7f8584;
  opacity: 0.5;
}
.mobile_logo img {
  width: 138px;
}

.menu-btn {
  font-size: 28px;
  cursor: pointer;
  border: none;
  background: none;
}

/* Hero */
.hero {
  height: 300px;
  background: linear-gradient(to right, #f9a825, #1b5e20);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
}

/* Sidebar Styling */
.offcanvas {
  transition: transform 0.4s ease-in-out;
}

.menu-link {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.menu-link:hover {
  background: #e8f5e9;
  color: #1b5e20;
}

/* Dropdown animation */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 15px;
}

.submenu a {
  font-size: 14px;
  color: #555;
}

.submenu.show {
  max-height: 300px;
}

/* Arrow rotate */
.arrow {
  float: right;
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(90deg);
}
.offcanvas-start {
  width: 320px;
}

/* GRID */
.report-container {
  padding: 10px 15px;
}

.report-card {
  background: #0b2c44;
  color: #fff;
  border-radius: 15px;
  padding: 20px 10px;
  text-align: center;
  margin-bottom: 15px;
  transition: 0.3s;
  cursor: pointer;
}

.report-card:hover {
  transform: translateY(-5px);
}

.form-box {
  background: #fff;
  padding: 20px;
  margin: 15px;
  border-radius: 10px;
}

/* Export Button */
.btn-export {
  background: #ffc107;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-export:hover {
  background: #e55d00;
  transform: scale(1.05);
}

/* Card Style */
.order-card {
  background: #fff;
  border-radius: 12px;
  margin-top: 12px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Effect 🔥 */
.order-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Top row */
.order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.order-id {
  font-weight: 600;
}

.order-date {
  font-size: 12px;
  color: #888;
}

/* Product */
.product {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.product-name {
  font-weight: 500;
}

/* Price */
.price {
  font-weight: 600;
  color: #28a745;
}

/* Status */
.status {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 5px;
}

.paid {
  background: #d4edda;
  color: #28a745;
}

.pending {
  background: #fff3cd;
  color: #856404;
}
.board_directors_info img {
  width: 100%;
}

.privacy-policy {
  background: #f8f9fa;
}

.policy-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.policy-box h2 {
  font-weight: 700;
  color: #2d7c34;
}

.policy-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.policy-section {
  margin-top: 25px;
}

.policy-section h5 {
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  border-left: 4px solid #2d7c34;
  padding-left: 10px;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.policy-section p {
  color: #555;
  line-height: 1.7;
}

.policy-box:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.disclaimer-page {
  background: #f4f7fb;
}

.policy-box ul li {
  position: relative;
  padding-left: 10px;
}

.policy-box ul li::marker {
  color: #2d7c34;
  font-weight: bold;
}
.refund-policy {
  background: #eef3f9;
}

.policy-section h5 {
  background: #f1f6ff;
  padding: 8px 12px;
  border-radius: 5px;
}

.policy-section ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.shipping-policy {
  background: #f3f7ff;
}

.policy-section h5 {
  font-weight: 600;
  color: #2d7c34;
}

.policy-section ul li {
  padding-left: 5px;
}
.terms-page {
  background: #f5f7fb;
}

.policy-section h5 {
  color: #2d7c34;
  font-weight: 600;
}

.custom-navbar img {
  opacity: 1;
}
.card-body {
  padding: 0px !important;
}
.card-body h5 {
  font-size: 20px;
}
.card-body h6 {
  font-size: 16px;
}
.card-body p {
  font-size: 16px;
}

/* ================= WHY PROVEDA ================= */

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.why-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  left: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4a73c9, #6fa8ff);
  transition: 0.4s;
  z-index: 0;
}

.why-card:hover::before {
  height: 100%;
}

.why-card * {
  position: relative;
  z-index: 1;
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.icon-box i {
  font-size: 26px;
  color: #4a73c9;
  transition: 0.4s;
}

.why-card h6 {
  font-weight: 600;
  font-size: 14px;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-card:hover h6 {
  color: #fff;
}

.why-card:hover .icon-box {
  background: #fff;
}

.why-card:hover .icon-box i {
  transform: rotate(10deg) scale(1.2);
}

/* ================= HERO ================= */

.hero {
  background:
    linear-gradient(rgba(0, 0, 150, 0.6), rgba(0, 0, 150, 0.6)),
    url("") center/cover;
  color: #fff;
  padding: 60px 0;
}

.hero img {
  border-radius: 10px;
  width: 100%;
}

.hero ul {
  list-style: none;
  padding: 0;
}

.hero ul li::before {
  content: "✔";
  margin-right: 10px;
  color: #0f0;
}

/* ================= COMPENSATION ================= */

.btn-green {
  background: #28a745;
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  border: none;
}

/* ================= IMAGE SECTION ================= */

.img-box img {
  width: 100%;
  border-radius: 10px;
}

.img-box p {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

/* ================= TUTORIAL ================= */

.tutorial-box {
  background: #4a73c9;
  height: 200px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 40px;
}

.tutorial-img img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.text-green {
  color: #28a745;
  font-weight: bold;
  margin-top: 5px;
}
.custom_list li {
  list-style: none;
  font-size: 17px;
  line-height: 2;
}
.contact_bg {
  position: relative;
  background-image: url("../images/contact_banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  padding: 300px 0 100px;
  width: 100%;
}
.contact_bg h3 {
  font-size: 45px !important;
}
.business_page {
  background-image: url(../images/business/banner.jpg);
  padding-top: 60px;
  padding-bottom: 100px;
  height: 500px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.business_page h3 {
  font-size: 30px;
  color: #000;
}
.business_page .title-line {
  background-color: #000;
}
.business_btn {
  background-color: #92b5d4;
  width: 250px;
  border-radius: 15px;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-img {
  width: 80px; /* size control */
  height: auto;
}

.loader-img {
  width: 100px;
  animation: zoom 1.5s infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.p15 {
  padding: 15px !important;
}

.card-achiever {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  margin-bottom: 25px;
  position: relative;
  background: #fff;
  width: 270px;
}

.card-achiever img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s;
}

.card-body {
  text-align: center;
  padding: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-text {
  font-size: 14px;
  color: #777;
}

/* Rank Badge */
.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
}

/* Hover Effect */
.card-achiever:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.card-achiever:hover img {
  transform: scale(1.1);
  overflow: hidden;
}
.award__bg {
  background-image: url(../images/award/award-background.jpg);
  padding-top: 130px;
  /* padding-bottom: 130px; */
  padding-left: 60px;
  padding-right: 60px;
}
.business_page li {
  font-weight: 600;
  font-size: 21px;
}

#topBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  height: 50px;
  width: 50px;
}

#topBtn:hover {
  background-color: #0056b3;
}
.certifications_card {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

  margin-top: 15px;
}

/* IMAGE */
.certifications_card img {
  width: 100%;
  height: 280px;
  /* object-fit: cover;
        border: 8px solid #5b2c06; */
  border-radius: 4px;
  padding-top: 5px;
  border-bottom: solid 1px #ccc;
}

/* HEADING BELOW IMAGE */
.certifications_card h4 {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  text-align: center;
}

/* HOVER EFFECT */
.certifications_card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* OVERLAY */
.certifications_card::after {
  content: "View Certificate";
  position: absolute;
  width: 100%;
  height: calc(100% - 45px); /* heading বাদ দিয়ে overlay */
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: 0.3s;
}

.certifications_card:hover::after {
  opacity: 1;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal iframe {
  width: 80%;
  height: 90%;
  border: none;
  background: #fff;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}