/* ================================
   ROOT COLORS
================================ */
:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* ================================
   SECTION HEADER
================================ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.section-header p {
  color: #555;
  margin: 0;
}

/* ================================
   CARD
================================ */
.about-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================================
   TABLE BASE
================================ */
.custom-table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 10px;
}

/* ================================
   TABLE HEADER (FIXED BLUE)
================================ */
.custom-table thead tr th {
  background-color: var(--primary-blue) !important;
  color: #ffffff !important;
  padding: 15px;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 2;
}

/* Rounded corners */
.custom-table thead tr th:first-child {
  border-top-left-radius: 10px;
}
.custom-table thead tr th:last-child {
  border-top-right-radius: 10px;
}

/* ================================
   TABLE BODY
================================ */
.custom-table tbody tr {
  transition: 0.25s ease;
}

.custom-table tbody tr:nth-child(even) {
  background: #f8f9fc;
}

.custom-table tbody tr:hover {
  background: rgba(38, 52, 137, 0.08);
}

/* ================================
   TABLE CELLS
================================ */
.custom-table td,
.custom-table th {
  padding: 14px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

/* SERIAL NUMBER */
.custom-table tbody th {
  color: var(--accent-red);
  font-weight: 600;
}

/* ================================
   BADGES (Designation)
================================ */
.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.badge.primary {
  background: var(--primary-blue);
  color: #fff;
}

.badge.red {
  background: var(--accent-red);
  color: #fff;
}

.badge.dark {
  background: var(--text-black);
  color: #fff;
}

/* ================================
   RESPONSIVE
================================ */
.table-responsive {
  overflow-x: auto;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .section-header h3 {
    font-size: 22px;
  }

  .custom-table th,
  .custom-table td {
    font-size: 13px;
    padding: 10px;
  }
}




/* ROOT */
:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.photo-back {
  padding: 70px 0;
  background: var(--bg-light);
}

/* HEADER */
.section-header h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 40px;
}

/* CARD */
.about-img-col {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* IMAGE */
.about-img-col img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TEXT */
.about-img-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.about-img-col p {
  font-size: 14px;
  color: var(--text-black);
  margin: 0;
}

/* HOVER */
.about-img-col:hover {
  transform: translateY(-6px);
}

.about-img-col:hover h4 {
  color: var(--accent-red);
}

/* OWL NAV */
.owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: var(--primary-blue) !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
}

.owl-nav .owl-prev {
  left: -20px;
}

.owl-nav .owl-next {
  right: -20px;
}

/* DOTS */
.owl-dots .owl-dot span {
  background: #ccc;
}

.owl-dots .owl-dot.active span {
  background: var(--accent-red);
}


:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.about-cont-area2 {
  padding: 70px 0;
  background: var(--bg-light);
}

/* GRID LAYOUT */
.about-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
}

/* HOVER */
.info-card:hover {
  transform: translateY(-6px);
}

/* ALT CARD (middle) */
.info-card.alt {
  background: var(--primary-blue);
  color: #fff;
}

.info-card.alt h3 {
  color: #fff;
}

/* HIGHLIGHT CARD */
.info-card.highlight {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-red));
  color: #fff;
}

.info-card.highlight h3 {
  color: #fff;
}

/* HEADINGS */
.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

/* LIST */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.styled-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  font-size: 14px;
}

/* ICON BULLETS */
.styled-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
}

/* ALT LIST (white icons) */
.info-card.alt .styled-list li::before,
.info-card.highlight .styled-list li::before {
  color: #fff;
}

/* SIMPLE BULLET */
.styled-list.simple li::before {
  content: "•";
}

/* TEXT */
.info-card p {
  margin: 0;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}