.our-products-desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.our-products-price-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.our-products-current-price {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.our-products-old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.our-products-discount {
  font-size: 11px;
  font-weight: 600;
  color: #a97128;
  background-color: rgba(169, 113, 40, 0.1);
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 5px;
}
.our-products-section {
  background-color: #fafdfb;
  padding: 40px 5%;
  font-family: "Poppins", sans-serif;
}

.our-products-container {
  max-width: 1300px;
  margin: 0 auto;
}

.our-products-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.our-products-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(169, 113, 40, 0.1);
  color: #a97128;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.our-products-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #000;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.our-products-subtitle {
  font-size: 15.5px;
  color: #222;
  line-height: 1.7;
  margin: 0;
}

.our-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.our-products-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 90, 56, 0.05);
  border: 1px solid rgba(45, 90, 56, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.our-products-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 90, 56, 0.12);
  border-color: rgba(169, 113, 40, 0.2);
}

.our-products-image-box {
  width: 100%;
  height: 250px;
  background-color: #e3e4e3;
  position: relative;
  overflow: hidden;
  display: block;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
}

.our-products-image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 25px;
  box-sizing: border-box;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: all 0.5s ease;
}

.our-products-card:hover .our-products-image-box img {
  transform: scale(1.08);
}
.our-products-image-box .secondary-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.our-products-image-box:hover .secondary-img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}
.our-products-image-box:hover .primary-img {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.08);
}
.our-products-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #a97128;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  z-index: 10;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(169, 113, 40, 0.3);
}

