/* ---------- CSS Custom Properties ---------- */
:root {
  --green: #216e34;
  --accent: #b6ca00;
  --font-family: "Poppins", sans-serif;
  --font-family-hindi: "Tiro Devanagari Hindi", sans-serif;
  --gold: #b8892a;
  --gold2: #d4a843;
  --goldlt: #fdf6e9;
}

/* wide‑page safety rules – avoid unexpected horizontal scrolls */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  overflow-x: hidden;
}

/* make every image/video responsive by default */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SPLASH SCREEN dimensions must cover the viewport exactly */
#splash {
  width: 100vw;
  height: 100vh;
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.main-btn:focus-visible,
.more-btn:focus-visible,
.nav-link:focus-visible,
.navbar-toggler:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/*  SPLASH SCREEN */
#splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.splash-icon {
  width: 20%;
  /* height: 80px; */
  /* background: rgba(255, 255, 255, 0.12); */
  /* border: 2px solid rgba(255, 255, 255, 0.25); */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashPulse 1.5s ease-in-out infinite alternate;
}

@keyframes splashPulse {
  from {
    transform: scale(0.96);
  }

  to {
    transform: scale(1.04);
  }
}

.splash-title {
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  animation: fadeUp 0.8s 0.2s ease both;
}

.splash-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.4s ease both;
}

.splash-bar {
  width: min(200px, 80vw);
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
  animation: fadeUp 0.8s 0.5s ease both;
}

.splash-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent));
  border-radius: 2px;
  animation: progress 2.2s ease forwards;
}

@keyframes progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  background-color: var(--green);
  z-index: 11;
  position: relative;
  padding-left: 50px !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.6);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-text {
  font-size: 15px;
  font-weight: 500;
}

/* Desktop logo — overhangs below navbar */
#logo {
  /* allow the logo to shrink on narrower viewports without breaking
     the navbar layout; maximum stays 200px for large screens */
  width: clamp(150px, 20vw, 200px);
  height: auto;
  opacity: 1;
  object-fit: contain;
  margin-bottom: -50px;
  background-color: var(--green);
  border-radius: 0 0 20px 20px;
  padding-bottom: 8px;
  padding-left: 30px;
  padding-right: 30px;
}

/* Mobile logo — compact version */
#logo-mobile {
  width: clamp(80px, 25vw, 120px);
  height: auto;
  object-fit: contain;
  background-color: var(--green);
  border-radius: 0 0 12px 12px;
  padding: 4px 16px 6px;
  margin-bottom: -6px;
}

.nav-link {
  transition: color 0.2s ease-in;
}

.nav-link:hover {
  color: var(--accent) !important;
}

.dot-divider {
  color: var(--accent);
  display: flex;
  align-items: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  top: -175px; /* switch from margin to top so flow isn’t affected */
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden; /* Encapsulate the background slider */
  padding: 0;
}

/* Background Slider layer styling */
#heroBgCarousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Lowest layer */
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Gradient overlay at top of hero */
#black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  opacity: 1;
  z-index: 2; /* Sits above the slider images */
  pointer-events: none;
}

#hero-contant {
  position: relative;
  z-index: 10; /* Ensures content is above everything, including arrow nav */
  color: white;
  text-align: center;
  padding-inline: 12px;
  padding-top: 250px;
}

#hero-contant h1 {
  line-height: 0.8;
  font-size: clamp(28px, 5vw, 50px);
  font-family: var(--font-family);
  text-shadow: 2px 2px 5px black;
  font-weight: bold;
}

#hero-contant h1:nth-child(2) {
  /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0); */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(245, 245, 245, 0.846);
}

#hero-contant h4 {
  font-weight: 500;
  font-family: var(--font-family-hindi);
  text-shadow: 2px 2px 5px black;
  font-size: clamp(14px, 2vw, 18px);
}

.green-text {
  color: var(--green);
}

/* ============================================================
   MAIN BUTTON (reusable across sections)
   ============================================================ */
.main-btn {
  margin: 26px auto 0;
  font-family: var(--font-family);
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* border: 1px solid black; */
  border-radius: 8px;
  background-color: var(--green);
  width: min(300px, 100%);
  min-height: 44px;
  max-width: 100%;
  overflow: hidden;
}

.main-btn p {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 10px 12px 12px;
  font-size: clamp(16px, 2.5vw, 25px);
  line-height: 1;
}

/* Animated cow reveal on hover */
.box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -44px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.main-btn:hover .box {
  transform: translateY(0);
}

