/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.5
	Stable tag: 3.4.5
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
  /* Saturated, Earthy Palette */
  --primary-green: #256629;
  --dark-green: #144217;
  --earth-brown: #6d4c41;
  --rich-yellow: #f7e7ce;
  --off-white: #f9fbe7;
  --text-dark: #222222;
  --white: #ffffff;
  --whatsapp: #25d366;

  /* Spacing */
  --section-spacing: 60px;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  background: var(--off-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--earth-brown);
}
h1 {
  color: white;
} /* Hero headers usually white */
p {
  margin-top: 0;
  margin-bottom: 15px;
}
ul,
ol {
  margin: 0;
  padding: 0;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.text-center {
  text-align: center;
}
.section-pad {
  padding: var(--section-spacing) 0;
}
.hidden {
  display: none;
}

/* =========================================
   HEADER STYLES
   ========================================= */

/* 1. TOP BAR */
.site-top-bar {
  background-color: var(--dark-green);
  color: white;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 500;
}
.hide-mobile {
  display: inline;
}

/* 2. MAIN HEADER */
.site-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px; /* Fixed height for stability */
}

/* Logo */
.site-branding a {
  text-decoration: none;
}
.text-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -1px;
}
.text-logo .highlight {
  color: var(--primary-green);
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: 0.2s;
}
.nav-links li a:hover {
  color: var(--primary-green);
}

/* Header Button */
.btn-header {
  background: var(--rich-yellow);
  color: var(--dark-green);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.btn-header:hover {
  background: var(--earth-brown);
  color: white;
}

/* 3. MOBILE TOGGLE (Hamburger) */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
}

/* 4. MOBILE SIDEBAR */
.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: -280px; /* Hide off screen */
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.mobile-menu-sidebar.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  backdrop-filter: blur(2px);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.mobile-title {
  font-weight: bold;
  font-size: 1.2rem;
}
.close-mobile {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #555;
}

