/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  overflow-x: hidden;
  background-color: #e6ebe2;
}

/* Swasthsip font class */
.swasthsip-font {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-style: normal;
  color: #ffffff;
  padding: 6px 16px;
  display: inline-block;
    font-size: 25px;

}




        /* Tagline Styling */
        .tagline-heading {
            font-family: 'lora', serif; /* Stylish font for the tagline */
            font-size: 1.8rem; /* Larger font size for emphasis */
            color: #4b5320; /* Dark green color for the text */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
            margin: 0;
              text-align: center;
  padding: 10px 30px;

        }

        .tagline-heading .highlight {
            color: #b86e25; /* Golden color for the highlighted text */
            font-weight: bold; /* Make the highlighted text bold */
        }

        /* Indian Flag Colors for Bharath */
            /* Indian Flag Colors for Bharath */
            .flag-color {
                background: linear-gradient(90deg, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%); /* Saffron, White, Green */
                -webkit-background-clip: text; /* Clip the gradient to the text */
                -webkit-text-fill-color: transparent; /* Make the text transparent to show the gradient */
                font-weight: bold; /* Make the text bold */
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Add a subtle shadow for visibility */
            }

                    /* Responsive Font Size for Mobile View */
        @media (max-width: 768px) {
            .tagline-heading {
                font-size: 1.5rem; /* Smaller font size for mobile screens */
            }
        }

/* Main Header (Navigation) */
header {
  padding: 4px 20px; /* decreased vertical padding */
  width: 100%;
  background-color: #5C4033;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  position: relative;
  font-size: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.logo img {
  height: 65px;  /* slightly increased image height */
  width: auto;
  object-fit: contain;
}
.navbar {
  display: flex;
  gap: 30px;
}

.navbar a {
  color: white;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  font-weight: 500;
}

.navbar a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: white;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  .logo img {
    height: 40px;
  }

  .navbar {
    display: none;
    flex-direction: column;
    background-color: rgba(0,0,0,0.9);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
  }

  .navbar.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}





/*   first slide */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Caption common */
.caption {
  position: absolute;
  color: white;
  font-weight: bold;
  width: 100vw;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: center;
  letter-spacing: 2px;
  gap: 10px;
  align-items: center;
}

/* Special colors for first slide */
.welcome-text {
  color: #ffffff;
  opacity: 0;
  animation: fadeInLeft 1s ease forwards;
}

.swastip-text {
  color: #ffffff;
  opacity: 0;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 1s;
}

/* Desktop View */
@media only screen and (min-width: 769px) {
  .caption {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    line-height: 1.1;
    text-align: center;
    align-items: center;
  }
}

/* Mobile View */
@media only screen and (max-width: 768px) {
  .caption {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    gap: 4px;
    max-width: 90%;
    align-items: center;
  }
}

/* Arrows */

.arrow {
  color: white;
  background: none;
  border: none;
  font-size: 3.5rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
}

.left-arrow,
.right-arrow {
  position: absolute;
}

@media only screen and (max-width: 768px) {
  .left-arrow,
  .right-arrow {
    display: block;
    bottom: 50px;
  }

  .left-arrow {
    left: 20px;
  }

  .right-arrow {
    right: 20px;
  }
}

/* Animations */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}


a {
  color: inherit;
  text-decoration: none;
}



/* PRODUCTS SECTION */
.products {
  background-color: #fef7ee; /* soft creamy beige */
  padding: 100px 40px;
  text-align: center;
  background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); /* optional: wood texture */
}

.section-heading {
  font-size: 42px;
  font-weight: bold;
  color: #7b3f16; /* deep brown heading */
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #e0b18b; /* light beige underline */
  margin: 8px auto 0;
  transition: width 0.4s ease;
}

.section-heading:hover::after {
  width: 100%;
}

.section-subheading {
  font-size: 25px;
  color: #b14a0a; /* warm brown subtitle */
  margin: 20px auto 60px;
  max-width: 700px;
}

/* GRID STYLES */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* PRODUCT CARD */
.product-card {
  background: #fffaf4; /* creamy white card */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding: 20px;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.product-name {
  font-weight: bold;
  font-size: 20px;
  margin: 16px 0 10px;
  color: #7b3f16; /* medium brown text */
  text-align: center;
}

/* OVERLAY BUTTON */
.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 15, 5, 0.5); /* dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.product-card:hover .overlay {
  opacity: 1;
}

.product-card button {
  background: transparent;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-bottom: 1px solid white;
  padding: 10px 20px;
  cursor: pointer;
  transition: border 0.3s;
}

.product-card button:hover {
  border-color: #fce3c1;
}



/* RESPONSIVE */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    font-size: 32px;
  }

  .section-subheading {
    font-size: 20px;
  }
}

.quality-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 60px 30px;
  background-color: #eef7ee;        /* soft pale green */
  color: #3e5d3a;                   /* earthy green for general text */
  flex-wrap: wrap;
  text-align: left;
}