.our-products-content {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.our-products-name {
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #000;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.our-products-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  font-size: 13.5px;
  color: #222;
  line-height: 1.5;
  text-align: justify;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.our-products-action {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.our-products-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.our-products-btn svg {
  width: 16px;
  height: 16px;
}

/* Amazon Style Button (Theme adapted) */
.our-products-btn-amazon {
  background-color: #2d5a38;
  color: #ffffff;
  border: 1px solid #2d5a38;
}

.our-products-btn-amazon:hover {
  background-color: #1a3a23;
  border-color: #1a3a23;
  color: #ffffff;

  box-shadow: 0 4px 12px rgba(45, 90, 56, 0.3);
}

/* Flipkart Style Button (Theme adapted) */
.our-products-btn-flipkart {
  background-color: #ffffff;
  color: #a97128;
  border: 1px solid #a97128;
}

.our-products-btn-flipkart:hover {
  background-color: #a97128;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(169, 113, 40, 0.3);
}

.contact-us-form-section {
  background-color: #f2f2f2;
  padding: 40px 5%;
  font-family: "Poppins", sans-serif;
}

.contact-us-form-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-us-form-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.contact-us-form-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(169, 113, 40, 0.1);
  color: #a97128;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.contact-us-form-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #000;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.contact-us-form-subtitle {
  font-size: 15.5px;
  color: #222;
  line-height: 1.7;
  margin: 0;
}

.contact-us-form-wrapper {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  overflow: hidden;
  min-height: 600px;
}

.contact-us-form-info-col {
  flex: 0 0 38%;
  background-color: #2d5a38;
  color: #ffffff;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-us-form-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.circle-small {
  width: 150px;
  height: 150px;
  bottom: 50px;
  right: -50px;
}

.circle-large {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.contact-us-form-info-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 10px 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.contact-us-form-info-desc {
  font-size: 14px;
  color: #a3c4ae;
  margin: 0 0 40px 0;
  position: relative;
  z-index: 2;
}

.contact-us-form-info-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  z-index: 2;
}

.contact-us-form-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-us-form-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #a97128;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-us-form-info-item:hover .contact-us-form-icon {
  background-color: #a97128;
  color: #ffffff;
}

.contact-us-form-icon svg {
  width: 20px;
  height: 20px;
}

.contact-us-form-text-block h4 {
  font-size: 18px;
  margin: 0 0 5px 0;
  font-weight: 600;
  color: #ffffff;
}

.contact-us-form-text-block p {
  margin: 0;
  font-size: 14.5px;
  color: #d1e2d7;
  line-height: 1.6;
}

.contact-us-form-text-block a {
  color: #d1e2d7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-us-form-text-block a:hover {
  color: #a97128;
}

.contact-us-form-content-col {
  flex: 1;
  padding: 60px 50px;
  background-color: #ffffff;
}

.contact-us-form-element {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-us-form-row {
  display: flex;
  gap: 25px;
}

.contact-us-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-us-form-group label {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-us-form-group input,
.contact-us-form-group textarea {
  width: 100%;
  background-color: #f9fbf9;
  border: 1px solid #e1e8e3;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

.contact-us-form-group textarea {
  resize: none;
}

.contact-us-form-group input:focus,
.contact-us-form-group textarea:focus {
  background-color: #ffffff;
  border-color: #2d5a38;
  box-shadow: 0 0 0 4px rgba(45, 90, 56, 0.1);
}

.contact-us-form-group input::placeholder,
.contact-us-form-group textarea::placeholder {
  color: #aaa;
}

.contact-us-form-submit-btn {
  align-self: flex-start;
  background-color: #2d5a38;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 15px 35px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(45, 90, 56, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-us-form-submit-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.contact-us-form-submit-btn:hover {
  background-color: #a97128;
  box-shadow: 0 10px 20px rgba(169, 113, 40, 0.3);
}

.contact-us-form-submit-btn:hover svg {
  transform: translateX(4px) translateY(-4px);
}

.footer-section-grag-wrapper {
  background-color: #080808;
  color: #e5e7eb;
  font-family: "Poppins", sans-serif;
  padding: 40px 5% 20px 5%;
  width: 100%;
  box-sizing: border-box;
}

.footer-section-grag-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-section-grag-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 21px;
}

.footer-section-grag-brand-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-section-grag-logo {
  max-width: 220px;
  height: auto;
  display: block;
}

.footer-section-grag-brand {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #a97128;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-section-grag-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 25px;
  max-width: 420px;
  text-align: justify;
}

.footer-section-grag-social-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 15px 0;
}

.footer-section-grag-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-section-grag-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(169, 113, 40, 0.3);
}

.footer-section-grag-socials a svg {
  width: 16px;
  height: 16px;
}

.footer-section-grag-socials a:hover {
  background-color: #a97128;
  border-color: #a97128;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(169, 113, 40, 0.4);
}

.footer-section-grag-heading {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #ffffff;
  margin: 0 0 25px 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-section-grag-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #a97128;
}

.footer-section-grag-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-section-grag-links li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section-grag-links li a:hover {
  color: #a97128;
  transform: translateX(6px);
}

.footer-section-grag-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-section-grag-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 14.5px;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-section-grag-info li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-grag-info li a:hover {
  color: #a97128;
}

.footer-section-grag-info li svg {
  width: 20px;
  height: 20px;
  color: #a97128;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-section-grag-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section-grag-copyright p {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #6b7280;
}

.footer-section-grag-copyright p:last-child {
  margin: 0;
}

.footer-section-grag-credit {
  color: #a97128;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-section-grag-credit:hover {
  color: #ffffff;
}

.footer-section-grag-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-section-grag-legal a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-section-grag-legal a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -12px;
  color: #333;
}

.footer-section-grag-legal a:hover {
  color: #a97128;
}