/* Mobile Links */
.mobile-nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-links li {
  margin-bottom: 15px;
}
.mobile-nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
}
.mobile-cta {
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
body.no-scroll {
  overflow: hidden;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.iso-logo {
  height: 90px;
  width: auto;
  display: block;
}


/* 5. RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
  /* Switch to mobile view on Tablets & Phones */
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hide-mobile {
    display: none;
  } /* Hide email on small screens */
  .top-social {
    display: none;
  } /* Simplify top bar */
  .top-bar-inner {
    justify-content: center;
  }
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.site-footer {
  background-color: #1a1a1a; /* Almost Black */
  color: #b0b0b0; /* Light Grey Text */
  padding-top: 60px;
  font-size: 0.95rem;
  margin-top: auto; /* Pushes footer to bottom if content is short */
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
}

/* Column Elements */
.footer-logo {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.footer-logo .highlight {
  color: var(--primary-green);
}

.footer-col h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-left: 3px solid var(--primary-green);
  padding-left: 10px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--rich-yellow);
  padding-left: 5px; /* Slight movement on hover */
}

/* Contact Lines */
.contact-line {
  margin-bottom: 12px;
  display: block;
}
.contact-line a {
  color: #b0b0b0;
  text-decoration: none;
}
.contact-line a:hover {
  color: white;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-socials a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Bottom Bar */
.footer-bottom {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #333;
  font-size: 0.85rem;
}

/* Responsive Tweak for Footer */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
  .footer-col h4 {
    border-left: none;
    border-bottom: 2px solid var(--primary-green);
    display: inline-block;
    padding-bottom: 5px;
  }
  /* Add extra padding at bottom so Sticky Mobile Bar doesn't cover copyright */
  .footer-bottom {
    padding-bottom: 80px;
  }
 
}

/* =========================================
   2. BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-align: center;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary-green);
  color: white;
  box-shadow: 0 4px 6px rgba(37, 102, 41, 0.3);
}
.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  color: white;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: white;
}

.btn-outline {
  border: 3px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
  font-weight: 800;
}
.btn-outline:hover {
  background: var(--primary-green);
  color: white;
}

.btn-full {
  width: 100%;
}

/* =========================================
   3. HERO SECTION (16:9 Feel)
   ========================================= */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  color: white;
  padding: 60px 0;
}
/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(20, 66, 23, 0.7), rgba(20, 66, 23, 0.7));
  z-index: 1;
} */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 1.35rem;
  margin-bottom: 35px;
  opacity: 0.95;
  font-weight: 500;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   4. COMPONENT: TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--primary-green);
  padding: 25px 0;
  color: white;
}
.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.trust-item i,
.trust-item span {
  font-size: 32px;
  color: var(--rich-yellow);
}
.trust-item strong {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

/* =========================================
   5. COMPONENT: INTRO SECTIONS
   ========================================= */
.intro-section {
  background: var(--rich-yellow);
}
.intro-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.intro-text h2 {
  color: var(--earth-brown);
  font-size: 2.2rem;
}
.intro-img img {
  border-radius: 8px;
  border: 4px solid var(--earth-brown);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =========================================
   6. COMPONENT: PRODUCT CARDS
   ========================================= */
.products-section {
  background: var(--white);
}
.section-title {
  text-align: center;
  margin-bottom: 35px;
}
.section-title h2 {
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 5px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
  border: 2px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
  background: white;
}
.product-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-3px);
}
.product-img {
  height: 180px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-info {
  padding: 15px;
  text-align: center;
  background: var(--off-white);
}
.product-info h3 {
  margin: 0 0 5px;
  color: var(--earth-brown);
  font-size: 1.3rem;
}
.price-tag {
  color: var(--dark-green);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* =========================================
   7. COMPONENT: PROCESS STEPS
   ========================================= */
.process-section {
  background: var(--earth-brown);
  color: var(--rich-yellow);
  text-align: center;
}
.process-section h2 {
  color: white;
  margin-bottom: 40px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.process-step .step-num {
  font-size: 4rem;
  font-weight: 900;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
  position: relative;
  z-index: 2;
}

/* =========================================
   8. COMPONENT: CTA BANNER
   ========================================= */
.cta-banner {
  background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

/* =========================================
   9. MODAL POPUP
   ========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.close-modal {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: 0.2s;
}
.close-modal:hover {
  color: var(--earth-brown);
}
.modal-header {
  text-align: center;
  margin-bottom: 25px;
}
.modal-header h3 {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

/* WPForms Modern Override */
div.wpforms-container-full .wpforms-form input[type="text"],
div.wpforms-container-full .wpforms-form input[type="email"],
div.wpforms-container-full .wpforms-form input[type="tel"],
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form textarea {
  padding: 12px !important;
  border: 2px solid #eee !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  background: #f9f9f9;
}
div.wpforms-container-full .wpforms-form input:focus {
  border-color: var(--primary-green) !important;
  background: white;
}
div.wpforms-container-full .wpforms-form button[type="submit"] {
  background-color: var(--primary-green) !important;
  border: none !important;
  color: white !important;
  font-size: 18px !important;
  padding: 12px 25px !important;
  width: 100%;
  border-radius: 4px !important;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
}
div.wpforms-container-full .wpforms-form button[type="submit"]:hover {
  background-color: var(--dark-green) !important;
}

/* =========================================
   10. MOBILE STICKY BAR
   ========================================= */
.mobile-sticky {
  display: none;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.mobile-sticky a,
.mobile-sticky button {
  flex: 1;
  text-align: center;
  padding: 15px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.sticky-call {
  background: var(--dark-green);
}
.sticky-wa {
  background: var(--whatsapp);
}

/* =========================================
   12. INNER PAGE STYLES (Add to style.css)
   ========================================= */
/* Shorter banner for inner pages */
.page-header {
  background:
    linear-gradient(rgba(20, 66, 23, 0.8), rgba(20, 66, 23, 0.8)),
    url("https://strawbales.in/wp-content/uploads/2026/01/Gemini_Generated_Image_8nwcdq8nwcdq8nwc-scaled.webp");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}
.page-header h1 {
  color: white;
  margin-bottom: 10px;
  font-size: 2.5rem;
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: var(--rich-yellow);
}

/* Enhanced Product Card for "No Single Page" layout */
.product-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.product-features {
  list-style: none;
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.product-features li {
  margin-bottom: 5px;
  color: var(--dark-green);
}
.product-features li::before {
  content: "✔";
  margin-right: 5px;
  color: var(--primary-green);
}

/* =========================================
   11. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .intro-flex {
    grid-template-columns: 1fr;
  }
  .intro-img {
    order: -1;
  }
  /* body {
    padding-bottom: 50px;
  } */
  /* Space for sticky bar */
  .mobile-sticky {
    display: flex;
  }
  .btn {
    width: 100%;
    padding: 12px 20px;
  }
  .hero-buttons {
    gap: 10px;
    width: 100%;
  }
}

/* =========================================
   13. ABOUT PAGE SPECIFIC STYLES
   ========================================= */
/* Stats Counter Section */
.stats-section {
  background: var(--dark-green);
  color: white;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}
.stat-box h3 {
  font-size: 3rem;
  margin-bottom: 5px;
  color: var(--rich-yellow);
}
.stat-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Values List */
.values-list {
  list-style: none;
  margin-top: 20px;
}
.values-list li {
  background: white;
  border-left: 5px solid var(--primary-green);
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.values-list strong {
  color: var(--earth-brown);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}
/* =========================================
   14. CONTACT PAGE STYLES
   ========================================= */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Contact Info Cards */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-green);
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-card i {
  font-size: 24px;
  color: var(--primary-green);
  width: 30px;
  text-align: center;
}
.contact-card h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
  color: var(--earth-brown);
}
.contact-card p {
  margin: 0;
  color: #555;
}
.contact-card a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: bold;
}

/* Embedded Form Container */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--rich-yellow);
}

/* Map */
.map-frame {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 25px;
  }
}

#gt_float_wrapper {
  top: 50% !important;
  right: 2px !important;
}

.gt_float_switcher {
  font-size: 13px !important;
  line-height: 13px !important;
}
.gt_float_switcher img {
  width: 20px !important;
}

#hero-slider .ha-slick-title {
  text-align: center;
}
.bdt-prime-slider-mount .bdt-slideshow-item .bdt-ps-slide-img {
  background-position: center right !important;
}