.box img {
  margin-top: -20px;
  width: 15%;
}

.box img:nth-child(1) {
  margin-bottom: -35px;
  transform: scaleX(-1);
}

.box img:nth-child(3) {
  margin-bottom: -35px;
}

.box .grass {
  display: flex;
  align-items: baseline;
}

.box .grass img {
  width: 50px;
  margin-top: -10px;
}

#res-btn {
  visibility: hidden;
  position: relative;
  /* padding: 20px 35px; */
  padding: 10px 50px;
  /* background: #ffffff; */
  background: #216e34;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  /* box-shadow: 0px 0px 10px 0px rgb(255, 255, 255); */
  border-radius: 100px;
  border: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.star-1 img {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 img {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 img {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 img {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 img {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 img {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

#res-btn:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 0 80px #ffffff8c;
}

#res-btn:hover .star-1 img {
  position: absolute;
  top: -25%;
  left: -15%;
  width: 20px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--green));
  z-index: 2;
}

#res-btn:hover .star-2 img {
  position: absolute;
  top: 35%;
  left: -22%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--green));
  z-index: 2;
}

#res-btn:hover .star-3 img {
  position: absolute;
  top: 80%;
  left: -10%;
  width: 10px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--green));
  z-index: 2;
}

#res-btn:hover .star-4 img {
  position: absolute;
  top: -25%;
  left: 105%;
  width: 20px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--green));
  z-index: 2;
}

#res-btn:hover .star-5 img {
  position: absolute;
  top: 30%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--green));
  z-index: 2;
}

#res-btn:hover .star-6 img {
  position: absolute;
  top: 80%;
  left: 105%;
  width: 10px;
  height: auto;
  filter: drop-shadow(0 0 10px var(--green));
  z-index: 2;
}

.fil0 {
  fill: var(--green);
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
#aboutUs {
  padding-top: 0;
  margin-top: -100px;
}

#about-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 40px);
  /* margin-top: 50px; */
  margin-bottom: 20px;
}

#about-text span {
  color: var(--green);
}

#about-content-box {
  border: 2px solid var(--green);
  border-radius: 20px;
}

#about-content span {
  color: var(--green);
}

#about-main-text {
  line-height: 1.3;
}

#about-p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 20px);
  line-height: 2;
  margin: 0;
}

/* ============================================================
   OUR VISION SECTION
   ============================================================ */
#our-vision-text {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  font-family: var(--font-family);
  margin-top: 70px;
  margin-bottom: 20px;
  text-align: start;
  line-height: 1;
}

#our-vision-text span {
  color: var(--green);
}

#our-vision-p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 20px);
  margin: 0;
  text-align: start;
}

#cow-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

/* ============================================================
   OUR MISSION SECTION
   ============================================================ */
.border-container {
  position: relative;
  height: auto;
  border-radius: 20px;
  border: 2px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-cow {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

#our-mission-head-text {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  font-family: var(--font-family);
  text-align: center;
  margin-top: 25px;
  margin-bottom: 20px;
}

#our-mission-p {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 600;
  text-align: center;
  line-height: 2;
  margin-top: 5px;
  padding: 0 clamp(10px, 3vw, 32px);
}

#our-mission .main-btn {
  margin-top: 10px;
}

/* ============================================================
   TRUST ICONS SECTION
   ============================================================ */
#trust {
  padding-bottom: 40px;
}

.circle {
  width: 150px;
  height: 150px;
  background-color: var(--green);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.circle:hover {
  transform: scale(1.05);
}

.circle .trust-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin-left: 1px;
  cursor: pointer;
  transition: transform 0.5s ease;
}

/* ============================================================
   OUR PRODUCTS SECTION
   ============================================================ */
#product-head-text {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  font-family: var(--font-family);
  text-align: center;
  margin-top: 50px;
}

#product-head-text span {
  color: var(--green);
}

.cow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -10px;
}

.cow-box .line {
  width: 120px;
  height: 1px;
  background-color: var(--green);
  border: none;
}

.cow-box #single-cow {
  width: clamp(26px, 2vw, 36px);
  height: auto;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

#products-cards {
  margin-top: 20px;
}

