*{
    margin:0;
    padding:0;
    
}
.body{
    font-family: poppins,sans-serif;
}
.info-bar {
    background-color: #087436;
    color:#fff;
    padding:0.5rem 1.5rem;
    display:flex;
    justify-content:end;
    align-items: center;
    flex-wrap: wrap;
    text-align: right;
}
.info-right{
    text-align: right;
    padding-bottom: 10px;
    
}
.info-right span{
    margin-left:1rem;
    font-size:0.7rem;
    display:inline-block;
    text-align: right;
    padding-right: 30px;
}
.info-right i{
    margin-right: 0.5rem;
    text-align: right;
}

.main-header {
  background-color: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ccc;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section img {
  height: 60px;
  padding:0 50px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  
}
.nav-links{
    padding-right: 30px; /* Right theke 30px doori */
}

.nav-links ul a {
  text-decoration: none;
  color: #000;
  font-weight:300;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  
}
.nav-links ul li{
    font-size: large;
}

.nav-links a:hover {
  color: #007bff;
}
.dropbtn {
  font-weight:lighter!important;
}


.download-btn {
  /*background-color: #28a745;*/
  color:#32CD32
  padding:0.5rem 1rem;
  border-radius: 6px;
  border:1px solid #087436;
  transition: background-color 0.3s ease;
  padding-right:20px;
}

.download-btn:hover {
  background-color: #218838;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn{
    font-family: 'poppins', sans-serif;
    font-weight: 900;
    text-decoration: none;
    color: #000;
    padding:10px 15px;
    display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top:100%;
  left:0;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 1;
}

.dropdown-content a {
  font-family:'poppins',sans-serif;
  font-weight: 2000;
  color:black;
  padding:10px 16px; 
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content hr {
  margin: 0.3rem 0;
  border: none;
  border-top: 1px solid #ddd;
}
.hero-section {
    background-image: url('lead.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height:100vh;
    position:relative;
    display:flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    text-align: center;
}
.hero-overlay {
    background-color: rgba(0,0,0,0.6);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    width:90%;
}
.hero-overlay h1{
    font-size: 2.5rem;
    margin-bottom: 2rem;
}
.hero-overlay p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-button {
    background-color: #28a745;
    color:#fff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 1.3s ease;
}

.cta-button:hover{
    background-color: #218838;
}
.category-product-section{
    padding: 3rem 1rem 50px 1rem;
    text-align: center;
    background-color: #f9f9f9;
}
.category-product-section h2{
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color:#539d63;
    font-weight: bold;
    padding-top: 20px;
}
.category-grid{
    display: flex;
    justify-content: center;
    gap: 14rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    margin-top: 4rem;
}
/*.category-card {
    background-color: #fff;
    padding:1.5rem;
    border-radius: 12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    transition: transform 3.3s ease;
    width:150px;
    text-align: center;
    gap:50px;
}*/

.category-card:hover{
    transform: translateY(-5px);
}
.category-card img{
    width:30px;
    height:30px;
    object-fit: contain;
    padding: 2rem;
    background-color: #fff;
    border:2px solid #ddd;
    border-radius: 50%;
}
.category-card h3{
    margin-top: 1rem;
    font-size:1.1rem;
    color:#333;
}
.product-filters {
    display: flex;
    justify-content:center;
    gap:1rem;
    margin-bottom:2rem;
    flex-wrap: wrap;
}
.filter-btn{
    background-color: #fff;
    border:1px solid #ccc;
    padding: 1rem 1rem;
    border-radius: 6px;
    cursor:pointer;
    font-weight: bold;
    transition: background-color 0.3 ease;

}
.filter-btn:hover,.filter-btn.active{
    background-color: #28a745;
    color: #fff;
    background-color: #28a745;
}
.product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap:2rem;
}
.product-card{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.image-box img{
    width:100%;
    display: block;
    border-radius: 12px;
}
.text-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding:0.8rem;
}
.text-overlay h3 {
    font-size: 0.9rem;
    margin-top: 0.3rem;
    font-weight: normal;
}
.about-section{
    padding: 3rem 1rem;
    background-color:#192814; !important;;
    font-family:sans-serif;
    color:#fff;
}
.about-row{
    display: flex;
    flex-wrap: wrap;
    gap:2rem;
    align-items: flex-start;
}
.about-image-box{
    background-color: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 300px;
    margin-left: 50px;
}
.about-image-box img{
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}
.about-text{
    flex: 1;
    min-width: 280px;
}
.about-text h2{
    font-size:2rem;
    margin-bottom:1rem;
    color:#333;
}
.about-text p{
    font-size: 1rem;
    color:#555;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #e8e8e8;
}
.mission-vision-section{
    padding: 3rem 1rem;
    background-color: #f9f9f9;
    font-family: sans-serif;
}
.mv-grid {
    display: flex;
    flex-wrap: wrap;
    gap:2rem;
    justify-content: center;
}
.mv-card{
   
    
    border-radius: 12px;
    
    min-width: 280px;
    max-width: 600px;
}
.mv-card p{
    font-size: 1rem;
    color:#444;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.mv-card h3{
    font-size: 2rem;
    font-weight: bolder;
    color:#539d63
}
.mv-card ul{
    padding-left: 1.2rem;
    color:#444;
    line-height: 1.6;
}
.mv-card ul li{
    margin-bottom: 0.5rem;
}
.ratio-section {
    padding: 3rem 1rem;
    background-color:#192814;
    text-align: center;
    font-family:oswald,sans-serif;
}
.ratio-section h2{
    font-size: 2rem;
    margin-bottom: 2rem;
    color:#FFF;
}
.ratio-layout{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
}
.large-chart{
    flex: 1;
    max-width: 400px;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    
}
large-chart img{
    width: 100%;
    height:auto;
    background: 8px;
} 
.stacked-charts{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 280px;
}
.small-chart{
    background-color: #fff;
    padding: 1.2rem;
    background: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.small-chart img{
    width:100%;
    height:auto;
    border-radius: 8px;
}
.large-chart h3, .small-chart h3{
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color:#333;
}
.company-structure {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
    text-align:center;
    font-family:sans-serif;
}
.company-structure h2{
    font-size: 2rem;
    margin-bottom: 2rem;
    color:#087436;
}
.structure-image-box {
    background-color: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: inline-block;
    max-width: 100%

}
.structure-image-box img{
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.showroom-section{
    padding: 3rem 1rem;
    background-color: #f9f9f9;
    text-align:center;
    font-family:sans-serif;
    
}
.showroom-section h2{
    color:#087436;
    font-size: 2rem;
    padding:2rem;
}
.partners-section{
    padding: 3rem 1rem;
    background-color: #f9f9f9;
    text-align:center;
    font-family:sans-serif
}
.partners-section h2{
    color:#087436;
    font-size: 2rem;
    padding:2rem;
}
.contact-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  font-family: sans-serif;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap:2rem;
  align-items:flex-start;
}

.map-box {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.form-box {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-box h2 {
  color: #087436;
  margin-bottom: 1rem;
}

.form-box p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #444;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-box input,
.form-box textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.form-box button {
  background-color: #087436;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.contact-details {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #333;
}
.footer {
  background-color: #222;
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
  padding: 3rem 1.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid #444;
  padding-bottom: 2rem;
}







.social-icons a {
  color: #fff;
  margin-left:30px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #08b45a;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.link-group h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.1rem;
}

.link-group ul {
  list-style: none;
  padding: 0;
}

.link-group ul li {
  margin-bottom: 0.5rem;
}

.link-group ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.link-group ul li a:hover {
  color: #08b45a;
}

.subscribe-box h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.subscribe-box p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.subscribe-box form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.subscribe-box input {
  padding: 0.6rem;
  border-radius: 6px;
  border: none;
  flex: 1;
}

.subscribe-box button {
  background-color: #08b45a;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}