.elementor-13262 .elementor-element.elementor-element-13860b1{margin-top:30px;margin-bottom:0px;}/* Start custom CSS for html, class: .elementor-element-7060486 *//* ================= VARIABLES & RESET ================= */
:root {
  --ft-primary: #45b192;   /* आपका कलर */
  --ft-bg-light: #f4fcf9;  /* इफेक्टिव लाइट मिंट बैकग्राउंड */
  --ft-bg-dark: #1b2631;   /* डार्क फूटर बॉटम */
  --ft-text: #2c3e50;
  --ft-gray: #666666;
}

.ft-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

.ft-wrapper a {
  text-decoration: none;
  color: var(--ft-gray);
  transition: 0.3s;
}

.ft-wrapper a:hover {
  color: var(--ft-primary);
  padding-left: 5px;
}

/* ================= MAIN LAYOUT ================= */
.ft-wrapper {
  background-color: var(--ft-bg-light); /* Background changed here */
  border-top: 5px solid var(--ft-primary);
  padding-top: 50px;
  color: var(--ft-gray);
}

.ft-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* --- Left Column --- */
.ft-brand-col {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.ft-logo img {
  max-width: 160px;
  margin-bottom: 25px;
  display: block;
}

.ft-contact-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
}

.ft-icon-box {
  width: 20px;
  margin-top: 3px;
  display: flex;
  justify-content: center;
}

.ft-contact-text {
  flex: 1;
  font-size: 14px;
  color: var(--ft-text);
}

/* Social Icons */
.ft-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
.ft-social img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}
.ft-social a:hover img {
  transform: translateY(-4px);
}

/* --- Right Column (Links) --- */
.ft-nav-section {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.ft-col {
  flex: 1;
  min-width: 150px;
}

.ft-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--ft-text);
  margin-bottom: 25px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background-color: var(--ft-primary);
}

/* Arrow defaults (Hidden on Desktop) */
.ft-arrow {
  display: none;
}

.ft-links {
  list-style: none;
}

.ft-links li {
  margin-bottom: 12px;
  font-size: 14px;
}

/* ================= BOTTOM BAR ================= */
.ft-bottom {
  background-color: var(--ft-bg-dark);
  margin-top: 50px;
  padding: 20px 0;
}

.ft-bottom-inner {
  text-align: center;
}

.ft-payment-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

/* --- EXACT CARD SIZE --- */
.ft-card-img {
  height: 20px !important;
  width: 50px !important;
  object-fit: contain;
  background: #fff;
  border-radius: 2px;
  padding: 0 2px;
}

.ft-copyright {
  color: #9aa7b2;
  font-size: 13px;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .ft-container, .ft-nav-section {
    flex-direction: column;
    gap: 0;
  }
  
  .ft-brand-col {
    margin-bottom: 30px;
    text-align: center;
    max-width: 100%;
  }

  .ft-contact-row, .ft-social {
    justify-content: center;
  }

  .ft-col {
    border-bottom: 1px solid #e0e0e0;
  }

  /* Mobile Heading */
  .ft-heading {
    margin: 0;
    padding: 15px 0;
    cursor: pointer;
    font-size: 16px;
  }
  
  .ft-heading::after {
    display: none;
  }

  /* Visible Arrow */
  .ft-arrow {
    display: block;
    transition: transform 0.3s;
  }
  
  /* Active State (Arrow color change) */
  .ft-heading.ft-active {
    color: var(--ft-primary);
  }
  
  .ft-heading.ft-active .ft-arrow svg {
    fill: var(--ft-primary); /* Arrow turns Green */
    transform: rotate(180deg); /* Arrow Rotates */
  }

  /* Accordion Content */
  .ft-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    background: rgba(255,255,255,0.5);
  }

  .ft-links.ft-open {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 20px;
  }
}/* End custom CSS */