/* --- Color Variables & Base Styles --- */
:root {
  --kosha-green: #447c2d;
  --kosha-orange: #ff6600;
  --kosha-dark-bg: #465c30;
  --kosha-light-bg: #f7f4ed;
  --kosha-text-dark: #333333;
}

body {
  color: var(--kosha-text-dark);
  background-color: #ffffff;
  /* font-family: "tamatogrotesk-semibold" !important; */
  font-size: 16px !important;
  font-family: "TOMATOGROTESK", "sans-serif" !important;
  letter-spacing: 0.5px;
}

@font-face {
  font-family: "TOMATOGROTESK";
  src: url("../fonts/TOMATOGROTESK-REGULAR-1.OTF") format("opentype");

  font-style: normal;
}

/* Top Bar Styling */
.top-bar {
  background-color: var(--kosha-dark-bg);
  color: #ccc;
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
.top-bar a {
  color: #ccc;
  text-decoration: none;
}

/* Navigation Styling */
.navbar-brand .logo-text {
  color: var(--kosha-green);
  font-weight: 900;
  font-size: 1.5rem;
}
.navbar-brand .logo-icon {
  color: var(--kosha-orange);
  font-size: 1.8rem;
}
.navbar-nav .nav-link:hover {
  color: var(--kosha-orange) !important;
}

/* Hero Banner */
.hero-banner {
  /* max-height: 500px; */
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Section Headings */
.section-title {
  font-weight: 700;
  color: #6c1a1c;
  margin-bottom: 2.5rem;
  position: relative;
  font-size: 42px;
}
.about-section-1 h2,
.about-section h2 {
  color: #6c191a;
  font-size: 2.5rem;
  font-weight: 600;
}
/* .section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--kosha-green);
  margin: 0.5rem auto 0;
} */

/* Product Cards */
.product-card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.product-card .card-body {
  padding: 1.25rem;
  min-height: 40px;
}
.card-title {
  font-size: 20px;
  color: #6c1717 !important;
}
/* About Us Section (Grain to Greatness) */
.about-section {
  /* background: linear-gradient(180deg, #ffebdd 0%, #f2c5a4 100%); */
  padding: 6rem 0;
  background-image: url("../images/light-orange-bg.png");
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-section-1 {
  padding: 1rem 0;
}
.kosha-logo-large {
  width: 100%;
  max-width: 300px;
  min-height: 250px;
  margin: auto;
  /* Placeholder for the large logo image */
  background-image: url("https://placehold.co/300x250/d4a373/1e3d17?text=Kosha+Logo");
  background-size: cover;
  background-position: center;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.about-content h2 {
  color: #6c191a;
}
.about-content .lead {
  font-weight: 600;
}

/* Why Choose Us Section */
.feature-icon {
  font-size: 3rem;
  color: var(--kosha-green);
  margin-bottom: 0.75rem;
  margin: auto;
  width: 100px;
}
.feature-item h6 {
  font-weight: 700;
}
.feature-item p {
  font-size: 16px;
  color: #666;
}

/* Trust Banner (100% Atta) */
.trust-banner {
  position: relative;
  /* max-height: 400px; */
  overflow: hidden;
}
.trust-banner-img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  object-position: top; /* Focus on the top part of the image */
}
.trust-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5%;
  /* Gradient for better text readability on the right side */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8) 75%
  );
}
.trust-text {
  color: var(--kosha-text-dark);
  font-weight: 900;
  line-height: 0.9;
}
.trust-text .big-text {
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--kosha-orange);
}
.trust-text .small-text {
  font-size: clamp(1rem, 3vw, 2.5rem);
  color: var(--kosha-green);
}
@media (max-width: 768px) {
  .trust-overlay {
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
  }
}

/* Contact Section */
.contact-section {
  background-color: #ffffff; /* Reverted to white background */
  padding: 2rem 0;
}
.contact-info h2 {
  font-size: 24px;
  color: #6c1a1c;
}
.contact-form .form-control,
.contact-form .form-control:focus {
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  box-shadow: none;
}
.contact-form .btn-submit {
  background-color: #6c191a;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s;
}
.contact-form .btn-submit:hover {
  background-color: #80191b;
  color: #ffffff;
}
/* .contact-info p.text-muted i {
  color: var(--kosha-orange);
} */
.contact-info .title-box {
  background-color: var(
    --kosha-light-bg
  ); /* Use light beige background for the info text block */
  padding: 2rem;
  border-radius: 0.75rem;
}

