@charset "utf-8";
/* CSS Document */

/* ===== Slider Base ===== */
.main-slider-three {
    width: 100%;
    overflow: hidden;
}

/* Slider item auto height */
.main-slider-three__item {
    position: relative;
}

/* Full Image */
.slider-img {
    width: 100%;
    height: auto;        /* Auto height ensures full image visible */
    display: block;
}

/* Overlay */
.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Content */
.main-slider-three__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 15px;
}

.main-slider-three__content h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.main-slider-three__content p {
    font-size: 18px;
}

/* ===== Fancy Animated Arrows ===== */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.owl-nav button span {
    font-size: 28px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect: grow + glow */
.owl-nav button:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-50%) scale(1.2);
    border-color: #00e0ff;
    box-shadow: 0 8px 20px rgba(0,224,255,0.6);
}

.owl-nav button:hover span {
    color: #00e0ff;
    transform: scale(1.2);
}

/* Position arrows */
.owl-prev { left: 20px; }
.owl-next { right: 20px; }
.owl-dots
{
	display:none !important
}

/* Dots */
/*.owl-dots {
    text-align: center;
    margin-top: 10px;
}*/

/*.owl-dot {
    width: 14px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    margin: 0 5px;
}*/

/*.owl-dot.active {
    width: 40px;
    background: linear-gradient(90deg,#00e0ff,#00ffa2);
}*/

/* Responsive */
@media (max-width: 992px) {
    .main-slider-three__content h2 { font-size: 32px; }
    .main-slider-three__content p { font-size: 16px; }
}

@media (max-width: 768px) {
    .main-slider-three__content h2 { font-size: 24px; }
    .main-slider-three__content p { font-size: 14px; }
    .owl-nav { display: none; }
}

@media (max-width: 480px) {
    .main-slider-three__content h2 { font-size: 18px; }
    .main-slider-three__content p { font-size: 12px; }
}


/*Nav Bar*/
.topbar {
  background: linear-gradient(90deg, #e31e24, #028e46);
  padding: 5px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, sans-serif;
}
.topbar-left,
.topbar-right { display: flex; align-items: center; }

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
}
.pill a { color: #fff; text-decoration: none; font-size: 15px; font-weight: 600; }
.icons-only a { color: #fff; margin: 0 6px; font-size: 14px; }
.divider { width: 1px; height: 24px; background: rgba(255,255,255,0.4); margin: 0 12px; }

/* Language dropdown */
.language-pill { position: relative; }
.language-pill .language-dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  list-style: none;
  padding: 8px 0;
  display: none;
  min-width: 100px;
  z-index: 100;
}
.language-pill .language-dropdown li {
  padding: 6px 16px;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s;
}
.language-pill .language-dropdown li:hover {
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
}

/* Sticky header */
#navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background: linear-gradient(90deg, #0f2347, #2e7d32);
  transition: all 0.3s ease;
}
.main-header__wrapper { transition: padding 0.3s ease; }

/* Prevent content jump when sticky */
body { margin: 0; }
#navbar + .content { padding-top: 120px; }


/* About us slider start*/
.slider-container {
  width: 100%;
  max-width: 500px;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  margin-top: 3%;
}

.slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(.77,0,.18,1);
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

/* Hover zoom */
.slider-container:hover img {
  transform: scale(1.08);
}

/* Navigation buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
}

.nav:hover {
  background: #2e7d32;
}

.prev {
  left: 18px;
}

.next {
  right: 18px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 18px;
  width: 100%;
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots span.active {
  background: #fff;
  width: 22px;
  border-radius: 10px;
}
	
	.text-boxx {
  color: white;
  padding: 20px 20px;
  background: rgba(0, 0, 0, 0.45); /* contrast */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /*border-radius: 10px;*/
}

/* testimonial css*/
.testimonials-carousel {
  position: relative;
  padding: 30px 0;
  background-image: url('assets/images/footer-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
}

/* Overlay blur effect for background only */
.testimonials-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42,111,62,0.5);
  backdrop-filter: blur(6px);
  z-index: 0;
}

.testimonials-carousel h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-slider {
  position: relative;
  z-index: 1; /* cards above overlay */
}

.testimonial-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 220px;
  margin: 0 10px;
  color: #333; /* text color for cards */
}

.testimonial-card .quote-icon {
  font-size: 50px;
  color: #2a6f3e;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.15;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.testimonial-meta img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #2a6f3e;
}

.testimonial-meta .name {
  font-weight: 600;
}

.testimonial-meta .designation {
  font-size: 13px;
  color: #777;
}

/* Dots */
.slick-dots {
  bottom: -30px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff; /* white dots for visibility on dark overlay */
  opacity: 0.7;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

/*Home testimonial section*/
.blog-testimonial-section {
    padding: 30px 0;
    background: #f4f8f6;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
}

.section-heading h2 span {
    color: #2c9f45;
}

.section-heading p {
    color: #666;
    margin-top: 10px;
}

/* Card */
.blog-testimonial-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform .4s ease;
}

.blog-testimonial-card:hover {
    transform: translateY(-10px);
}

/* Image */
.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: #2c9f45;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 20px;
    margin: 10px 0;
    line-height: 1.4;
}

.blog-author {
    font-size: 14px;
    color: #777;
}

.blog-author i {
    margin-right: 6px;
    color: #2c9f45;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #2c9f45;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* View All */
.view-all-btn {
    padding: 12px 30px;
    background: #2c9f45;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}


.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 10px;
}

.blog-date {
    color: #2c9f45;
    font-weight: 600;
}

.blog-author {
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-author i {
    color: #2c9f45;
    font-size: 13px;
}

/*About buttion*/
 .fancy-btn {
	 float:right;
		   display: inline-flex;
		   align-items: center;
		   gap: 10px;
		   padding: 4px 22px;
		   border-radius: 30px;
		   font-weight: 600;
		   text-decoration: none;
		   transition: all 0.4s ease;
}
	   .glow-btn {
    position: relative;
    color: #2c9f45;
    border: 2px solid #2c9f45;
    background: transparent;
    overflow: hidden;
}

.glow-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2c9f45;
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s ease;
    z-index: -1;
}

.glow-btn:hover {
    color: #fff;
}

.glow-btn:hover::before {
    transform: scaleX(1);
}

/*Product css*/
.hot-products-two {
    background: #ebeae5;
    padding: 30px 0;
}

/* Title */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
}

/* Grid */
.hot-products-grid {
    margin-top: 40px;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Image */
.product-img {
    background: #f7f7f7;
    padding: 30px;
    text-align: center;
}

.product-img img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}

/* Content */
.product-content {
    padding: 25px;
    text-align: center;
}

.product-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-title a {
    color: #222;
    text-decoration: none;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #2c9f45;
    margin-bottom: 18px;
}

/* Button */
.product-btn {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    background: linear-gradient(135deg, #2c9f45, #56c271);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .4s ease;
}

.product-btn:hover {
    background: linear-gradient(135deg, #24913c, #3fb15b);
    transform: translateY(-2px);
}

/* Discount badge */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e63946;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
}

/* Price layout */
.price-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.new-price {
    font-size: 20px;
    font-weight: 800;
    color: #2c9f45;
}

.old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Make card relative for badge */
.product-card {
    position: relative;
}
