/* Reset and base style */
* { box-sizing: border-box; }

body {
  font-family: 'Hind Siliguri', Arial, sans-serif;
  margin: 30px;
  background: #f7f8f9;
  color: #222;
}

/* Headings */
h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 400;
}

/* Top header bar */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  background-color: #126625;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.site-header .logo img {
  height: 40px;
  width: auto;
  display: block;
}

.site-header .date {
  font-size: 16px;
  font-weight: 800;
}

/* Intro section */
.intro-section {
  text-align: center;
  background-color: #ffd549;
  padding: 15px;
}

.intro-section h1 {
  font-size: 25px;
  margin: 0;
}

.intro-section h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #2f4f4f;
}

.intro-section p {
  font-size: 15px;
  color: #484848;
}

/* Search box */
.search-container {
  text-align: center;
  margin: 30px auto;
  padding: 24px;
  max-width: 350px;
  background: #ffd549;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-container h2 { margin-bottom: 15px; }

.search-container label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
  font-weight: bold;
}

.search-container select,
.search-container input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.search-container button {
  width: 100%;
  padding: 10px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.search-container button:hover { background: #218838; }

/* Table */
.agent-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #dcdcdc;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  margin-bottom: 70px;
}

.agent-table th,
.agent-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
}

/* Table header */
.agent-table thead th {
  background: #c39600;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Zebra striping */
.agent-table tbody tr:nth-child(odd) { background: #fff; }
.agent-table tbody tr:nth-child(even) { background: #fff5d2; }

/* Links */
.agent-table a {
  color: #0645ad;
  text-decoration: none;
  font-weight: 600;
}
.agent-table a:hover { text-decoration: underline; }

/* WhatsApp icon */
.whatsapp-icon {
  color: #25D366;
  font-size: 18px;
}

/* Phone & complain column red */
.agent-table td:nth-child(4),
.agent-table td:nth-child(5),
.agent-table td:nth-child(5) a {
  color: #cd0000;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background-color: #ffd549;
  color: #000;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
  font-size: 12px;
}
.site-footer p { margin: 0; }

/* About Section: minimal, clean card */
.about-section{
  max-width: 860px;          /* keeps line-length readable */
  margin: 40px auto;          /* center on page */
  background: #fff;           /* white card */
  padding: 28px 24px;         /* comfortable spacing */
  border-radius: 12px;        /* soft corners */
  box-shadow: 0 4px 14px rgba(0,0,0,0.08); /* subtle depth */
  line-height: 1.7;           /* easy reading */
}

.about-section h2{
  text-align: center;         /* centered heading */
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #28a745;             /* matches your theme */
}

.about-section p{
  font-size: 16px;
  color: #333;                /* high contrast for readability */
  margin: 10px 0;
}

.about-section p strong{
  font-weight: 700;
}

/* Mobile tweaks */
@media (max-width: 640px){
  .about-section{
    margin: 20px;
    padding: 20px;
  }
  .about-section h2{ font-size: 22px; }
  .about-section p{ font-size: 15px; }
}