/* Footer Styling */
.main-footer {
  background-color: var(--kosha-dark-bg);
  color: #ccc;
  padding: 3rem 0 1rem;
  font-size: 0.9rem;
}
.main-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
}
.main-footer a:hover {
  color: #ea8f51;
}
.footer-logo .logo-text,
.footer-logo .logo-icon {
  color: white;
}
.footer-logo .logo-icon {
  color: var(--kosha-orange);
}
.social-icons a {
  font-size: 1.5rem;
  margin-right: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  color: #999;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #ea8e3d;
  color: white;
  border-radius: 50%;
  display: none; /* Controlled by JS */
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s;
}
.txt-orange {
  color: #f57e35;
}
.text-lightgray {
  color: #464646;
  font-size: 18px;
  font-weight: 700;
}
.about-logo {
  width: 250px;
}
.kosha-features h6 {
  font-size: 22px;
}
.brdr-right {
  border-right: 1px solid #c9c5c5;
}
.main-footer .list-unstyled {
  padding-left: 0;
  list-style: none;
  color: white;
  line-height: 2;
}
/* .phone-icon {
  transform: rotate(99deg);
} */
.txt-dark-red {
  color: #6c1717;
}
.top-nav-icons i {
  background: #ea8e48;
  color: white;
  height: 30px;
  width: 30px;
  text-align: center;
  align-items: center;
  display: inline-grid;
  border-radius: 5px;
}
.product-slider-card h3 {
  text-align: left;
  font-size: 32px;
}
.product-slider-card img {
  width: 400px;
  margin: auto;
}
.product-slider .carousel-inner {
  position: relative;
  width: 80% !important;
  overflow: hidden;
  margin: auto;
}
.carousel-control-next i,
.carousel-control-prev i {
  background-color: #2b5716;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  padding: 5px;
  color: white;
  font-size: 20px;
}
.carousel-control-next,
.carousel-control-prev {
  opacity: 1 !important;
}
.top-nav-icons {
  display: flex;
  font-size: 15px;
}
.mob-view {
  display: none;
}
.btn-explore {
  /* background-color: #6c1a1c; */
  color: white;
}

.cta-card {
  background-color: #fff1e6; /* Light beige/pale peach from image */
  color: #333; /* Dark text for contrast */
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.cta-card .contact-info {
  font-size: 1.1rem;
}

.cta-card .contact-info i {
  margin-right: 10px;
  color: #ff7f50; /* Optional: match brand accent color from image */
}

@media (max-width: 576px) {
  .cta-card {
    padding: 30px 20px;
  }
  .cta-card h2 {
    font-size: 1.5rem;
  }
}
.distributor-banner-text {
  position: absolute;
  top: 150px;
  color: white;
  left: 100px;
}
.distributor-banner-text h2 {
  font-size: 60px;
  font-weight: 600;
}
.distributor-banner-text p {
  font-size: 18px;
}
.features-icon-img img {
  width: 60px;
  height: 60px;
}
.features-icon-img {
  display: flex;
}
.btn-header {
  /* position: relative;
    right: 60px;
    padding: 10px 15px; */
  position: fixed;
  top: 50%;
  right: -79px;
  transform: rotate(90deg);
  z-index: 9999;
  color: white;
  border-radius: 0.5rem;
  padding: 5px 17px;
  background: #ee3a42;
  width: 200px;
}
.btn-contactfrm {
  background-color: #6c191a;
}

.btn2 {
  background: linear-gradient(90deg, #6c191a, #a72828);
  color: #fff;
  border: none;
  padding: 12px 30px !important;
  border-radius: 6px;
  transition: all 0.4s ease;
  font-size: 18px;
}
.btn2:hover {
  background: linear-gradient(90deg, #a72828, #6c191a);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* bottom to top button  */

.progress-wrap {
  right: 25px;
  bottom: 25px;
  color: white;
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px white;
  z-index: 999;
  opacity: 0;
  background-color: #ffebd4;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap input {
  z-index: 10001;
}

.progress-wrap input:checked + html {
  -ms-scroll-snap-type: unset;
  scroll-snap-type: unset;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: gray;
  left: 0;
  top: -2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap::before {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  -webkit-text-fill-color: #000000;
  left: 0;
  top: -2px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #ffc951;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}
.footer-txt {
  font-size: 17px;
}
.btn-header {
  display: none !important;
}
.contact-form h1 {
  font-size: 30px;
}
.lead {
  font-size: 18px !important;
  text-align: justify;
  font-weight: 300;
}
.form-control {
  height: 50px !important;
}
.text-yellow {
  color: #ffff50;
  text-shadow: 0px 1px 1px #282828;
}
.icon-box img {
  width: 70px;
  height: 70px;
}
