/* RESET */
body {
  margin: 0;
  padding: 0;
}

/* About page */
.section ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.section li {
  margin: 6px 0;
}

.stat {
  background: #fff;
  border: 1px dashed #eaeef4;
  border-radius: 12px;
  padding: 14px;
}

.stat .num {
  color: var(--brand-red);
}

.grid-3 .card p {
  color: var(--muted);
}

.section-title {
  text-align: center;
}

/* ================= HERO SECTION ================= */

.about-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  margin-top: 0; /* GAP REMOVED */
  background-image: url("../assests/NCA3.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content {
  color: #fff;
  max-width: 900px;
  padding: 0 16px;
}

.about-content .section-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
}

.about-content .section-sub {
  font-size: 18px;
  line-height: 1.8;
  color: #e5e7eb;
  max-width: 700px;
  margin: auto;
}

/* Responsive Hero */

@media (max-width: 900px) {
  .about-content .section-title {
    font-size: 30px;
  }

  .about-content .section-sub {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .about-hero {
    height: 50vh;
  }
}

/* ================= LEADER SECTION ================= */

.leader-section {
  padding: 120px 20px;
  background: #f9fafb;
}

.leader-wrapper {
  max-width: 1500px;   /* wider layout */
  margin: auto;
  display: flex;
  gap: 90px;
  align-items: center;
}

/* Extra large professional card */
.leader-card {
  width: 520px;        /* BIGGER card */
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
}

/* Image container */
.leader-img-box {
  position: relative;
  width: 100%;
  height: 580px;     /* BIG portrait height */
  overflow: hidden;
}

/* Image */
.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.leader-img:hover {
  transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */

/* Large laptops */
@media (max-width: 1200px) {
  .leader-wrapper {
    gap: 60px;
  }

  .leader-card {
    width: 460px;
  }

  .leader-img-box {
    height: 520px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .leader-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .leader-card {
    width: 80%;
    max-width: 480px;
  }

  .leader-img-box {
    height: 500px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .leader-section {
    padding: 80px 15px;
  }

  .leader-card {
    width: 100%;
  }

  .leader-img-box {
    height: 460px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .leader-section {
    padding: 60px 10px;
  }

  .leader-card {
    border-radius: 22px;
  }

  .leader-img-box {
    height: 380px;
  }

  .leader-wrapper {
    gap: 40px;
  }
}


/* ===== CLASSIC NAME PLATE ===== */

.name-plate{
  position:absolute;
  bottom:10px;
  left:10px;
  right:10px;

  background:#5a2b16;
  border:2px solid #d6b16a;

  padding:6px 10px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  border-radius:6px;

  font-family:"Noto Serif Devanagari", serif;
}

/* Left label */
.plate-left{
  color:#ffd36b;
  font-size:17px;
  white-space:nowrap;
}

/* Center Name */
.plate-name{
  color:#fff;
  font-size:19px;
  font-weight:600;
  text-align:center;
  flex:1;
}

/* Right badge */
.plate-right{
  background:#7a4a1f;
  color:#ffd36b;
  padding:3px 8px;
  border-radius:4px;
  font-size:14px;
  white-space:nowrap;
}
/* ===============================
   WHATSAPP FLOAT
================================*/
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  z-index: 2000;
  transition: .3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Pulse */
.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, .6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
/* ================= NAME PLATE RESPONSIVE ================= */

/* Laptops */
@media (max-width: 1200px) {
  .plate-left {
    font-size: 16px;
  }

  .plate-name {
    font-size: 18px;
  }

  .plate-right {
    font-size: 13px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .name-plate {
    padding: 6px 8px;
  }

  .plate-left {
    font-size: 15px;
  }

  .plate-name {
    font-size: 17px;
  }

  .plate-right {
    font-size: 12px;
  }
}

/* Small tablets / phones */
@media (max-width: 768px) {
  .name-plate {
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    text-align: center;
  }

  .plate-name {
    font-size: 18px;
  }

  .plate-left,
  .plate-right {
    font-size: 13px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .name-plate {
    bottom: 8px;
    left: 8px;
    right: 8px;
    border-radius: 5px;
  }

  .plate-name {
    font-size: 20px;
  }

  .plate-left,
  .plate-right {
    font-size: 18px;
  }

  .plate-right {
    padding: 2px 6px;
  }
}

.profile-content {
  padding: 18px 15px 22px;
}

.profile-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #111827;
  font-weight: 700;
}

.profile-content p {
  font-size: 15px;
  color: #6b7280;
}

.leader-info {
  width: 65%;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.leader-info h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.leader-info p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}

/* Mobile Leader */

@media (max-width: 900px) {
  .leader-wrapper {
    flex-direction: column;
  }

/* ===== LEADER INFO PERFECT ALIGNMENT ===== */

.leader-info {
  width: 100%;
  max-width: 880px;        /* readable width */
  margin: 0 auto;          /* center block */
  padding: 40px 28px;
  text-align: center;
  box-sizing: border-box;
}

/* Heading */
.leader-info h2 {
  font-size: 26px;
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.3;
}

/* Paragraph */
.leader-info p {
  max-width: 720px;
  margin: 0 auto 14px;
  line-height: 1.9;
  font-size: 17px;
  text-align: center;
}

/* Tablet */
@media (max-width: 900px) {
  .leader-info {
    padding: 32px 22px;
  }

  .leader-info p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .leader-info {
    padding: 26px 16px;
  }

  .leader-info h2 {
    font-size: 22px;
  }

  .leader-info p {
    font-size: 15px;
    line-height: 1.8;
  }
}


  .leader-img {
    height: 260px;
  }
}

/* ================= AWARDS ================= */

.achievements-section {
  padding: 50px 20px;
  background: #f8fafc;
}

.center {
  text-align: center;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.award-card {
  height: 240px;
  background: #fff;
  border-radius: 18px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.award-card:hover,
.award-card:active {
  background: #2563eb;
  color: #fff;
  transform: translateY(-6px);
}

.award-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--brand-red);
  display: block;
  margin-bottom: 10px;
}

.award-card:hover .award-num,
.award-card:hover h4,
.award-card:hover p {
  color: #fff;
}

.award-card h4 {
  font-size: 18px;
  font-weight: 700;
}

.award-card p {
  font-size: 15px;
  color: #4b5563;
}

@media (max-width: 900px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= STATS ================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  min-width: 320px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: #f8fafc;
}

.stat-card .num {
  font-size: 52px;
  font-weight: 900;
  color: var(--brand-red);
}

.stat-card .label {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
}

.stat-card:hover .num {
  color: #2563eb;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-width: 100%;
  }

  .stat-card .num {
    font-size: 35px;
  }
}