.quick-enquiry-garg-section {
  background:
    linear-gradient(rgba(45, 90, 56, 0.85), rgba(45, 90, 56, 0.9)),
    url("https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?q=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  padding: 40px 5%;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Organic background pill-shapes */
.quick-enquiry-garg-bg-shape {
  position: absolute;
  background-color: #ffffff;
  border-radius: 100px;
  opacity: 0.08;
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 100px;
  top: 50px;
  left: -50px;
}
.shape-2 {
  width: 500px;
  height: 150px;
  bottom: 40px;
  right: -100px;
}
.shape-3 {
  width: 150px;
  height: 150px;
  top: -20px;
  right: 20%;
  border-radius: 50%;
}

.quick-enquiry-garg-container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

/* White Card Container */
.quick-enquiry-garg-card {
  background-color: #ffffff;
  border-radius: 40px;
  display: flex;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

/* Left Column - Form Area */
.quick-enquiry-garg-form-col {
  flex: 1.2;
  padding: 60px 50px;
  background-color: #ffffff;
}

.quick-enquiry-garg-header {
  margin-bottom: 40px;
}

.quick-enquiry-garg-title {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: #000;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.quick-enquiry-garg-subtitle {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

/* Form Styles */
.quick-enquiry-garg-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quick-enquiry-garg-row {
  display: flex;
  gap: 20px;
}

.quick-enquiry-garg-row .quick-enquiry-garg-input-group {
  flex: 1;
}

.quick-enquiry-garg-input-group {
  display: flex;
  flex-direction: column;
}

.quick-enquiry-garg-input-group label {
  font-size: 13px;
  color: #222;
  margin-bottom: 8px;
  padding-left: 5px;
  font-weight: 500;
}

/* Input Fields (Soft, borderless look) */
.quick-enquiry-garg-input-group input,
.quick-enquiry-garg-input-group textarea {
  width: 100%;
  background-color: #f4f9f6;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 16px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  outline: none;
}

.quick-enquiry-garg-input-group textarea {
  resize: none;
}

.quick-enquiry-garg-input-group input:focus,
.quick-enquiry-garg-input-group textarea:focus {
  background-color: #ffffff;
  border: 2px solid #2d5a38;
  box-shadow: 0 10px 20px rgba(45, 90, 56, 0.08);
}

.quick-enquiry-garg-input-group input::placeholder,
.quick-enquiry-garg-input-group textarea::placeholder {
  color: #bbb;
}

/* Submit Button */
.quick-enquiry-garg-submit-btn {
  align-self: flex-start;
  background-color: #2d5a38;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 16px 40px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(45, 90, 56, 0.3);
  transition: all 0.3s ease;
}

.quick-enquiry-garg-submit-btn:hover {
  background-color: #a97128;
  box-shadow: 0 10px 20px rgba(169, 113, 40, 0.3);
  transform: translateY(-2px);
}

/* Right Column - Info Area */
.quick-enquiry-garg-info-col {
  flex: 0.8;
  background-color: #fafdfb;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(45, 90, 56, 0.05);
}

.quick-enquiry-garg-illustration {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 40px auto;
}

.quick-enquiry-garg-contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.quick-enquiry-garg-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quick-enquiry-garg-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e8f0eb;
  color: #2d5a38;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-enquiry-garg-icon svg {
  width: 18px;
  height: 18px;
}

.quick-enquiry-garg-detail-item p {
  margin: 0;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
}

.quick-enquiry-garg-socials {
  display: flex;
  gap: 15px;
}

.quick-enquiry-garg-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #2d5a38;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(45, 90, 56, 0.2);
}

.quick-enquiry-garg-social-link svg {
  width: 20px;
  height: 20px;
}

.quick-enquiry-garg-social-link:hover {
  background-color: #a97128;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(169, 113, 40, 0.3);
}

.testimonial-section-grag-wrapper {
  background: linear-gradient(135deg, #102517 0%, #1c3b24 100%);
  padding: 40px 5% 10px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.testimonial-section-grag-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(169, 113, 40, 0.15);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(45, 90, 56, 0.4);
  bottom: -150px;
  right: -100px;
}

.testimonial-section-grag-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-section-grag-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
}

.testimonial-section-grag-subtitle {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.testimonial-section-grag-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #a97128;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.testimonial-section-grag-desc {
  color: #b8d4c2;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

.testimonial-section-grag-slider {
  padding-top: 50px !important;
  padding-bottom: 30px !important;
}

.testimonial-section-grag-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 30px 40px 30px;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.testimonial-section-grag-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(169, 113, 40, 0.3);
}

.testimonial-section-grag-avatar {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #102517 0%, #1c3b24 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-section-grag-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-section-grag-quote-icon {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(169, 113, 40, 0.15);
  width: 60px;
  height: 60px;
  z-index: -1;
}

.testimonial-section-grag-text {
  font-size: 14.5px;
  color: #e2f0e6;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-section-grag-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #a97128;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.testimonial-section-grag-role {
  font-size: 13px;
  color: #8dae9a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-section-grag-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-section-grag-prev,
.testimonial-section-grag-next {
  position: static !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.testimonial-section-grag-prev:hover,
.testimonial-section-grag-next:hover {
  background: #a97128;
  border-color: #a97128;
}

.testimonial-section-grag-prev:after,
.testimonial-section-grag-next:after {
  font-size: 18px !important;
  font-weight: bold;
}

.our-certificate-garg-section {
  padding: 40px 5%;
  background-color: #fafdfb;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.our-certificate-garg-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(169, 113, 40, 0.05) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.our-certificate-garg-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(45, 90, 56, 0.04) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.our-certificate-garg-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.our-certificate-garg-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.our-certificate-garg-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: #f0f6f2;
  color: #a97128;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  margin-bottom: 15px;
  border: 1px solid rgba(169, 113, 40, 0.2);
}

.our-certificate-garg-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #000;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.our-certificate-garg-subtitle {
  font-size: 16px;
  color: #222;
  line-height: 1.7;
  margin: 0;
}

.our-certificate-garg-slider {
  padding: 20px 10px 60px 10px !important;
}

.swiper-slide {
  height: auto;
}

.our-certificate-garg-card {
  background-color: #ffffff;
  border: 1px dashed #486250;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(45, 90, 56, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  height: 90%;
  display: flex;
  flex-direction: column;
}

.our-certificate-garg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45, 90, 56, 0.12);
  border-color: rgba(45, 90, 56, 0.1);
}

.our-certificate-garg-card:hover .our-certificate-garg-img {
  transform: scale(1.05);
}

.our-certificate-garg-image-frame {
  width: 100%;
  height: 220px;
  background-color: #f8fbf9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid rgba(169, 113, 40, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.our-certificate-garg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.our-certificate-garg-content {
  padding: 0 10px 10px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.our-certificate-garg-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #262726;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.our-certificate-garg-desc {
  font-size: 14px;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

.our-certificate-garg-slider .swiper-button-next,
.our-certificate-garg-slider .swiper-button-prev {
  color: #a97128;
  background: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(169, 113, 40, 0.2);
}

.our-certificate-garg-slider .swiper-button-next:after,
.our-certificate-garg-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.our-certificate-garg-slider .swiper-pagination-bullet {
  background: #2d5a38;
  opacity: 0.3;
}

.our-certificate-garg-slider .swiper-pagination-bullet-active {
  background: #a97128;
  opacity: 1;
}

.garg-homepathy-slider-wrapper {
  width: 100%;
  position: relative;
  background-color: #ffffff;
}

.garg-homepathy-slider-main {
  width: 100%;
  height: 90vh;
  min-height: 600px;
}

.garg-homepathy-slider-item {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #f4f9f6;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.garg-homepathy-slider-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-color: #e8f0eb;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  z-index: 1;
}

.garg-homepathy-slider-content-row {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.garg-homepathy-slider-text-col {
  width: 50%;
  padding-right: 50px;
}

.garg-homepathy-slider-tag {
  margin-top: 64px;
  display: inline-block;
  background-color: #ffffff;
  color: #a86f21;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.garg-homepathy-slider-heading {
  font-family: "Playfair Display", serif;
  font-size: 53px;
  line-height: 1.2;
  font-weight: 700;
  color: #305d42;
  margin: 0 0 25px 0;
}

.garg-homepathy-slider-subtext {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  text-align: justify;
  color: #131313;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 90%;
}

.garg-homepathy-slider-btn-group {
  display: flex;
  gap: 20px;
}

.garg-homepathy-slider-button {
  font-family: "Poppins", sans-serif;
  background-color: #305d42;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(48, 93, 66, 0.25);
}

.garg-homepathy-slider-button:hover {
  background-color: #a86f21;
  box-shadow: 0 8px 25px rgba(168, 111, 33, 0.25);
}

.garg-homepathy-slider-button-alt {
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  border: 2px solid #305d42;
  color: #305d42;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.garg-homepathy-slider-button-alt:hover {
  background-color: #305d42;
  color: #ffffff;
}

.garg-homepathy-slider-img-col {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.garg-homepathy-slider-image {
  width: 90%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  animation: floatImage 6s ease-in-out infinite;
}

.garg-homepathy-slider-dots {
  bottom: 40px !important;
}

.garg-homepathy-slider-dots .swiper-pagination-bullet {
  background: #305d42;
  opacity: 0.4;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
}

.garg-homepathy-slider-dots .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a86f21;
  width: 35px;
  border-radius: 10px;
}

.about-us-grag-section {
  padding: 30px 5%;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.about-us-grag-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-us-grag-video-col {
  flex: 1;
  width: 100%;
}

.about-us-grag-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(48, 93, 66, 0.15);
  border: 8px solid #f4f9f6;
  background-color: #000;
}

.about-us-grag-video {
  width: 100%;
  height: 450px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.about-us-grag-content-col {
  flex: 1;
  width: 100%;
}

.about-us-grag-subtitle {
  display: inline-block;
  color: #a86f21;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  position: relative;
}

.about-us-grag-subtitle::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 2px;
  background-color: #a86f21;
}

.about-us-grag-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #000;
  line-height: 1.25;
  margin: 0 0 25px 0;
  font-weight: 700;
}

.about-us-grag-desc {
  font-size: 17px;
  color: #222;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

.about-us-grag-desc strong {
  color: #305d42;
  font-weight: 600;
}

.about-us-grag-btn-box {
  margin-top: 35px;
}

.about-us-grag-btn {
  display: inline-block;
  background-color: #305d42;
  color: #ffffff;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(48, 93, 66, 0.2);
}

.about-us-grag-btn:hover {
  background-color: #a86f21;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(168, 111, 33, 0.2);
}

.why-choose-garg-section {
  background-color: #f4f9f6;
  padding: 40px 5%;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.why-choose-garg-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start; /* Important for sticky to work */
  gap: 60px;
}

/* LEFT COLUMN - STICKY */
.why-choose-garg-sticky-col {
  flex: 0 0 40%;
  position: sticky;
  top: 120px; /* Distance from top when scrolling */
}

.why-choose-garg-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(169, 113, 40, 0.1);
  color: #a97128;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.why-choose-garg-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: #222;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.why-choose-garg-subtitle {
  font-size: 16px;
  color: #222;
  line-height: 1.7;
  margin: 0 0 40px 0;
}

.why-choose-garg-image-box {
  position: relative;
}

.why-choose-garg-dot-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#a97128 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.3;
  z-index: 1;
}

.why-choose-garg-img-frame {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(45, 90, 56, 0.15);
  border: 8px solid #ffffff;
}

.why-choose-garg-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.why-choose-garg-image-box:hover .why-choose-garg-img-frame img {
  transform: scale(1.08);
}

/* RIGHT COLUMN - STAGGERED GRID */
.why-choose-garg-grid-col {
  flex: 0 0 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Stagger Effect: Push the second column down */
.why-choose-garg-card:nth-child(even) {
  transform: translateY(50px);
}

.why-choose-garg-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(45, 90, 56, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Subtle Top Border Gradient */
.why-choose-garg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2d5a38, #a97128);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-choose-garg-card:hover {
  box-shadow: 0 25px 50px rgba(45, 90, 56, 0.1);
  border-color: rgba(45, 90, 56, 0.1);
}

/* For the even staggered cards, we combine the initial transform + hover lift */
.why-choose-garg-card:nth-child(even):hover {
  transform: translateY(40px); /* 50px original - 10px lift */
}

/* For odd cards just lift */
.why-choose-garg-card:nth-child(odd):hover {
  transform: translateY(-10px);
}

.why-choose-garg-card:hover::before {
  opacity: 1;
}

/* Watermark Background Icon */
.why-choose-garg-watermark {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  color: #f0f6f2; /* Very faint green */
  z-index: 1;
  transform: rotate(-15deg);
  transition: all 0.5s ease;
}

.why-choose-garg-card:hover .why-choose-garg-watermark {
  color: #e6f0e9;
  transform: rotate(0deg) scale(1.1);
}

.why-choose-garg-card-icon {
  width: 50px;
  height: 50px;
  background-color: #2d5a38;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(45, 90, 56, 0.2);
}

.why-choose-garg-card-icon svg {
  width: 24px;
  height: 24px;
}

.why-choose-garg-card-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #000;
  margin: 0 0 20px 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.why-choose-garg-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.why-choose-garg-list li {
  font-size: 14px;
  color: #222;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Custom Gold Checkmark Bullet */
.why-choose-garg-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A97128' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Responsive Styles */

.our-mission-vision-section-wrapper {
  background-color: #dfe1df;
  padding: 40px 5%;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.our-mission-vision-section-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(169, 113, 40, 0.05) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 1;
}

.shape-left {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -150px;
}

.shape-right {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(45, 90, 56, 0.04) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}

.our-mission-vision-section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.our-mission-vision-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.our-mission-vision-section-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 60px 50px 50px 50px;
  box-shadow: 0 15px 40px rgba(45, 90, 56, 0.06);
  border: 1px solid rgba(45, 90, 56, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.our-mission-vision-section-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2d5a38, #a97128);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.our-mission-vision-section-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(45, 90, 56, 0.12);
  border-color: rgba(169, 113, 40, 0.1);
}

.our-mission-vision-section-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.our-mission-vision-section-watermark {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  color: #f0f6f2;
  z-index: 0;
  transform: rotate(-15deg);
  transition: all 0.6s ease;
}

.our-mission-vision-section-card:hover .our-mission-vision-section-watermark {
  transform: rotate(0deg) scale(1.1);
  color: #e8f0eb;
}

.our-mission-vision-section-icon-box {
  width: 70px;
  height: 70px;
  background: #2d5a38;
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(45, 90, 56, 0.2);
  transition: all 0.4s ease;
}

.our-mission-vision-section-card:hover .our-mission-vision-section-icon-box {
  background: #a97128;
  box-shadow: 0 10px 25px rgba(169, 113, 40, 0.3);
  transform: translateY(-5px);
}

.our-mission-vision-section-icon-box svg {
  width: 32px;
  height: 32px;
}

.our-mission-vision-section-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #000;
  margin: 0 0 15px 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.our-mission-vision-section-divider {
  width: 60px;
  height: 3px;
  background-color: #a97128;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: width 0.4s ease;
}

.our-mission-vision-section-card:hover .our-mission-vision-section-divider {
  width: 100px;
}

.our-mission-vision-section-desc {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.bredcrumb-section-wrapper {
  position: relative;
  padding: 150px 5% 60px 5%;
  background-image: url("https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?=80&w=1920&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
  text-align: center;
  overflow: hidden;
}

.bredcrumb-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(6, 6, 6, 0.95) 0%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.bredcrumb-section-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bredcrumb-section-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 25px 0;
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bredcrumb-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 28px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bredcrumb-section-list li {
  font-size: 15px;
  color: #e2f0e6;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.bredcrumb-section-list li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.bredcrumb-section-list li a:hover {
  color: #a97128;
}

.bredcrumb-section-separator {
  display: flex;
  align-items: center;
}

.bredcrumb-section-separator svg {
  width: 18px;
  height: 18px;
  color: #a97128;
}

.bredcrumb-section-active {
  color: #a97128 !important;
  font-weight: 500 !important;
}
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 1200px) {
  .our-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-section-grag-top {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-garg-container {
    flex-direction: column;
    gap: 50px;
  }
  .why-choose-garg-sticky-col {
    position: static;
    flex: 0 0 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  .why-choose-garg-grid-col {
    flex: 0 0 100%;
    width: 100%;
  }
  .why-choose-garg-dot-pattern {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .our-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-us-form-wrapper {
    flex-direction: column;
  }
  .contact-us-form-info-col {
    padding: 50px 30px;
  }
  .contact-us-form-content-col {
    padding: 50px 30px;
  }

  .quick-enquiry-garg-card {
    flex-direction: column;
  }
  .quick-enquiry-garg-info-col {
    border-left: none;
    border-top: 1px solid rgba(45, 90, 56, 0.05);
    padding: 50px;
  }

  .testimonial-section-grag-title {
    font-size: 40px;
  }

  .our-certificate-garg-title {
    font-size: 36px;
  }

  .about-us-grag-section {
    padding: 80px 5%;
  }
  .about-us-grag-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-us-grag-video-wrapper {
    max-width: 80%;
    margin: 0 auto;
  }
  .about-us-grag-content-col {
    text-align: center;
  }
  .about-us-grag-subtitle::after {
    display: none;
  }
  .about-us-grag-title {
    font-size: 36px;
  }

  .garg-homepathy-slider-main {
    height: auto;
    min-height: auto;
  }
  .garg-homepathy-slider-content-row {
    flex-direction: column;
    padding: 80px 5%;
    text-align: center;
  }
  .garg-homepathy-slider-bg-shape {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    border-radius: 0;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
  }
  .garg-homepathy-slider-text-col {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
  .garg-homepathy-slider-heading {
    font-size: 44px;
  }
  .garg-homepathy-slider-subtext {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .garg-homepathy-slider-btn-group {
    justify-content: center;
  }
  .garg-homepathy-slider-img-col {
    width: 100%;
    justify-content: center;
  }
  .garg-homepathy-slider-image {
    width: 100%;
    max-height: 400px;
  }

  .our-mission-vision-section-grid {
    gap: 30px;
  }
  .our-mission-vision-section-card {
    padding: 50px 40px 40px 40px;
  }
  .our-mission-vision-section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .bredcrumb-section-wrapper {
    padding: 24px 5% 30px 5%;

    background-attachment: scroll;
  }
  .bredcrumb-section-title {
    font-size: 32px;
    margin: 0 0 20px 0;
  }
  .bredcrumb-section-list {
    padding: 10px 22px;
  }
  .bredcrumb-section-list li {
    font-size: 14px;
  }

  .contact-us-form-subtitle {
    text-align: justify;
    font-size: 15px;
  }
  .contact-us-form-header {
    margin-bottom: 23px;
  }
  .contact-us-form-section {
    padding: 30px 5%;
  }
  .contact-us-form-title {
    font-size: 28px;
  }
  .contact-us-form-row {
    flex-direction: column;
    gap: 25px;
  }
  .contact-us-form-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-section-grag-wrapper {
    padding: 60px 5% 20px 5%;
  }
  .footer-section-grag-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-section-grag-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer-section-grag-legal {
    justify-content: center;
  }
  .footer-section-grag-legal a:not(:last-child)::after {
    display: none;
  }
  .footer-section-grag-socials {
    justify-content: flex-start;
  }

  .quick-enquiry-garg-section {
    padding: 60px 5%;
  }
  .quick-enquiry-garg-form-col {
    padding: 40px 20px;
  }
  .quick-enquiry-garg-info-col {
    padding: 40px 20px;
  }
  .quick-enquiry-garg-row {
    flex-direction: column;
    gap: 20px;
  }
  .quick-enquiry-garg-title {
    font-size: 32px;
  }
  .quick-enquiry-garg-submit-btn {
    width: 100%;
  }

  .testimonial-section-grag-wrapper {
    padding: 70px 5%;
  }
  .testimonial-section-grag-title {
    font-size: 32px;
  }
  .testimonial-section-grag-card {
    padding: 40px 20px 30px 20px;
  }

  .our-certificate-garg-section {
    padding: 60px 5%;
  }
  .our-certificate-garg-title {
    font-size: 32px;
  }
  .our-certificate-garg-image-frame {
    height: 200px;
  }
  .our-certificate-garg-slider .swiper-button-next,
  .our-certificate-garg-slider .swiper-button-prev {
    display: none;
  }

  .our-mission-vision-section-wrapper {
    padding: 30px 5%;
  }
  .our-mission-vision-section-grid {
    grid-template-columns: 1fr;
  }
  .our-mission-vision-section-card {
    padding: 40px 30px;
  }
  .our-mission-vision-section-desc {
    font-size: 15px;
  }

  .why-choose-garg-section {
    padding: 70px 5%;
  }
  .why-choose-garg-title {
    font-size: 34px;
  }
  .why-choose-garg-grid-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /* Remove stagger on mobile for clean vertical flow */
  .why-choose-garg-card:nth-child(even) {
    transform: translateY(0);
  }
  .why-choose-garg-card:nth-child(even):hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .about-us-grag-section {
    padding: 20px 5%;
  }
  .about-us-grag-video-wrapper {
    max-width: 100%;
    border-width: 4px;
  }
  .about-us-grag-title {
    font-size: 28px;
  }
  .about-us-grag-desc {
    font-size: 15px;
  }

  .garg-homepathy-slider-heading {
    font-size: 34px;
  }
  .why-choose-garg-section {
    padding: 30px 5%;
  }
  .about-us-grag-video {
    height: 250px;
  }
  .garg-homepathy-slider-subtext {
    font-size: 15px;
  }
  .garg-homepathy-slider-btn-group {
    flex-direction: column;
    gap: 15px;
  }
  .garg-homepathy-slider-button,
  .garg-homepathy-slider-button-alt {
    width: 100%;
    box-sizing: border-box;
  }
  .garg-homepathy-slider-image {
    max-height: 300px;
  }
  .garg-homepathy-slider-content-row {
    margin-top: -42px;
    padding-top: 0;
  }
  .why-choose-garg-title {
    font-size: 28px;
  }
  .why-choose-garg-subtitle {
    font-size: 14px;
  }
  .why-choose-garg-image-box {
    margin-bottom: -25px;
  }
  .our-certificate-garg-section {
    padding: 30px 5% 10px;
  }
  .our-certificate-garg-title {
    font-size: 28px;
  }
  .our-certificate-garg-subtitle {
    font-size: 14px;
  }
  .our-certificate-garg-slider {
    margin-top: -38px;
  }
  .our-certificate-garg-name {
    font-size: 15px;
  }
  .our-certificate-garg-slider {
    padding: 20px 10px 20px 10px !important;
  }
  .testimonial-section-grag-wrapper {
    padding: 30px 5% 10px;
  }
  .testimonial-section-grag-title {
    font-size: 28px;
  }
  .testimonial-section-grag-header {
    margin-bottom: -6px;
  }
  .quick-enquiry-garg-section {
    padding: 30px 5%;
  }
  .quick-enquiry-garg-subtitle {
    text-align: justify;
  }
  .quick-enquiry-garg-title {
    font-size: 28px;
  }
  .quick-enquiry-garg-info-col {
    padding: 10px 20px;
  }
  .footer-section-grag-wrapper {
    padding: 20px 5% 20px 5%;
  }
  .header-mobile-screen-av-global-mobile-menu {
    width: 520px;
    max-width: 100%;
  }
  .header-mobile-screen-av-global-mobile-header {
    border-bottom: 1px solid #46604e;
  }
  .header-mobile-screen-av-global-mobile-logo img {
    height: 70px;
  }
  .header-mobile-screen-av-global-mobile-cta {
    background: linear-gradient(135deg, #46604e 0%, #46604e 100%);
  }

  .our-products-section {
    padding: 30px 5%;
  }
  .our-products-subtitle {
    font-size: 15px;
  }
  .our-products-header {
    margin-bottom: 21px;
  }
  .our-products-title {
    font-size: 28px;
  }
  .our-products-grid {
    grid-template-columns: 1fr;
  }
  .our-products-image-box {
    height: 250px;
  }
}