.card1 {
  width: 100%;
  height: auto;
  border: 2px solid var(--green);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.card1 .line {
  width: 100%;
  height: 1px;
  background-color: var(--green);
  border: none;
  margin: 20px 0;
}

.pro1 {
  width: 70%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.pro1-text {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  font-family: var(--font-family);
  text-align: center;
  border: 1.5px solid var(--green);
  border-radius: 100px;
  line-height: 1.2;
  padding: 2px clamp(20px, 4vw, 50px);
  margin-bottom: 4px;
}

.card-info-box {
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 1;
}

.card-info-box p i {
  color: var(--green);
}

.card-main-box {
  display: flex;
  gap: 10px;
  height: auto;
  min-height: 100px;
}

.card-main-box .line {
  width: 1.5px;
  height: 80px;
  background-color: var(--green);
  margin: auto 0;
}

.card-main-box h1 {
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  font-family: var(--font-family);
}

.quality-icon {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  font-family: var(--font-family);
  line-height: 1;
  color: var(--green);
  text-align: center;
  margin-bottom: 0;
}

.more-btn {
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  font-family: var(--font-family);
  text-align: center;
  border: 1.5px solid var(--green);
  border-radius: 100px;
  background-color: var(--green);
  color: white;
  line-height: 1.2;
  padding: 6px 0;
  width: clamp(160px, 20%, 250px);
  transition: all 0.5s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.more-btn:hover {
  background-color: white;
  color: var(--green);
}

/* Animated arrow */
.arrow {
  color: var(--accent);
  display: inline-block;
  animation: upDown 0.5s ease-in-out infinite alternate;
}

@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

/* ============================================================
   CONTACT US SECTION
   ============================================================ */
#contact-us {
  padding-top: 40px;
  overflow: hidden;
}

#contact-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  font-family: var(--font-family);
  margin-bottom: 0;
}

/* Typography Contact Utilities */
.contact-help-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
}

.contact-main-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

.contact-form-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  border-bottom: 1.5px solid var(--green);
}

.contact-detail-heading {
  font-size: 20px;
  font-weight: 400;
  border-bottom: 1.2px solid #555;
  padding-bottom: 4px;
  display: inline-block;
}

.contact-detail-text {
  font-size: 16px;
  font-weight: 500;
}

.contact-gst-text {
  font-size: 14.5px;
  font-weight: 500;
  text-transform: uppercase;
}

.form-label-custom {
  font-size: 18px;
  font-weight: 500;
}

.submit-btn {
  max-width: none;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
}

/* Icon Utilities */
.bg-green {
  background-color: var(--green);
}

.contact-icon {
  box-shadow: 0 4px 6px rgba(33, 110, 52, 0.4);
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  font-size: 32px;
}

.contact-form-container {
  border: 2px solid var(--green);
  border-radius: 12px;
}

.contact-form-container .form-control {
  border: 1.5px solid #333;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 16px;
}

.contact-form-container .form-control::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.contact-form-container .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.25rem rgba(33, 110, 52, 0.25);
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
#footer {
  margin-top: 20px;
}

#footer img {
  pointer-events: none; /* prevent drag on structural silhouette */
}

.footer-top-bg {
  margin-bottom: -2px;
  filter: hue-rotate(0deg) brightness(1.1) contrast(74%);
}

.footer-body {
  background-color: var(--green);
}

.footer-pill {
  border: 1px solid var(--accent);
  border-radius: 50px;
  color: white;
  padding: 6px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-pill:hover {
  background-color: var(--accent);
  color: var(--green);
}

.footer-dashed-line {
  position: relative;
  width: 100%;
  height: 0;
  border-top: 1.5px dashed var(--accent);
  margin-top: 10px;
}

/* Small diamond/dots at ends of dashed line representing the design */
.footer-dashed-line::before,
.footer-dashed-line::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  transform: rotate(45deg);
}

.footer-dashed-line::before {
  left: 0;
}
.footer-dashed-line::after {
  right: 0;
}

.footer-card {
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  min-height: 120px;
}

.footer-card h5 {
  color: var(--accent);
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 18px);
}

.footer-card p {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.4;
}

