.new-home-body {
	background-color: inherit !important;
	font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}
a {
  text-decoration: none;
}
.container {
	padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* ── Header ── */
.home-header-section1 {
	background: inherit !important;
	position: absolute;
    z-index: 9;
    width: 100%;
}
.home-header-section1 .header {
	background: linear-gradient(45deg, #ffffffb8, #ffffff73);
}
.home-header-section1 .header-right {
	text-align: right;
}
.home-header-section1 .header-top1 {
	    background: #ffffffeb;
}
.home-header-section1 .nav-link {
	font-size: 14px;
    font-weight: 700;
}
.home-header-section1 .navbar-nav .nav-link {
	padding-left: 8px;
	padding-top: 15px;
        padding-bottom: 15px;
}
.home-header-section1 .navbar-expand-lg .navbar-collapse {
	padding-right: 15px;
	padding-left: 15px;
	margin-top: -35px;
}


/* ── Hero Banner ── */
.hero-slide {
  position: relative;
  height: 100vh;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 500px;
  z-index: 2;
  margin-top: 20%;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.hero-content p {
  font-size: 16px;
  margin: 15px 0;
  color: #000;
}

.hero-btn {
  background: #165ea4;
  color: #fff;
  border-radius: 25px;
  padding: 5px 10px;
  font-size: 14px;
}

.hero-btn:hover {
  background: #0d4c8a;
  color: #FFF;
}

/* pagination style */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #000;
}
@media (max-width: 767px) {
	.hero-slide {
    height: 100vh;
  }

	.hero-content {
		margin-top: 30%;
	}
  .hero-btn {
    font-size: 12px;
    padding: 5px 10px;
  }

  .hero-content img {
    width: 200px !important;
  }
  .home-header-section1 .collapse.in {
	 display: block !important;
  }
  .home-header-section1 .navbar-toggler {
	width: 50px;
  }
  .home-header-section1 .navbar-light .navbar-toggler-icon {
	margin: 5px 0 0 0;
  }
  .home-header-section1 .navbar-expand-lg .navbar-collapse {
	  margin-top: 0;
  }
  .home-header-section1 .navbar-toggler:focus {
	  box-shadow: inherit;
  }
	.home-header-section1 .header-left {
        display: none !important;
    }
}
@media (min-width: 767px) and (max-width: 991px) {
  .hero-slide {
    height: 100vh;
  }

	.hero-content {
		margin-top: 30%;
	}
  .hero-btn {
    font-size: 12px;
    padding: 5px 10px;
  }

  .hero-content img {
    width: 200px !important;
  }
  .home-header-section1 .header-left {
	display: block !important;
  }
  .home-header-section1 .collapse.in {
	 display: block !important;
  }
  .home-header-section1 .navbar-toggler {
	width: 50px;
  }
  .home-header-section1 .navbar-light .navbar-toggler-icon {
	margin: 5px 0 0 0;
  }
  .home-header-section1 .navbar-expand-lg .navbar-collapse {
	  margin-top: 0;
  }
  .home-header-section1 .navbar-toggler:focus {
	  box-shadow: inherit;
  }
}

/* ── News Section ── */
.news-section {
  background: #f8f8f8;
  padding: 20px 0;
  overflow: hidden;
}

.news-section img {
  height: 60px;
  opacity: 1;
  transition: 0.3s;
}

.news-section img:hover {
  opacity: 1;
}

.newsSwiper .swiper-slide {
  width: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .news-section img {
    height: 40px;
  }

  .newsSwiper .swiper-slide {
    padding: 0;
  }
}

/* ── Category Section ── */
.categories-section {
  background: #FFF;
  padding: 60px 0;
}

.categories-section h2 {
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
}

.category {
  transition: 0.3s;
}

.category-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px dotted #000;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.category p {
  font-size: 14px;
  font-weight: 500;
  color: #333;

}

/* Hover Effect */
.category:hover .category-image {
  transform: scale(1.08);
  border-color: #165ea4;
}

.category:hover p {
  color: #165ea4;
}

/* ── Features Section ── */
.features-section {
  background: #e0f2f1;
  padding: 60px 0;
}

.features-section h2 {
  color: #006A52;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
}

.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.feature p {
  color: #006A52;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.feature:hover p {
  color: #004d3a;
}

/* ── Wellness Section ── */
.wellness-section {
  padding: 80px 0;
  background: #fff;
}

.wellness-image img {
  border-radius: 12px;
  width: 100%;
  transition: 0.4s;
}

.wellness-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 35px;
  line-height: 44px;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

.wellness-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* ── Features Section One ── */
.features-section1 {
  background: #fff;
}

.features-container {
  padding: 50px 0;
}

.feature-card {
  text-align: left;
  transition: 0.3s;
}

.feature-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 26px;
}

