.elementor-29 .elementor-element.elementor-element-efb1b0a{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-29 .elementor-element.elementor-element-9ccab71{--display:flex;--min-height:200px;}/* Start custom CSS for html, class: .elementor-element-831c518 *//* Reset Basic Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Footer Container */
.footer-container {
  width: 100%;
}

/* Top Section (Golden-Brown Background) */
.footer-top {
  background-color: #7b590e; /* Image jaisa exact brown/golden tone */
  color: #ffffff;
  padding: 50px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

/* Columns General Styling */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Logo Column Styling */
.logo-col .logo img {
  max-width: 170px;
  background-color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.logo-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #f1e6d0;
}

/* Center Columns Styling (Icon + Title + Subtitle) */
.center-col {
  align-items: center;
  text-align: center;
}

.icon-box {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 12px;
}

.center-col h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.center-col p, 
.center-col p a {
  font-size: 14px;
  color: #f1e6d0;
  text-decoration: none;
}

.center-col p a:hover {
  text-decoration: underline;
}

/* Bottom Bar Section (Cream/Beige Background) */
.footer-bottom {
  background-color: #faf5e4; /* Light cream background */
  padding: 15px 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background-color: #6e4e0b; /* Circular button dark brown color */
  color: #faf5e4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.85;
}

/* Copyright Text */
.copyright {
  font-size: 14px;
  color: #6e4e0b;
  font-weight: 500;
}

/* Responsive Design for Mobile & Tablets */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .logo-col {
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
  }
}/* End custom CSS */