/* ===== FOOTER LINKS SECTION (WHITE) ===== */
.footer-links-section {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #666;
  padding: 30px 15px;
  line-height: 1.8;
}
.footer-links-section .inner {
  max-width: 1400px;
  margin: auto;
}
.footer-links-section .section-block {
  margin-bottom: 25px;
}
.footer-links-section .section-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-links-list li {
  display: flex;
  align-items: center;
}
.footer-links-list a {
  text-decoration: none;
  color: #777;
  transition: 0.3s;
}
.footer-links-list a:hover {
  color: #ff6b00;
}
.footer-links-list .sep {
  padding: 0 8px;
  color: #ccc;
}
.footer-desc {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-desc-text {
  font-size: 12.5px;
  color: #888;
  text-align: justify;
  margin: 0;
}

/* ===== DARK FOOTER ===== */
.dark-footer {
  background-color: #243147;
  color: #ffffff;
  padding: 60px 20px;
}
.dark-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.dark-footer-col h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid #3d4a61;
}
.dark-footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background-color: #F8E81C;
}
.dark-footer-col p,
.dark-footer-col li {
  font-size: 14px;
  line-height: 1.8;
  color: #d1d8e2;
}
.dark-footer-col ul {
  list-style: none;
  padding: 0;
}
.dark-footer-col ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.dark-footer-col ul li a {
  color: #d1d8e2;
  text-decoration: none;
  transition: 0.3s;
}
.dark-footer-col ul li a:hover {
  color: #F8E81C;
}
.yellow-bold {
  color: #F8E81C;
  font-weight: bold;
}

/* ===== COPYRIGHT BAR ===== */
.copyright-bar {
  background-color: #1d283a;
  padding: 20px;
  color: #9ba6b9;
  font-size: 13px;
}
.bar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.bottom-nav a {
  color: #9ba6b9;
  text-decoration: none;
  margin-right: 20px;
}
.bottom-nav a:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bar-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .copyright-bar {
    padding: 15px 10px;
  }
  .dark-footer {
    padding: 30px 20px !important;
  }
  .footer-links-section {
    padding: 20px 15px !important;
  }
  
  
  
  
  
  .copyright-bar {
  background-color: #1d283a;
  padding: 20px;
  color: #9ba6b9;
  font-size: 13px;
  margin-bottom: 0;  /* ← add */
}

body {
  margin: 0;
  padding: 0;        /* ← confirm பண்ணு */
}
}