.feature-card p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

.hero-section {
  text-align: center;
  background-color: #cce6ff;
  padding: 50px 20px;
  margin-top: 30px;
}

.hero-section img {
  width: 120px;
  margin-bottom: 20px;
}

.hero-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  color: #222;
}

.hero-section h4 {
  font-size: 16px;
  margin: 5px 0 20px;
  color: #555;
}

.hero-section p {
  font-size: 14px;
  color: #000;
  max-width: 800px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

.herbo1 {
  transform: translate(10px, -85px) !important;
  width: 20% !important;
  margin-bottom: -56px !important;
}

.herbo2 {
  width: 30% !important;
  margin-bottom: 40px !important;
}

.herbo3 {
  width: 80% !important;
}

@media (max-width: 767px) {

  .herbo2,
  .herbo1 {
    width: 50% !important;
  }

  .herbo3 {
    width: 100% !important;
  }
}

/* ── Wellness Section One ── */
.wellness-section {
  padding: 80px 0;
}

.text-block {
  padding: 80px;
}

.text-block h2 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  line-height: 44px;
}

.text-block p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

.image-block img {
 width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
}

@media (max-width: 767px) {
  .image-block img {
    max-width: 100%;
  }
}

/* ── Testimonial Section ── */
.tt-content-info {
  padding-left: 10%;
  padding-right: 10%;
  display: contents;
}
.tt-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.firclsass img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin: auto;
}

.secondclsas p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
}

.tt-text-large {
  font-weight: 600;
}

.tt-text-small {
  font-size: 14px;
  color: #888;
}

.custom-arrow {
  width: 45px;
  height: 45px;
  background: #f2f2f2;
  border-radius: 50%;
  color: #333;
}

.custom-arrow::after {
  font-size: 16px;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

@media(max-width:768px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* ── Blog Section ── */
.blog-section {
  background: #f4f4f4;
  padding: 80px 0;
}

.tt-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.blog-card a p {
  color: #777;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #191919;
}
.blog-card h3:hover  {
  color: #007bff;
}
.blog-card p:hover {
  color: #007bff;
}

.blog-card h3 a {
  color: #1a1a1a;
  text-decoration: none;
}

.blog-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 3px;
}

.blog-author {
  font-size: 13px;
  color: #999;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ── Shorts Section ── */
.short-video {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.short-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.short-title {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

.shortsSwiper .swiper-slide {
  padding: 0 10px;
}

.shortsSwiper .swiper-button-lock {
  display: flex;
}

@media(max-width:768px) {
  .short-video {
    height: 350px;
  }
}

/* ── CTA Section ── */
.product-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-container {
    display: flex;
    background-color: white;
    width:100%;
}

.product-image {
    width: 60%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    width: 40%;
    background-color: #1666af; /* Blue background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px;
    text-align: center;
}

.product-content h2 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding-bottom: 23px;
    margin-bottom: 20px;
}

.product-button {
    background-color: white;
    color: #1666af;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #e6e6e6;
}

@media(max-width:768px) {
  .product-content {
    padding: 30px 20px;
    min-height: auto;
  }

  .bottarea {
    font-size: 24px;
  }
}

/* ── tt-back-to-top ── */
@media (min-width: 790px) {
  .tt-back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #3b82f6;
    border-radius: 6px;
    position: fixed;
    bottom: -64px;
    right: 20px;
    z-index: 20;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .tt-back-to-top svg {
    width: 24px;
    height: 24px;
  }

  .tt-back-to-top:hover {
    background: #1e293b;
    transform: translateY(-3px);
  }

  .tt-back-to-top.tt-show {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 789px) {
  .tt-back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #3b82f6;
    border-radius: 6px;
    position: fixed;
    bottom: -64px;
    right: 10px;
    z-index: 20;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .tt-back-to-top svg {
    width: 24px;
    height: 24px;
  }

  .tt-back-to-top:hover {
    background: #1e293b;
    transform: translateY(-3px);
  }

  .tt-back-to-top.tt-show {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
  }
}

.new-home-body .footer-index-img {
	margin-top: 0 !important;
}
.new-home-body .footer-index-img .footer-heading {
	font-size: 18px;
	font-weight: 500;
}