/* ===== Reset and Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cal-sans-regular {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: 'Cal Sans', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
  padding-bottom: 60px;
  letter-spacing:1px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a.ablack {
  color: #111;
  text-decoration: none;
}
a.ablack:hover {
  color: #32CD32;
  text-decoration: none;
}
a.awhite {
  color: #fff;
  text-decoration: none;
}
a.awhite:hover {
  color: #32CD32;
  text-decoration: none;
}
a.agreen {
  color: #32CD32;
  text-decoration: none;
}
a.agreen:hover {
  color: #111;
  text-decoration: none;
}
/* ===== Header + Nav ===== */
header {
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
nav h1 {
  font-size: 1.5rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}
nav ul li a {
  color: #fff;
  font-weight: bold;
}
.hero-text-upper li {
   list-style: none;
   list-style-type: none;
}
/* ===== Animated Global Nav ===== */
.main-nav {
  background-color: #32CD32;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: navSlideDown 0.8s ease-in-out;
}
@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-item {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s;
}
.nav-item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  left: 0;
  bottom: -5px;
  background: #fff;
  transition: width 0.4s ease-in-out;
}
.nav-item:hover::after {
  width: 100%;
}
.nav-item.active {
  color: yellow;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 400px;
  background-color: #333;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 30%;
  left: 10%;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem 2rem;
  color: #fff;
  max-width: 500px;
}
.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-text p {
  margin-bottom: 1rem;
}
.hero-text .btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #32CD32;
  color: #fff;
  border-radius: 4px;
}

.hero-right
{
 max-width: 500px;
 display:block;
}
.hero-upper {
  position: relative;
  height: 500px;
  background-color: 111;
  overflow-y: auto;
}

.hero-upper img {
  width: 200%;
  height: 200%;
  object-fit: cover;
}

.hero-text-upper {
  position: absolute;
  top: 00%;
  left: 10%;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem 2rem;
  color: #fff;
  max-width: 500px;
}

.hero-text-upper h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-text-upper p {
  margin-bottom: 1rem;
}

.hero-text-upper .btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #32CD32;
  color: #fff;
  border-radius: 4px;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  margin: 1rem auto;
  font-size: 0.9rem;
  background: #efefef;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  animation: fadeIn 1.2s ease-in;
  width: fit-content;
}
.breadcrumbs a {
  color: #228B22;
  text-decoration: none;
  font-weight: 600;
  margin-right:0.3rem;
  font-size: 0.6rem;
}
.breadcrumbs span {
  color: #555;
  font-size: 0.8rem;
}

/* ===== Grid Layout for Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  animation: fadeIn 1s ease-in;
  padding: 0 1%;
}
.product-grid-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1% auto;
  max-width: 1200px;
  animation: fadeIn 1s ease-in;
  padding: 0 1%;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Product Card Styling ===== */
.product-card {
  background: #fff;
  border: 1px solid #b0ffb0;
  border-radius: 10px;
  overflow: hidden;
  padding: 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 12px rgba(50, 205, 50, 0.15);
  animation: cardEnter 1s ease;
}
@keyframes cardEnter {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 18px rgba(50, 205, 50, 0.25);
}
.product-card img {
  width: 100%;
  border-radius: 6px;
}
.product-card img.buttonaction {
  width: 3rem;
  margin: 1%;
  width: 3rem;
  display: block;
  border: 0 none;
}
.product-card h2 {
  color: #32CD32;
  margin: 1rem 0 0.5rem;
}
.product-card h3 {
  font-size: 1rem;
  color: #444;
  margin: 0.5rem 0 0.75rem;
}
.product-card p {
  font-size: 0.95rem;
  color: #666;
}

/* ===== Buttons ===== */
.animated-button, .call-button {
  display: inline-block;
  margin-right: 10px;
  margin-top: 1rem;
  padding: 10px 18px;
  background-color: #32CD32;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
  animation: buttonPulse 2s infinite;
}
@keyframes buttonPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.animated-button:hover, .call-button:hover {
  color: white;
  background-color: #28a428;
  transform: translateY(-2px);
}
.call-button {
  margin-left: 10px;
}
.material-icons {
  font-size: 2rem;
  color: white;
}

/* ===== Footer ===== */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1.2rem;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* ===== Responsive Nav Adjustments ===== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .hero-text {
    top: 20%;
    left: 5%;
    padding: 1rem;
    max-width: 90%;
  }
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.brand-title{
	width:30%;
	max-width:200px;
	text-align:left;
	margin-left:1%;
}
.whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: none;
      color: white;
      font-size: 16px;
      font-weight: bold;
      padding: 12px 18px;
      border-radius: 50px;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }

    iframe { width: 100%; height: 300px; border: 0; }

    .appicons{
  width:2rem;
}
.buttonaction {
  width: 3rem;
  margin: 1%;
  width: 3rem;
  display: block;
  border: 0 none;
}
img.whatsthat{
  width:60px; position:fixed; bottom:20px; right:20px; z-index:1000;
}
.card-container{
  padding: 0 4%;
}
img.uiextras{
  margin: auto;
  text-align:center;
  width:200px;
}


/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}


/* === Preloader Logo Animation === */
.preloader-logo {
  width: 100px;
  height: 100px;
  animation: logoPulse 1.5s infinite ease-in-out;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
/* === Preloader === */
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* === Smooth Anchor Scroll Padding (for fixed header spacing) === */
html {
  scroll-behavior: smooth;
}

/* === Sticky Nav Hide Animation === */
.nav-hidden {
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}
span.blackspan{
  color:#111;
  text-decoration: none;
}
span.blackspan:hover {
  color: #111;
  text-decoration: none;
}
img.cleariconsmall{
  width: 1.6rem;
  text-decoration: none;
  animation: logoPulse 1.5s infinite ease-in-out;
}
img.cleariconsmall:hover {
  width: 1.3rem;
  text-decoration: none;
}
/*FAQ */
            .faq-container {
              max-width: 1200px;
              margin: 0 auto;
            }
      
            .faq-item {
              margin-bottom: 10px;
            }
      
            .faq-question {
              background-color: #f4f4f4;
              padding: 10px;
              border: 1px solid #ccc;
              cursor: pointer;
              font-weight: bold;
              display: flex;
              justify-content: space-between;
              align-items: center;
              transition: background-color 0.3s;
              border-radius: 5px;
            }
      
            .faq-question:hover {
              background-color: #ddd;
            }
      
            .faq-answer {
              display: none;
              padding: 10px;
              background-color: #f9f9f9;
              border-left: 3px solid #02c03b;
              margin-top: 5px;
              animation: slideDown 0.5s ease;
              border-radius: 5px;
              font-size: 0.8rem;
              color:#555;
              font-weight:500;
            }
      
            @keyframes slideDown {
              0% {
                transform: translateY(-20px);
                opacity: 0;
              }
      
              100% {
                transform: translateY(0);
                opacity: 1;
              }
            }
      
            .toggle-icon {
              font-size: 20px;
            }
    
.left-toolbar-box{
width:50%;float:left;text-align:left;display:flex;justify-content: left;
}         
.right-toolbar-box {
  width:50%;float:right;text-align:right;display:flex;justify-content: right;
}
.toolbar-container{
  width:100%; position:relative;margin: 0 auto;margin:0 0 0.7rem 0;
}
.faq-scroller{
  display:block;
  height: 500px;
  overflow-y: scroll;
  margin: 0 auto;
}
.area-list{
  margin-top:50rem;
  overflow-x:scroll;
  overflow-y:scroll;
  height: 200px;
  margin-bottom:200px;
}