/*===============================================Footer Section===============================================================*/
/* ===== Footer Base ===== */
.footer {
  background: #f2f9ef;
  color: #2a2a0f;
  padding: 60px 40px 90px 70px;
  
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 50px;
}

/* ===== Left Section ===== */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* ✅ all items flush left */
  gap: 25px;                 /* even vertical spacing */
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-left: -38px;
}

.footer-info {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #818181;
  text-align: left;
}

.footer-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 300px;          /* adjust to your design */
  border: 1px solid #555;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
}
.footer-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 15px;
  color: #2a2a0f;
}

.footer-right{
  display: flex;
  flex-direction: row;
  gap: 200px;
  justify-content: flex-end;
  width: 900px;
  padding-top: 20px;
}





/* ===== Other Columns ===== */
.footer-col h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #2a2a0f;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: #818177;
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover {
  color: #2a2a0f;
}

.social-bar {
  display: flex;
  justify-content: space-between; 
  align-items: center;             
  margin-top: 40px;
  padding: 20px 80px 20px 20px;
}


.social-icons a {
  color: #2a2a0f;                   
  font-size: 1.1rem;               
  margin-right: 18px;             
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:last-child {
  margin-right: 0;                 
}
.social-icons a:hover {
  color: #8fbb8f;                  
}


.get-more-btn {
  background: #8fbb8f;
  color: #000000;
  padding: 10px 22px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.get-more-btn:hover {
  background: #2a2a0f;
  color: #B8D4AD;
}

.footer-bar{
  display: flex;
  flex: 1fr;
  height: 2px;
  width: 100%;           
  background: #546751;
  margin-top: 40px;
}

.copyright-text{
  display: flex;
  flex: 1fr;
  justify-content: center;
  padding-top: 30px;
  font-size: 14px;
  color: rgb(111, 111, 111);
}
.copyright-text a{
  text-decoration: none;
  color: #2a2a0f
}
/*============================================Media Queries==============================================*/
@media(max-width: 1030px){
  .footer-right{
  display: flex;
  flex-direction: row;
  gap: 90px;
  justify-content: center ;
  width: 700px;
  padding-left: 50px;
  padding-top: 20px;
}
}

@media(max-width: 770px){
   .footer-right{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start ;
  width: 700px;
  padding-left: 30px;
  padding-top: 20px;
}
  .footer {
  background: #f2f9ef;
  color: #2a2a0f;
  padding: 60px 30px 90px 15px;
  
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 10px;
  justify-items: center;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  row-gap: 80px;
  column-gap: 10px;
}

.footer-right-columns{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  margin-left: 20px;
}



.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   
  gap: 20px;                 
  margin-right: 50px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-left: -32px;
}

.footer-info {
  max-width: 300px;
  font-size: 0.80rem;
  line-height: 1.6;
  color: #818181;
  text-align: justify;
}

.footer-search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px;          
  border: 1px solid #555;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.footer-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 6px 15px;
  color: #2a2a0f;
}


.footer-col h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #2a2a0f;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  font-size: 0.90rem;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: #818177;
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover {
  color: #2a2a0f;
}
}



@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media(max-width: 430px){
.footer {
  background: #f2f9ef;
  color: #2a2a0f;
  padding: 60px 20px 90px 0px;
  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   
  gap: 10px;                 
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-left: 20px;
}

.footer-info {
  max-width: 300px;
  font-size: 0.6rem;
  line-height: 1.6;
  color: #818181;
  text-align: justify;
}

.footer-search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px;          
  border: 1px solid #555;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.footer-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 4px 15px;
  color: #2a2a0f;
}

  .footer-right{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start ;
  width: 700px;
  padding-left: 60px;
  padding-top: 20px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #2a2a0f;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  font-size: 0.6rem;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #818177;
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover {
  color: #2a2a0f;
}
.social-bar{
  gap: 2px;
  margin-left: 40px;
}
.social-bar a{
  color: #2a2a0f;                     
  font-size: 0.6rem;               
  margin-right: 11px;              
  text-decoration: none;
  transition: color 0.3s;
}
.get-more-btn {
  background: #8fbb8f;
  color: #000000;
  padding: 10px 22px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.6rem;
  
  font-weight: 600;
  transition: background 0.3s;
}
}
@media(max-width: 380px){
 .footer{
  padding: 40px;
    margin: 0;
  }
  .footer-right{
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start ;
  width: 700px;
  padding-left: 0px;
  padding-top: 20px;
}

.social-bar{
  gap: 10px;
  margin-left: 0px;
  margin-left: 20px;
}
.social-bar a{
  color: #2a2a0f;                     
  font-size: 0.6rem;               
  margin-right: 11px;              
  text-decoration: none;
  transition: color 0.3s;
}
.copyright-text{
  font-size: 10px;
  margin: 0;
  padding: 5px;
}
}
@media(max-width: 320px){
  .footer{
    padding: 10px;
    margin: 0;
  }
  
  .footer-right{
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start ;
  width: 700px;
  padding-left: 0px;
  padding-top: 20px;
}

.social-bar{
  gap: 10px;
  margin-left: 0px;
  margin-left: 20px;
}
.social-bar a{
  color: #2a2a0f;                     
  font-size: 0.6rem;               
  margin-right: 11px;              
  text-decoration: none;
  transition: color 0.3s;
}
.copyright-text{
  font-size: 10px;
  margin: 0;
  padding: 5px;
}
}