/* slidder  section start */

/* home page hero section start */
.homeSliderSectionWithDynamicSlides {
  position: relative;
  height: 540px;
  overflow: hidden;
  background-color: #f0f4f8;
}
.slideContainerForDynamicTransitions {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.individualSlideWithAnimatedContent {
  min-width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.navigationButtonForSlideControl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2em;
  padding: 10px 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.navigationButtonForSlideControl:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}
#previousSlideNavigationButton {
  left: 20px;
}
#nextSlideNavigationButton {
  right: 20px;
}
.dotIndicatorContainerForSlides {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dotIndicatorForSlideSelection {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.dotIndicatorForSlideSelection.active {
  background-color: #00a1b5;
  transform: scale(1.3);
}
.dotIndicatorForSlideSelection:hover {
  background-color: #00a1b5;
  transform: scale(1.3);
}
@media (max-width: 640px) {
  .homeSliderSectionWithDynamicSlides {
    height: 300px;
  }
  .individualSlideWithAnimatedContent {
    font-size: 1.5em;
  }
  .navigationButtonForSlideControl {
    font-size: 1.5em;
    padding: 8px 15px;
  }
  .dotIndicatorForSlideSelection {
    width: 10px;
    height: 10px;
  }
}

/* home page hero section end */

/* slidder section end */

/* home about section start */
.home-about-section {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.home-container-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
  max-width: 1200px;
  margin: 20px auto;
}
.home-content-display {
  flex: 1 1 60%;
  padding: 20px;
}
.home-certificate-presentation {
  flex: 1 1 30%;
  padding: 20px;
  text-align: center;
}
.home-title-heading {
  color: green;
  font-size: 2.5em;
  margin-bottom: 10px;
}
.home-text-paragraph {
  font-size: 1.1em;
  line-height: 1.4;
  color: #333;
}
.home-certificate-presentation img {
  max-width: 100%;
  height: 400px;
}
.home-read-more-button {
  background-color: #003b7a;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 1em;
}
.home-read-more-button:hover {
  background-color: #218838;
}
@media (max-width: 768px) {
  .home-container-layout {
    flex-direction: column;
    width: 90%;
  }
  .home-content-display,
  .home-certificate-presentation {
    flex: 1 1 100%;
  }
  .home-title-heading {
    font-size: 1.6em;
  }
}
/* 
  home about section end  */

/* featured section start here */

.FeaturedCategories-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.FeaturedCategories-heading {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.FeaturedCategories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.FeaturedCategories-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.FeaturedCategories-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  margin: auto;
}

.FeaturedCategories-item:hover img {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .FeaturedCategories-item img {
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    margin: 10px auto;
  }
  .FeaturedCategories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .FeaturedCategories-grid {
    grid-template-columns: 1fr;
  }

  .FeaturedCategories-heading {
    font-size: 1.8rem;
  }
}

/* Staggered animation for each item */
.FeaturedCategories-item:nth-child(1) {
  animation-delay: 0.1s;
}
.FeaturedCategories-item:nth-child(2) {
  animation-delay: 0.2s;
}
.FeaturedCategories-item:nth-child(3) {
  animation-delay: 0.3s;
}
.FeaturedCategories-item:nth-child(4) {
  animation-delay: 0.4s;
}
.FeaturedCategories-item:nth-child(5) {
  animation-delay: 0.5s;
}
.FeaturedCategories-item:nth-child(6) {
  animation-delay: 0.6s;
}
.FeaturedCategories-item:nth-child(7) {
  animation-delay: 0.7s;
}
.FeaturedCategories-item:nth-child(8) {
  animation-delay: 0.8s;
}
.FeaturedCategories-item:nth-child(9) {
  animation-delay: 0.9s;
}

/* featured section End here */

/* triphly start here */

.triphlyBannerContainer {
  width: 100%;
  height: 80vh; /* Slightly reduced height */
  max-width: 1200px; /* Slightly reduced width */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.triphlyBannerContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the container */
  display: block;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .triphlyBannerContainer {
    height: 60vh; /* Adjusted for smaller screens */
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .triphlyBannerContainer {
    height: 50vh; /* Further reduced for mobile */
  }
}

/* triphly End here */

/* New Arrivals Slider start here */

.NewArrivals-container {
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
  font-family: "Arial", sans-serif;
}

.NewArrivals-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #3c2f2f;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.NewArrivals-slider {
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.NewArrivals-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.NewArrivals-slide {
  flex: 0 0 25%;
  padding: 10px;
  text-align: center;
}

.NewArrivals-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #8b4513;
}

.NewArrivals-slide-name {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #3c2f2f;
  font-weight: bold;
}

.NewArrivals-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #8b4513;
  color: #ffffff;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.NewArrivals-arrow:hover {
  background-color: #5c4033;
}

.NewArrivals-arrow-left {
  left: 10px;
}

.NewArrivals-arrow-right {
  right: 10px;
}

@media (max-width: 1024px) {
  .NewArrivals-slide {
    flex: 0 0 33.33%;
  }
  .NewArrivals-slide img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .NewArrivals-slide {
    flex: 0 0 50%;
  }
  .NewArrivals-slide img {
    height: 200px;
  }
  .NewArrivals-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .NewArrivals-slide {
    flex: 0 0 100%;
  }
  .NewArrivals-slide img {
    height: 180px;
  }
  .NewArrivals-arrow {
    padding: 10px;
    font-size: 1.2rem;
  }
}

/* New Arrivals Slider End here */

/* patti start here */

.statisticsBannerContainer {
  background-color: #000;
  width: 100%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.statisticsBannerItem {
  display: flex;
  align-items: center;
  margin: 20px 0;
  text-align: left;
  max-width: 300px;
  width: 100%;
}

.statisticsBannerIcon {
  font-size: 2rem;
  margin-right: 15px;
}

.statisticsBannerContent {
  display: flex;
  flex-direction: column;
}

.statisticsBannerNumber {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 5px;
  animation: countUp 2s ease-out forwards;
}

.statisticsBannerHeading {
  font-size: 1rem;
  color: #ccc;
}

@keyframes countUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .statisticsBannerContainer {
    flex-direction: row;
    justify-content: space-around;
    padding: 60px 20px;
  }

  .statisticsBannerItem {
    margin: 0 20px;
    max-width: 350px;
  }

  .statisticsBannerNumber {
    font-size: 2.5rem;
  }

  .statisticsBannerHeading {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .statisticsBannerItem {
    justify-content: center;
  }
}

/* patti End here */

/* slider section start here */

.slider-container-wrapper {
  background: linear-gradient(135deg, #5771f4 50%, #8b4513 50%);
  padding: 50px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-heading-title {
  font-size: 2.5rem;
  color: #131212;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Arial", sans-serif;
  text-transform: uppercase;
}

.slider-main-container {
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-card-track {
  display: flex;
  animation: slideAnimation 40s linear infinite;
}

.slider-card-item {
  flex: 0 0 300px;
  margin: 15px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.slider-card-item:hover {
  transform: scale(1.05);
}

.slider-card-image {
  width: 100%;
  height: 260px;

  object-fit: conatin;
  margin-top: 20px;
}

.slider-card-content {
  padding: 15px;
  text-align: center;
}

.slider-card-title {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
  font-family: "Arial", sans-serif;
}

@keyframes slideAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-7200px);
  } /* 24 cards * 300px */
}

@media (max-width: 768px) {
  .slider-heading-title {
    font-size: 1.8rem;
  }

  .slider-card-item {
    flex: 0 0 250px;
  }

  .slider-card-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .slider-heading-title {
    font-size: 1.5rem;
  }

  .slider-card-item {
    flex: 0 0 200px;
  }

  .slider-card-image {
    height: 120px;
  }

  .slider-card-title {
    font-size: 1rem;
  }
}

/* slider section End here */

/* indian map start here */
.map-banner-home {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  max-width: 40%;
  text-align: left;
  color: #000; /* Change if needed */
}

.text-overlay h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.text-overlay p {
  font-size: 16px;
  margin-bottom: 10px;
}

.text-overlay button {
  padding: 10px 20px;
  border: 1px solid #d62828;
  background: transparent;
  color: #d62828;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.text-overlay button:hover {
  background: #d62828;
  color: white;
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .text-overlay {
    position: static;
    transform: none;
    max-width: 100%;
    text-align: center;
    padding: 20px;
  }
}

/* indian map End here */

/* company value section start css */
.company-values-display-section {
  padding: 50px 0;
  background-color: #fff;
  text-align: center;
}
.company-values-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.company-values-item-wrapper {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}
.company-values-icon-circle {
  width: 80px;
  height: 80px;
  background-color: #28a745;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.company-values-icon-circle img {
  width: 40px;
  height: 40px;
}
.company-values-title-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.company-values-description-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}
.company-values-separator-line {
  width: 40px;
  height: 2px;
  background-color: #ccc;
  margin: 20px auto;
}
.company-values-readmore-button {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
}
.company-values-readmore-button:hover {
  background-color: #218838;
}
@media (max-width: 768px) {
  .company-values-info-container {
    flex-direction: column;
    gap: 30px;
  }
  .company-values-item-wrapper {
    min-width: 100%;
  }
  .company-values-title-heading {
    font-size: 1.2rem;
  }
  .company-values-description-text {
    font-size: 0.9rem;
  }
}

/* company value section end */

/* gallery section start */
.gallery-heading {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 2.1rem;
  color: #003b7a;
}
.heading-border {
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, #ff6b6b, #4ecdc4);
  margin: 0 auto 40px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .gallery-heading {
    font-size: 1.8rem;
  }
}
.highlight {
  font-size: 44px;
  color: #003b7a;
  font-weight: bold;
  line-height: 1; /* Or try 1.1 or 44px */
}

/* features animation */
.FeaturedCategories-item {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-in-out;
}

.FeaturedCategories-item.from-left {
  transform: translateX(-100px);
}

.FeaturedCategories-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* our most popular products */
.home-populor-section {
  margin-top: 50px;
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
  padding: 2rem;
  text-align: center;
}

.home-populor-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.home-populor-border {
  width: 80px;
  height: 4px;
  background: #f44336;
  margin: 0 auto 2rem;
  border-radius: 4px;
}

.home-populor-carousel {
  position: relative;
  overflow: hidden;
}

.home-populor-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.home-populor-product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
  text-align: center;
  padding-bottom: 1rem;
  cursor: pointer;
}

.home-populor-product-card img {
  width: 100%;
  height: 350px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.home-populor-product-card a {
  text-decoration: none;
}

.home-populor-product-name:hover {
  color: #003b7a;
}

.home-populor-product-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #333;
}

.home-populor-product-sub {
  font-size: 0.9rem;
  color: #777;
}

.home-populor-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.home-populor-arrow.left {
  left: 10px;
}

.home-populor-arrow.right {
  right: 10px;
}

/* Desktop: Show 4 items */
@media (min-width: 992px) {
  .home-populor-product-card {
    min-width: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}

/* Tablet: Show 2 items */
@media (min-width: 600px) and (max-width: 991px) {
  .home-populor-product-card {
    min-width: calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

/* Mobile: Show 1 item */
@media (max-width: 599px) {
  .home-populor-product-card {
    min-width: 100%;
    max-width: 100%;
  }
}

/* feedback section start */
.home-feedback-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.home-feedback-title {
  text-align: center;
  background-color: #000f6e;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
  font-size: 24px;
  margin-bottom: 30px;
}

.home-feedback-wrapper {
  position: relative;
}

.home-feedback-track-container {
  overflow: hidden;
}

.home-feedback-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.home-feedback-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  padding: 20px;
  margin: 0 10px;
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  text-align: center;
}

.home-feedback-stars {
  color: gold;
  margin: 10px 0;
}

.home-feedback-role {
  color: gray;
  font-size: 14px;
}

.home-feedback-name {
  color: green;
  font-weight: bold;
  margin-top: 5px;
}

.home-feedback-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ddd;
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.home-feedback-arrow:hover {
  background: #bbb;
}

.home-feedback-arrow.left {
  left: 0;
}

.home-feedback-arrow.right {
  right: 0;
}

@media (max-width: 768px) {
  .home-feedback-card {
    flex: 0 0 100%;
    margin: 0 5px;
  }

  .home-feedback-arrow {
    padding: 8px;
  }
}

/* feedback section end  */

/* center banner */
.home-center-banner {
  width: 95%;
  padding: 0;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.home-center-banner img {
  width: 95%;
  height: auto;
  display: block;
}

/* center banner end */

/* amazon banner */
.amazon-banner {
  width: 90%;
  background-color: navy;
  color: white;
  padding: 40px 5%;
  margin: 20px auto;
}

.banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.banner-text h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}

.banner-text p {
  color: #ffcccb;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 500;
}

.banner-button-wrapper {
  margin-top: 20px;
}

.banner-button {
  background-color: white;
  color: navy;
  padding: 12px 25px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.banner-button:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
  }

  .banner-button-wrapper {
    margin-top: 20px;
  }
}