/* LEFT SIDE TEXT */
.quality-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.quality-heading {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  color: #4b6e3f;                  /* darker green heading */
}

.quality-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: #aacfa2;             /* soft mint underline */
  transition: width 0.5s ease;
}

.quality-heading:hover::after {
  width: 100%;
}

.quality-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.quality-point img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.quality-point h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #3c5b30;                  /* darker subheadings */
}

.quality-point p {
  font-size: 16px;
  color: #5f733f;                  /* soft green-brown text */
  margin: 0;
  line-height: 1.7;
  max-width: 100%;
}

/* RIGHT SIDE IMAGE */
.quality-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .quality-section {
    flex-direction: column;
    text-align: center;
  }

  .quality-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .quality-image {
    margin-top: 40px;
  }
}


/*  4 slide feedback */

/* === Feedback Section Styles === */
.feedback-section {
  background-color: bisque;
  color: #8f6143;
  width: 100%;
  max-width: 500px;
  margin: 50px auto;
  min-height: 350px;
  border-radius: 20px;
  text-align: center;
  padding: 30px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.feedback-section img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.feedback-section h2 {
  font-size: 22px;
  font-weight: bold;
  color: #be6818;
}

.feedback-section .feedback {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}

.feedback-section .dots {
  margin-top: 20px;
  
}

.feedback-section .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #f8eeee80;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.feedback-section .dot.active {
  background-color: #b64e12;
}

.feedback-section .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #ffffffb3;
  cursor: pointer;
  z-index: 10;
}

.feedback-section .nav.left {
  left: -40%;
  color: black;
}

.feedback-section .nav.right {
  right: -40%;
  color: black;
}

@media screen and (max-width: 700px) {
  .feedback-section {
    padding: 20px;
    max-width: 90%;
  }

  .feedback-section .nav.left {
    left: 10px;
      font-size: 30px;

  }

  .feedback-section .nav.right {
    right: 10px;
      font-size: 30px;

  }
}

/* === Section Wrapper for outer heading === */
.feedback-wrapper {
  background-color: antiquewhite;
  padding: 60px 20px;
  text-align: center;
}

/* === Outer Heading === */
.feedback-heading {
  font-size: 30px;
  color: #ca722a;
  margin-bottom: 10px;
}

/* === Outer Subheading === */
.feedback-subheading {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* === Feedback Card (Slider Box) === */
.feedback-section {
  background-color: rgb(250, 210, 161);
  color: #8f6143;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  min-height: 350px;
  border-radius: 20px;
  text-align: center;
  padding: 30px 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}





/* last slide contact section  form */
#slide5 {
  background-color: #f9f3ee; /* soft beige background */
  padding: 60px 20px;
  color: #5e4635; /* warm brown text */
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 450px;
  margin: 0 auto;
}

/* Input + TextArea Fields */
.feedback-form input,
.feedback-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  color: #4a3f35;
  background-color: #fff1e6; /* muted peach */
  font-size: 1rem;
  resize: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

/* Button */
.feedback-form button {
  background: #db8966; /* soft terracotta/peach */
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.feedback-form button:hover {
  background: #c47656;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .feedback-note {
    font-size: 1rem;
  }

  .feedback-form input,
  .feedback-form textarea,
  .feedback-form button {
    font-size: 0.95rem;
  }
}

/* Input Box Styles */
.input-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e7d9c9;
  margin-bottom: 25px;
  padding: 10px 5px;
  transition: border-color 0.3s;
}

.input-box:hover {
  border-color: #e9bfa3;
}

.input-box img {
  width: 20px;
  margin-right: 12px;
  filter: brightness(0) saturate(100%) sepia(20%) hue-rotate(10deg);
  transition: transform 0.3s ease;
}

.input-box:hover img {
  transform: scale(1.2);
}

.input-box input,
.input-box textarea {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  color: #5a4a42;
  padding: 8px;
  background-color: transparent;
}

textarea {
  resize: vertical;
  height: 80px;
}

/* Submit Button */
.submit-btn {
  background-color: #c47f4b; /* warm tan */
  color: white;
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn img {
  width: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  background-color: #e69b6b;
  transform: scale(1.05);
}

.submit-btn:hover img {
  transform: translateX(5px);
}

/* Form Feedback Messages */
#formLoader,
#formSuccess,
#formError {
  margin-top: 20px;
  display: none;
  font-size: 14px;
}

#formLoader { color: #7469b6; }
#formSuccess { color: #3fa86f; }
#formError { color: #d86464; }

.input-box input::placeholder {
  color: #a99d95;
}


.footer {
  background-color: #102216;
  color: #cccccc;
  text-align: center;
  padding: 15px 10px;
  bottom: 0;
  width: 100%;
  z-index: 999;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
}

.footer-icons img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.footer-icons a:hover img {
  transform: scale(1.2);
}

.footer p {
  font-size: 0.9rem;
  margin: 0;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}




