 /* --footer code-- */
.ds-footer {
  background: #000;
  color: white;
  padding: 80px 8%;
  font-family: Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;

}

/* NEWSLETTER */
.ds-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.ds-left h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

/* SUBSCRIBE */
.ds-subscribe {
  display: flex;
  gap: 10px;
}

.ds-subscribe input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 4px;
}

.ds-subscribe button {
  background: orange;
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 4px;
}

.ds-subscribe button:hover {
  background: rgb(148, 97, 2);
}

.sub-msg {
  margin-top: 8px;
  font-size: 14px;
}


/* CHECKBOX */
.ds-checkbox {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: #bbb;
 
}

.ds-checkbox a {
  color: orange;
}

/* DIVIDER */
.ds-divider {
  margin: 50px 0;
  border-top: 1px solid #222;
}

/* GRID */
.ds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

/* OFFICE BLOCK */
.ds-office h3 {
  color: orange;
  font-size: 16px;
  margin-bottom: 12px;
}

.ds-office p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

.ds-office span {
  display: block;
  margin-top: 10px;
  color: orange;
  font-weight: bold;
}

/* INDIA HIGHLIGHT PANEL */
.ds-india h2 {
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: white;
}

.ds-india p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
}

.ds-india span {
  color: orange;
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.ds-india h4 {
  margin-top: 22px;
  color: white;
}
.site-footer {
  background: #000;
  color: #aaa;
  padding: 20px 60px 30px;
}


.footer-top {
  display: flex;
  justify-content: flex-end;
}

.social-icons a {
  color: #fff;
  margin-left: 18px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #1da1f2;
}

.site-footer hr {
  border: none;
  border-top: 1px solid #333;
  margin: 18px 0 25px;
}

.footer-content {
    margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-left {
  max-width: 65%;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  margin: 0 6px;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-left p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #888;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-right img {
  height: 50px;
  max-width: 120px;
  object-fit: contain;
}




@media (max-width: 768px) {
  .ds-newsletter,
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-left {
    max-width: 100%;
  }
}