.subfooter-line {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================================================
   TRIG.JS ANIMATIONS
   ============================================================ */
.fade-up-trig,
.fade-in-trig,
.slide-left-trig,
.slide-right-trig,
.scale-in-trig {
  opacity: 0;
  visibility: hidden;
}

/* when we filter products we toggle `d-none` and animate opacity; give
   those wrappers a short transition so the JS fade-in feels smooth */
.fade-up-trig[data-category] {
  transition: opacity 0.3s ease;
}

/* Base transforms */
.fade-up-trig {
  transform: translateY(40px);
}

.slide-left-trig {
  transform: translateX(-40px);
}

.slide-right-trig {
  transform: translateX(40px);
}

.scale-in-trig {
  transform: scale(0.85);
}

/* Active states appended by Trig.js */
.fade-in-trig.trig {
  animation: fadeInTrig 0.8s forwards ease-out;
  visibility: visible;
}

.fade-up-trig.trig {
  animation: fadeUpTrig 0.8s forwards ease-out;
  visibility: visible;
}

.slide-left-trig.trig {
  animation: slideLeftTrig 0.8s forwards ease-out;
  visibility: visible;
}

.slide-right-trig.trig {
  animation: slideRightTrig 0.8s forwards ease-out;
  visibility: visible;
}

.scale-in-trig.trig {
  animation: scaleInTrig 0.8s forwards ease-out;
  visibility: visible;
}

/* Keyframes */
@keyframes fadeInTrig {
  to {
    opacity: 1;
  }
}

@keyframes fadeUpTrig {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeftTrig {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRightTrig {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleInTrig {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================================
   MEDIA QUERIES — ordered from largest to smallest
   ============================================================ */

/* --- XL screens and below (≤ 1199px) --- */
@media (max-width: 1199px) {
  #our-mission-head-text {
    margin-top: 20px;
  }
}

/* --- Tablets and below (≤ 991px) — navbar collapses here --- */
@media (max-width: 991px) {
  #navbar {
    padding-left: 0 !important;
  }

  #navbar .navbar-collapse {
    width: 100%;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 10px;
    background-color: var(--green);
  }

  /* Remove the overlap since mobile has no overhanging logo */
  #hero {
    top: 0;
    margin-top: 0;
    min-height: 80vh;
  }

  /* Make footer logo smaller to fit nicely */
  #footer .img-fluid {
    max-width: 250px !important;
  }

  #hero-contant {
    padding-top: 40px;
  }

  #hero-contant h1 {
    line-height: 0.95;
  }

  /* Product cards: 2 per row handled by Bootstrap col-sm-6 */
  .card-info-box {
    font-size: 13px;
  }

  .card-main-box h1 {
    font-size: 28px;
  }

  .more-btn {
    width: 200px;
  }

  #aboutUs {
    padding-top: 10px;
    margin-top: 0;
  }
}

/* --- Small tablets / large phones (≤ 768px) --- */
@media (max-width: 768px) {
  #res-btn {
    visibility: visible;
    margin-top: 20px;
    font-size: 16px;
  }

  #about-text {
    margin-top: 30px;
    margin-bottom: 12px;
  }

  #about-main-text {
    font-size: 22px;
  }

  #about-p {
    text-align: center;
  }

  .main-btn {
    display: none;
    visibility: hidden;
  }

  #our-vision-text {
    margin-top: 30px;
    text-align: center;
  }

  #our-vision-p {
    text-align: center;
  }

  .border-container {
    border-radius: 14px;
  }

  .mission-cow {
    border-radius: 14px;
  }

  #our-mission-head-text {
    margin-top: 10px;
    margin-bottom: 12px;
  }

  .circle {
    width: 105px;
    height: 105px;
  }

  /* Product cards at tablet/phone */
  .pro1-text {
    font-size: 18px;
    padding: 2px 30px;
  }

  .card-main-box {
    min-height: 80px;
  }

  .card-main-box .line {
    height: 65px;
  }

  .card-main-box h1 {
    font-size: 26px;
  }

  .quality-icon {
    font-size: 30px;
  }

  .more-btn {
    width: 180px;
    font-size: 16px;
  }
}

/* --- Small phones (≤ 575px) --- */
@media (max-width: 575px) {
  #hero {
    min-height: 70vh;
  }

  #hero-contant {
    padding-top: 30px;
  }

  /* Product cards: 1 per row (col-12) — more room, cards look nice */
  .pro1 {
    width: 50%;
  }

  .pro1-text {
    font-size: 20px;
    padding: 2px 40px;
  }

  .card-info-box {
    font-size: 14px;
  }

  .card-main-box h1 {
    font-size: 30px;
  }

  .quality-icon {
    font-size: 34px;
  }

  .more-btn {
    width: 180px;
    font-size: 16px;
  }

  /* Footer logo on phone */
  #footer .img-fluid {
    max-width: 200px !important;
  }
}

/* --- Extra-small phones (≤ 420px) --- */
@media (max-width: 420px) {
  .main-btn p {
    margin-top: 3px;
  }

  .box {
    width: 100%;
    margin-top: -39px;
  }

  .pro1 {
    width: 55%;
  }

  .card-info-box {
    font-size: 13px;
  }

  .card-main-box h1 {
    font-size: 26px;
  }

  .more-btn {
    width: 160px;
    font-size: 14px;
  }
}
