/* =====================================================
   ANITS - Modern & Professional Redesign FINAL
   (Compatible with existing icons, No CSS Root Variables)
   ===================================================== */

/* --- Base & Typography --- */
body {
  font-family: 'Manrope', sans-serif;
  color: #555;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #0d2c54; /* Deep Corporate Blue */
  margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.6rem; font-weight: 600; color: #232323; } /* Dark Charcoal */
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; color: #ec7107; font-weight: 600;} /* Accent Orange */

p {
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 16px;
}

p.lead {
  font-size: 1.15rem;
  color: #d3d1d1; /* Dark Charcoal */
  font-weight: 400;
}

/* --- CHECKMARK LIST: Use <ul class="feature-list"> for this style --- */
ul.feature-list {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

ul.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #444;
}

ul.feature-list li::before {
  content: "\f00c"; /* check icon */
  font-family: "Font Awesome 5 Free"; /* Correct FA5 font */
  font-weight: 900; /* solid style */
  position: absolute;
  left: 0;
  top: 3px;
  color: #ec7107; /* your brand orange */
  font-size: 14px;
}

/* --- Modern Blockquote (integrates Flaticon icon from original style.css) --- */
blockquote {
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: #232323;
    font-weight: 600;
    padding-left: 45px;
    margin: 25px 0;
    border-left: 3px solid #ec7107;
    background-color: #f8f9fa;
    padding: 20px 20px 20px 45px;
}

blockquote::after {
    position: absolute;
    left: 15px;
    top: 20px;
    content: "\f124"; /* Flaticon icon */
    font-family: "Flaticon";
    font-size: 25px;
    color: #ec7107;
    opacity: 0.8;
}

/* --- Page Header --- */
.page-header {
  background-color: #01254a; /* Light Gray */
  padding: 100px 0;
  border-bottom: 1px solid #dee2e6; /* Border Color */
}
.page-header h1 {
  color: #fff /* Deep Corporate Blue */
}
.page-header .lead {
  max-width: 650px;
}

/* --- Section Styling --- */
.section-padding {
  padding: 80px 0;
}
.section-bg {
  background-color: #f8f9fa; /* Light Gray */
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ec7107; /* Accent Orange */
    border-radius: 2px;
}

/* --- Modern Buttons --- */
.btn-primary-modern {
  background-color: #ec7107; /* Accent Orange */
  border: 2px solid #ec7107; /* Accent Orange */
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 113, 7, 0.2);
}

.btn-primary-modern:hover {
  background-color: #d96506;
  border-color: #d96506;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(236, 113, 7, 0.3);
}

.btn-secondary-modern {
  background-color: transparent;
  border: 2px solid #dee2e6; /* Border Color */
  color: #0d2c54; /* Deep Corporate Blue */
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-secondary-modern:hover {
  background-color: #0d2c54; /* Deep Corporate Blue */
  border-color: #0d2c54; /* Deep Corporate Blue */
  color: #fff;
  transform: translateY(-3px);
}

/* --- Modern Card --- */
.card-modern {

    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    background: #f9fafc;
    border: 1px solid #e7ebf0;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
}
.card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.card-modern h4 {
  color: #0d2c54; /* Deep Corporate Blue */
  margin-bottom: 0.5rem;
}
.card-modern p {
  font-size: 15px;
}

/* --- Specific Component Styles --- */
/* Team Card */
.team-member-card { text-align: center; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.07); transition: all 0.3s ease; height: 100%; }
.team-member-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.team-member-card .team-img { width: 100%; height: 250px; object-fit: cover; background-color: #f8f9fa; }
.team-member-card .team-info { padding: 20px; }
.team-member-card h5 { color: #0d2c54; margin-bottom: 5px; }
.team-member-card .designation { display: block; font-size: 14px; color: #ec7107; font-weight: 500; margin-bottom: 10px; }

/* Principal Page */
.principal-photo-wrap { background: #fff; border-radius: 12px; padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.07); }
.principal-photo-wrap img { border-radius: 8px; }

/* Organization Chart */
.org-chart-card { background: #f8f9fa; padding: 2rem; border-radius: 12px; border: 1px solid #dee2e6; text-align: center; }
.org-chart-card .org-chart-placeholder { width: 100%; height: 200px; background: #e9ecef; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 600; color: #6c757d; margin-bottom: 1.5rem; }

/* At a Glance - Facts Card */
.facts-card { background: #0d2c54; color: #fff; border-radius: 12px; padding: 2rem; height: 100%; }
.facts-card h3 { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1rem; }
.facts-card ul li { padding-left: 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.facts-card ul li::before { display: none; } /* Override default list styles */
.facts-card ul li strong { color: #ec7107; }
.rd-section {
  background: #ffffff;
}

/* --- 1. About Section --- */
.rd-about {
  background-color: #ffffff; /* pure white for clarity */
  border-radius: 10px;
}

/* Director card tweaks */
.rd-director-card {
  background: #f9fafc;
  border: 1px solid #e7ebf0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rd-director-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* --- 2. Research Initiatives Section --- */
.rd-initiatives {
  background-color: #f7f9fb; /* subtle light blue-gray tint */
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
}

/* Section title alignment */
.rd-initiatives .section-title h2 {
  color: #0d2c54;
  font-weight: 700;
}

/* Card style enhancements */
.rd-initiatives .card-modern {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e3e6ec;
  transition: all 0.3s ease;
}

.rd-initiatives .card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Icon animation */
.rd-initiatives i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.rd-initiatives .card-modern:hover i {
  transform: scale(1.15);
  color: #ec7107 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .rd-about, .rd-initiatives {
    padding: 40px 20px;
  }
}
.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color: #f9fafc;
    border: 1px solid rgba(0, 0, 0, .125);
}