 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Noto Sans Bengali', sans-serif;
      background: #f0f0f0;
      margin: 0; padding: 0;
    }

    .mq-wrap { width: 100%; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

    /* TOP STRIP */
    .mq-top-strip {
      height: 5px;
      background: linear-gradient(90deg, #1a5c2e 0%, #3a9a58 50%, #1a5c2e 100%);
    }

    /* HEADER BODY */
    .mq-body {
      padding: 22px 32px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      background: #fff;
    }

    /* LOGO */
    .mq-logo-wrap {
      flex-shrink: 0;
      width: 100px; height: 100px;
      border-radius: 50%;
      padding: 4px;
      background: linear-gradient(145deg, #3a9a58, #1a5c2e);
      box-shadow: 0 4px 16px rgba(45,122,68,0.25);
    }
    .mq-logo-wrap img {
      width: 100%; height: 100%;
      border-radius: 50%; object-fit: cover;
      display: block; border: 3px solid #fff;
    }
    .mq-logo-fallback {
      display: none; width: 100%; height: 100%;
      border-radius: 50%; background: #e8f5e9;
      align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: #1a5c2e; text-align: center;
    }

    /* TEXT */
    .mq-text { text-align: left; }
    .mq-title-bn {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 28px; font-weight: 700;
      color: #1a5c2e; line-height: 1.3; margin-bottom: 2px;
    }
    .mq-title-en {
      font-family: 'Cinzel', serif;
      font-size: 12px; font-weight: 600;
      color: #c0392b; letter-spacing: 2px;
      text-transform: uppercase; margin-bottom: 10px;
    }
    .mq-divider-h {
      width: 100%; height: 1px;
      background: linear-gradient(to right, #2d7a44, transparent);
      margin-bottom: 9px;
    }
    .mq-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .mq-meta-item {
      display: flex; align-items: center; gap: 5px;
      font-size: 13px; color: #444; font-weight: 500;
    }
    .mq-meta-item svg {
      width: 14px; height: 14px; stroke: #2d7a44; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
    }
    .mq-meta-dot {
      width: 4px; height: 4px; border-radius: 50%;
      background: #2d7a44; opacity: 0.45; flex-shrink: 0;
    }

    /* NOTICE BAR */
    .mq-notice {
      display: flex; align-items: center; overflow: hidden;
      background: linear-gradient(90deg, #1a5c2e 0%, #2d7a44 100%);
    }
    .mq-notice-label {
      display: flex; align-items: center; gap: 6px;
      padding: 11px 18px; background: rgba(0,0,0,0.18);
      color: #ffd54f; font-size: 13.5px; font-weight: 600;
      white-space: nowrap; flex-shrink: 0;
      font-family: 'Noto Sans Bengali', sans-serif;
    }
    .mq-notice-label svg {
      width: 16px; height: 16px; stroke: #ffd54f; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .mq-notice-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.25); flex-shrink: 0; }
    .mq-notice-scroll { overflow: hidden; flex: 1; padding: 0 18px; }
    .mq-notice-inner {
      display: inline-block; white-space: nowrap;
      animation: scroll-left 32s linear infinite;
      color: #fff; font-size: 14px;
      font-family: 'Noto Sans Bengali', sans-serif; line-height: 38px;
    }
    @keyframes scroll-left {
      0%   { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* ══════════════════════════════
       NAVBAR
    ══════════════════════════════ */
    .mq-navbar {
      background: #fff;
      border-top: 1px solid #e8e8e8;
      border-bottom: 3px solid #c0392b;
      position: relative;
    }

    .mq-nav-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      list-style: none;
      gap: 0;
    }

    /* Desktop menu items */
    .mq-nav-inner > li {
      position: relative;
    }

    .mq-nav-inner > li > a {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 14px 18px;
      color: #1a5c2e;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      font-family: 'Noto Sans Bengali', sans-serif;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s;
      border-bottom: 3px solid transparent;
      margin-bottom: -3px;
    }

    .mq-nav-inner > li > a:hover,
    .mq-nav-inner > li > a.active {
      color: #c0392b;
      border-bottom-color: #c0392b;
      background: #fdf5f5;
    }

    .mq-nav-inner > li > a .arrow {
      font-size: 10px;
      transition: transform 0.25s;
      display: inline-block;
    }

    /* DROPDOWN */
    .mq-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-top: 3px solid #1a5c2e;
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
      list-style: none;
      z-index: 999;
    }

    .mq-nav-inner > li:hover .mq-dropdown {
      display: block;
    }

    .mq-nav-inner > li:hover > a .arrow {
      transform: rotate(180deg);
    }

    .mq-dropdown li a {
      display: block;
      padding: 11px 18px;
      color: #333;
      font-size: 13.5px;
      font-weight: 500;
      text-decoration: none;
      font-family: 'Noto Sans Bengali', sans-serif;
      border-left: 3px solid transparent;
      transition: background 0.18s, border-color 0.18s, color 0.18s;
      margin-left: -33px;
    }

    .mq-dropdown li a:hover {
      background: #f0f8f2;
      border-left-color: #1a5c2e;
      color: #1a5c2e;
      margin-left: -33px;
    }

    .mq-dropdown li + li {
      border-top: 1px solid #f0f0f0;
    }

    /* HAMBURGER BUTTON */
    .mq-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 12px 18px;
      margin-left: auto;
      flex-direction: column;
      gap: 5px;
    }

    .mq-hamburger span {
      display: block;
      width: 24px; height: 2.5px;
      background: #1a5c2e;
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* hamburger → X when open */
    .mq-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .mq-hamburger.open span:nth-child(2) { opacity: 0; }
    .mq-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* MOBILE MENU */
    .mq-mobile-menu {
      display: none;
      background: #fff;
      border-top: 1px solid #e8e8e8;
      padding: 8px 0 12px;
    }

    .mq-mobile-menu.open { display: block; }

    .mq-mobile-menu ul { list-style: none; }

    .mq-mobile-menu > ul > li > a {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 24px;
      color: #1a5c2e; font-size: 14.5px; font-weight: 600;
      text-decoration: none; font-family: 'Noto Sans Bengali', sans-serif;
      border-left: 4px solid transparent;
      transition: background 0.18s, border-color 0.18s;
    }

    .mq-mobile-menu > ul > li > a:hover {
      background: #f0f8f2; border-left-color: #1a5c2e;
    }

    .mq-mobile-menu > ul > li + li { border-top: 1px solid #f0f0f0; }

    .mq-mobile-submenu { display: none; background: #f8fdf9; }
    .mq-mobile-submenu.open { display: block; }

    .mq-mobile-submenu li a {
      display: block; padding: 10px 24px 10px 38px;
      color: #555; font-size: 13.5px; font-weight: 500;
      text-decoration: none; font-family: 'Noto Sans Bengali', sans-serif;
      border-left: 3px solid transparent;
      transition: background 0.15s, border-color 0.15s, color 0.15s;
    }

    .mq-mobile-submenu li a:hover {
      background: #e8f5e9; border-left-color: #2d7a44; color: #1a5c2e;
    }

    .mq-mobile-submenu li + li { border-top: 1px solid #eef5ef; }

    .mob-arrow {
      font-size: 12px; transition: transform 0.25s; display: inline-block;
    }
    .mob-arrow.open { transform: rotate(180deg); }

    /* BOTTOM STRIP */
    .mq-bottom-strip {
      height: 4px;
      background: linear-gradient(90deg, #a93226 0%, #e74c3c 50%, #a93226 100%);
    }

 

    /* ══════════════════════════════
       SLIDER — Professional
    ══════════════════════════════ */
    .sl-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #0a0a0a;
      line-height: 0;
    }

    /* Track: no CSS transition — JS handles it with requestAnimationFrame */
    .sl-track {
      display: flex;
      will-change: transform;
    }

    .sl-slide {
      min-width: 100%;
      position: relative;
      overflow: hidden;
      line-height: 0;
    }

    /* Multi-layer overlay: bottom dark + left gradient */
    .sl-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.55) 100%
      );
      z-index: 2;
    }

    .sl-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.38) 45%,
        rgba(0,0,0,0.0) 100%
      );
      z-index: 2;
    }

    .sl-slide img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
      transform: scale(1.08);
      transition: transform 9s ease-out;
    }

    .sl-slide.active img {
      transform: scale(1.0);
    }

    /* ── CAPTION ── */
    .sl-caption {
      position: absolute;
      top: 50%;
      left: 7%;
      transform: translateY(-50%);
      z-index: 10;
      max-width: 560px;
    }

    /* each child animates in separately */
    .sl-caption-tag,
    .sl-caption h2,
    .sl-caption p,
    .sl-caption-btns {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .sl-slide.active .sl-caption-tag  { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
    .sl-slide.active .sl-caption h2   { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
    .sl-slide.active .sl-caption p    { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
    .sl-slide.active .sl-caption-btns { opacity: 1; transform: translateY(0); transition-delay: 0.62s; }

    /* leaving slide — fade out quickly */
    .sl-slide.leaving .sl-caption-tag,
    .sl-slide.leaving .sl-caption h2,
    .sl-slide.leaving .sl-caption p,
    .sl-slide.leaving .sl-caption-btns {
      opacity: 0;
      transform: translateY(-16px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Caption tag */
    .sl-caption-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(192,57,43,0.90);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      padding: 6px 16px 6px 10px;
      border-radius: 30px;
      margin-bottom: 16px;
      font-family: 'Noto Sans Bengali', sans-serif;
      text-transform: uppercase;
      border: 1.5px solid rgba(255,255,255,0.28);
      backdrop-filter: blur(6px);
      box-shadow: 0 2px 14px rgba(192,57,43,0.4);
    }

    .sl-caption-tag::before {
      content: '';
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #fff;
      animation: blink 1.4s ease-in-out infinite;
      flex-shrink: 0;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.35; transform: scale(0.65); }
    }

    .sl-caption h2 {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 36px;
      font-weight: 700;
      color: #fff;
      line-height: 1.38;
      margin-bottom: 14px;
      text-shadow: 0 3px 18px rgba(0,0,0,0.5);
    }

    .sl-caption p {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 15.5px;
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
      margin-bottom: 26px;
    }

    /* Button group */
    .sl-caption-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .sl-caption a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 5px;
      text-decoration: none;
      font-family: 'Noto Sans Bengali', sans-serif;
      transition: all 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
      position: relative;
      overflow: hidden;
      letter-spacing: 0.3px;
    }

    /* Primary button */
    .sl-caption a.sl-btn-primary {
      background: #1a5c2e;
      color: #fff;
      border: 2px solid #1a5c2e;
      box-shadow: 0 5px 22px rgba(26,92,46,0.50);
    }

    .sl-caption a.sl-btn-primary:hover {
      background: #145024;
      border-color: #145024;
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 10px 30px rgba(26,92,46,0.55);
    }

    /* Secondary button (outline) */
    .sl-caption a.sl-btn-outline {
      background: rgba(255,255,255,0.10);
      color: #fff;
      border: 2px solid rgba(255,255,255,0.55);
      backdrop-filter: blur(6px);
    }

    .sl-caption a.sl-btn-outline:hover {
      background: rgba(255,255,255,0.22);
      border-color: #fff;
      transform: translateY(-3px) scale(1.04);
    }

    .sl-caption a .btn-arrow {
      display: inline-block;
      transition: transform 0.28s ease;
      font-style: normal;
    }

    .sl-caption a:hover .btn-arrow { transform: translateX(5px); }
    .sl-caption a:active { transform: translateY(-1px) scale(1.01); }

    /* ── NAV ARROWS ── */
    .sl-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      width: 54px; height: 54px;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.10);
      border: 2px solid rgba(255,255,255,0.50);
      backdrop-filter: blur(10px);
      transition: background 0.28s, border-color 0.28s, transform 0.28s, box-shadow 0.28s;
      box-shadow: 0 4px 24px rgba(0,0,0,0.28);
      outline: none;
    }

    .sl-btn svg {
      width: 22px; height: 22px;
      stroke: #fff;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      transition: transform 0.25s;
    }

    .sl-btn:hover {
      background: #1a5c2e;
      border-color: #1a5c2e;
      transform: translateY(-50%) scale(1.12);
      box-shadow: 0 8px 30px rgba(26,92,46,0.55);
    }

    .sl-btn:hover svg { transform: scale(1.12); }
    .sl-btn:active { transform: translateY(-50%) scale(0.96); }

    .sl-prev { left: 22px; }
    .sl-next { right: 22px; }

    /* ── BOTTOM BAR: counter + dots + progress ── */
    .sl-bottom-bar {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 14px 24px;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    }

    /* Slide counter */
    .sl-counter {
      color: rgba(255,255,255,0.70);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      font-family: 'Cinzel', serif;
      min-width: 40px;
      text-align: right;
    }

    .sl-counter span { color: #fff; font-size: 15px; }

    /* Dots */
    .sl-dots {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .sl-dot {
      width: 28px; height: 3px;
      border-radius: 3px;
      background: rgba(255,255,255,0.35);
      cursor: pointer;
      transition: background 0.3s, width 0.3s, transform 0.3s;
      position: relative;
      overflow: hidden;
    }

    .sl-dot.active {
      background: #fff;
      width: 48px;
    }

    /* Progress fill inside active dot */
    .sl-dot.active::after {
      content: '';
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 0%;
      background: #c0392b;
      animation: dotProgress var(--dot-dur, 6000ms) linear forwards;
    }

    @keyframes dotProgress {
      from { width: 0%; }
      to   { width: 100%; }
    }

    .sl-counter-right {
      color: rgba(255,255,255,0.70);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      font-family: 'Cinzel', serif;
      min-width: 40px;
    }

    /* Progress bar at very top of slider */
    .sl-progress {
      position: absolute;
      top: 0; left: 0;
      height: 3px;
      background: #c0392b;
      z-index: 30;
      width: 0%;
    }

 

    /* ══════════════════════════════
       STATS BAR
    ══════════════════════════════ */
    .stats-bar {
      background: linear-gradient(135deg, #1a5c2e 0%, #2d7a44 50%, #1a5c2e 100%);
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    /* subtle diagonal pattern */
    .stats-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        transparent 1px,
        transparent 28px
      );
      pointer-events: none;
    }

    .stats-bar .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 20px;
      position: relative;
      text-align: center;
      transition: background 0.3s;
      cursor: default;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(255,255,255,0.18);
    }

    .stat-item:hover {
      background: rgba(255,255,255,0.07);
    }

    .stat-icon {
      font-size: 34px;
      margin-bottom: 10px;
      line-height: 1;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }

    .stat-item:hover .stat-icon {
      transform: scale(1.18) translateY(-3px);
    }

    .stat-num-wrap {
      display: flex;
      align-items: baseline;
      gap: 2px;
      margin-bottom: 6px;
    }

    .stat-num {
      font-family: 'Cinzel', serif;
      font-size: 38px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      text-shadow: 0 2px 12px rgba(0,0,0,0.25);
      letter-spacing: 1px;
    }

    .stat-plus {
      font-family: 'Cinzel', serif;
      font-size: 24px;
      font-weight: 700;
      color: #ffd54f;
      line-height: 1;
      margin-left: 2px;
    }

    .stat-label {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.82);
      letter-spacing: 0.3px;
      margin-top: 2px;
    }

    /* Animated underline on hover */
    .stat-item::before {
      content: '';
      position: absolute;
      bottom: 0; left: 30%; right: 30%;
      height: 3px;
      background: #ffd54f;
      border-radius: 2px 2px 0 0;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .stat-item:hover::before {
      transform: scaleX(1);
    }

 
    /* ══════════════════════════════
       MEMBER SECTION
    ══════════════════════════════ */
    .member-section {
      padding: 60px 24px;
      background: #f8fdf9;
      position: relative;
      overflow: hidden;
    }

    .member-section::before {
      content: '';
      position: absolute;
      top: -60px; left: -60px;
      width: 240px; height: 240px;
      border-radius: 50%;
      background: rgba(45,122,68,0.06);
      pointer-events: none;
    }

    .member-section::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(192,57,43,0.05);
      pointer-events: none;
    }

    .member-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* Section heading */
    .member-heading {
      text-align: center;
      margin-bottom: 48px;
    }

    .member-heading .sec-tag {
      display: inline-block;
      background: rgba(26,92,46,0.10);
      color: #1a5c2e;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      padding: 5px 16px;
      border-radius: 30px;
      text-transform: uppercase;
      font-family: 'Noto Sans Bengali', sans-serif;
      margin-bottom: 14px;
      border: 1px solid rgba(26,92,46,0.18);
    }

    .member-heading h2 {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 30px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 12px;
      line-height: 1.35;
    }

    .member-heading h2 span {
      color: #1a5c2e;
    }

    .member-heading p {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 14.5px;
      color: #666;
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.75;
    }

    .heading-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .heading-line::before,
    .heading-line::after {
      content: '';
      width: 50px; height: 2px;
      background: linear-gradient(to right, transparent, #2d7a44);
    }

    .heading-line::after {
      background: linear-gradient(to left, transparent, #2d7a44);
    }

    .heading-line i {
      width: 8px; height: 8px;
      background: #c0392b;
      border-radius: 50%;
      display: inline-block;
    }

    /* Grid */
    .member-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    /* Card */
    .member-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.35s;
      position: relative;
      text-align: center;
    }

    .member-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.13);
    }

    /* Top color bar per card */
    .member-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #1a5c2e, #3a9a58);
    }

    .member-card:nth-child(2)::before { background: linear-gradient(90deg, #c0392b, #e74c3c); }
    .member-card:nth-child(3)::before { background: linear-gradient(90deg, #1a5c2e, #3a9a58); }
    .member-card:nth-child(4)::before { background: linear-gradient(90deg, #c0392b, #e74c3c); }

    /* Photo wrap */
    .member-photo-wrap {
      padding: 28px 28px 0;
      position: relative;
    }

    .member-photo {
      width: 110px; height: 110px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      border: 4px solid #fff;
      box-shadow: 0 4px 20px rgba(0,0,0,0.13);
      background: #e8f5e9;
      transition: transform 0.35s;
    }

    .member-card:hover .member-photo {
      transform: scale(1.06);
    }

    /* Badge */
    .member-badge {
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%) translateX(34px);
      background: #1a5c2e;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      white-space: nowrap;
      font-family: 'Noto Sans Bengali', sans-serif;
      border: 2px solid #fff;
      letter-spacing: 0.3px;
    }

    .member-card:nth-child(2) .member-badge,
    .member-card:nth-child(4) .member-badge {
      background: #c0392b;
    }

    /* Info */
    .member-info {
      padding: 18px 20px 26px;
    }

    .member-name {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 17px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 5px;
      line-height: 1.35;
    }

    .member-role {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 12.5px;
      font-weight: 600;
      color: #1a5c2e;
      margin-bottom: 10px;
      letter-spacing: 0.3px;
    }

    .member-card:nth-child(2) .member-role,
    .member-card:nth-child(4) .member-role {
      color: #c0392b;
    }

    .member-divider {
      width: 40px; height: 2px;
      background: linear-gradient(to right, #2d7a44, transparent);
      margin: 0 auto 10px;
      border-radius: 2px;
    }

    .member-card:nth-child(2) .member-divider,
    .member-card:nth-child(4) .member-divider {
      background: linear-gradient(to right, #c0392b, transparent);
    }

    .member-dept {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 12px;
      color: #888;
      line-height: 1.6;
    }

    /* Social links */
    .member-social {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 14px;
    }

    .member-social a {
      width: 32px; height: 32px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: #f0f8f2;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }

    .member-social a:hover {
      background: #1a5c2e;
      transform: translateY(-2px);
    }

    .member-social a svg {
      width: 14px; height: 14px;
      stroke: #1a5c2e;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.2s;
    }

    .member-social a:hover svg { stroke: #fff; }

    .member-card:nth-child(2) .member-social a,
    .member-card:nth-child(4) .member-social a {
      background: #fff5f5;
    }

    .member-card:nth-child(2) .member-social a svg,
    .member-card:nth-child(4) .member-social a svg { stroke: #c0392b; }

    .member-card:nth-child(2) .member-social a:hover,
    .member-card:nth-child(4) .member-social a:hover { background: #c0392b; }

    .member-card:nth-child(2) .member-social a:hover svg,
    .member-card:nth-child(4) .member-social a:hover svg { stroke: #fff; }

 

    /* ══════════════════════════
       SHARED SECTION STYLES
    ══════════════════════════ */
    .sec-wrap { padding: 64px 24px; }
    .sec-wrap-alt { padding: 64px 24px; background: #f8fdf9; }
    .sec-wrap-dark { padding: 64px 24px; background: #1a5c2e; }
    .sec-inner { max-width: 1100px; margin: 0 auto; }

    .sec-head { text-align: center; margin-bottom: 48px; }
    .sec-tag-pill {
      display: inline-block;
      background: rgba(26,92,46,0.10);
      color: #1a5c2e;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2.5px; padding: 5px 18px;
      border-radius: 30px; text-transform: uppercase;
      font-family: 'Noto Sans Bengali', sans-serif;
      border: 1px solid rgba(26,92,46,0.18);
      margin-bottom: 12px;
    }
    .sec-tag-pill.red { background: rgba(192,57,43,0.10); color: #c0392b; border-color: rgba(192,57,43,0.18); }
    .sec-tag-pill.white { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }

    .sec-title {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 30px; font-weight: 700; color: #1a1a1a;
      margin-bottom: 10px; line-height: 1.35;
    }
    .sec-title span { color: #1a5c2e; }
    .sec-title.white { color: #fff; }
    .sec-title.white span { color: #ffd54f; }

    .sec-sub {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 14.5px; color: #666; line-height: 1.75;
      max-width: 500px; margin: 0 auto;
    }
    .sec-sub.white { color: rgba(255,255,255,0.78); }

    .sec-rule {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; margin: 10px 0 14px;
    }
    .sec-rule::before, .sec-rule::after {
      content: ''; width: 50px; height: 2px;
      background: linear-gradient(to right, transparent, #2d7a44);
    }
    .sec-rule::after { background: linear-gradient(to left, transparent, #2d7a44); }
    .sec-rule i { width: 8px; height: 8px; background: #c0392b; border-radius: 50%; display: inline-block; }
    .sec-rule.white::before { background: linear-gradient(to right, transparent, rgba(255,255,255,0.5)); }
    .sec-rule.white::after  { background: linear-gradient(to left,  transparent, rgba(255,255,255,0.5)); }
    .sec-rule.white i { background: #ffd54f; }

    /* ══ PRINCIPAL SECTION ══ */
    .principal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .principal-grid.reverse { direction: rtl; }
    .principal-grid.reverse > * { direction: ltr; }

    .principal-photo-side { position: relative; }

    .principal-photo-frame {
      position: relative;
      display: inline-block;
      width: 100%;
    }

    .principal-photo-frame::before {
      content: '';
      position: absolute;
      top: -14px; left: -14px;
      right: 14px; bottom: 14px;
      border: 3px solid #1a5c2e;
      border-radius: 18px;
      z-index: 0;
      opacity: 0.3;
    }

    .principal-photo-frame.red::before { border-color: #c0392b; }

    .principal-photo-frame img {
      width: 100%;
      border-radius: 14px;
      display: block;
      position: relative;
      z-index: 1;
      box-shadow: 0 12px 48px rgba(0,0,0,0.14);
      object-fit: cover;
      height: 360px;
    }

    .principal-ribbon {
      position: absolute;
      bottom: -16px; right: 24px;
      z-index: 10;
      background: #1a5c2e;
      color: #fff;
      padding: 10px 22px;
      border-radius: 8px;
      box-shadow: 0 6px 22px rgba(26,92,46,0.35);
      font-family: 'Noto Sans Bengali', sans-serif;
    }

    .principal-ribbon.red { background: #c0392b; box-shadow: 0 6px 22px rgba(192,57,43,0.35); }

    .principal-ribbon .rib-num {
      font-family: 'Cinzel', serif;
      font-size: 22px; font-weight: 700; display: block; line-height: 1;
    }

    .principal-ribbon .rib-label {
      font-size: 11px; opacity: 0.85; letter-spacing: 0.5px;
    }

    .principal-text-side { }

    .p-name {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 26px; font-weight: 700; color: #1a1a1a;
      margin-bottom: 4px;
    }

    .p-role {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 13.5px; font-weight: 700; color: #1a5c2e;
      letter-spacing: 0.5px; margin-bottom: 6px;
      text-transform: uppercase;
    }

    .p-role.red { color: #c0392b; }

    .p-divider {
      width: 50px; height: 3px;
      background: linear-gradient(to right, #1a5c2e, transparent);
      border-radius: 2px; margin-bottom: 18px;
    }
    .p-divider.red { background: linear-gradient(to right, #c0392b, transparent); }

    .p-quote {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 18px; font-style: italic; color: #444;
      line-height: 1.7; margin-bottom: 18px;
      padding-left: 18px;
      border-left: 3px solid #1a5c2e;
    }
    .p-quote.red { border-left-color: #c0392b; }

    .p-bio {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 14px; color: #666; line-height: 1.85;
      margin-bottom: 22px;
    }

    .p-info-list {
      display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
    }

    .p-info-item {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 13.5px; color: #444;
    }

    .p-info-item svg {
      width: 16px; height: 16px; stroke: #1a5c2e; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
    }
    .p-info-item.red svg { stroke: #c0392b; }

    .p-cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 26px; background: #1a5c2e; color: #fff;
      border-radius: 5px; text-decoration: none;
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 13.5px; font-weight: 600;
      transition: all 0.28s; box-shadow: 0 4px 18px rgba(26,92,46,0.3);
    }
    .p-cta:hover { background: #145024; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(26,92,46,0.4); }
    .p-cta.red { background: #c0392b; box-shadow: 0 4px 18px rgba(192,57,43,0.3); }
    .p-cta.red:hover { background: #a93226; box-shadow: 0 8px 26px rgba(192,57,43,0.4); }

 

    /* ══ HISTORY SECTION ══ */
    .history-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 48px;
      align-items: start;
    }

    .history-sidebar {
      position: sticky; top: 20px;
    }

    .history-year-badge {
      background: linear-gradient(135deg, #1a5c2e, #2d7a44);
      color: #fff;
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(26,92,46,0.3);
      margin-bottom: 20px;
    }

    .history-year-badge .yr { font-family: 'Cinzel', serif; font-size: 52px; font-weight: 700; line-height: 1; }
    .history-year-badge .yr-label { font-family: 'Noto Sans Bengali', sans-serif; font-size: 13px; opacity: 0.85; margin-top: 6px; }

    .history-stats-mini { display: flex; flex-direction: column; gap: 12px; }

    .h-stat {
      background: #fff;
      border-radius: 10px;
      padding: 14px 18px;
      display: flex; align-items: center; gap: 14px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .h-stat-icon { font-size: 22px; }
    .h-stat-val { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; color: #1a5c2e; line-height: 1; }
    .h-stat-lbl { font-family: 'Noto Sans Bengali', sans-serif; font-size: 12px; color: #888; }

    .history-timeline { }

    .timeline-item {
      display: flex; gap: 20px;
      padding-bottom: 32px;
      position: relative;
    }

    .timeline-item:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 19px; top: 40px; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #2d7a44, rgba(45,122,68,0.1));
    }

    .tl-dot {
      flex-shrink: 0;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: #1a5c2e;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 16px;
      box-shadow: 0 4px 14px rgba(26,92,46,0.35);
      font-family: 'Cinzel', serif; font-weight: 700; font-size: 11px;
      z-index: 1; position: relative;
    }

    .tl-dot.red { background: #c0392b; box-shadow: 0 4px 14px rgba(192,57,43,0.35); }

    .tl-body { flex: 1; padding-top: 6px; }
    .tl-year { font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700; color: #1a5c2e; margin-bottom: 4px; }
    .tl-year.red { color: #c0392b; }
    .tl-title { font-family: 'Noto Serif Bengali', serif; font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
    .tl-desc { font-family: 'Noto Sans Bengali', sans-serif; font-size: 13.5px; color: #666; line-height: 1.75; }

 

    /* ══ TEACHER / STUDENT CARDS ══ */
    .person-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .person-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 22px rgba(0,0,0,0.07);
      transition: transform 0.32s cubic-bezier(0.34,1.3,0.64,1), box-shadow 0.32s;
      text-align: center;
    }

    .person-card:hover { transform: translateY(-7px); box-shadow: 0 14px 42px rgba(0,0,0,0.12); }

    .person-card-top {
      height: 6px;
      background: linear-gradient(90deg, #1a5c2e, #3a9a58);
    }

    .person-card.student .person-card-top {
      background: linear-gradient(90deg, #c0392b, #e74c3c);
    }

    .person-photo-wrap { padding: 24px 24px 0; }

    .person-photo {
      width: 90px; height: 90px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      border: 4px solid #fff;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      transition: transform 0.32s;
    }

    .person-card:hover .person-photo { transform: scale(1.07); }

    .person-info { padding: 14px 16px 22px; }

    .person-name {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px;
    }

    .person-role {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 12px; font-weight: 600; color: #1a5c2e;
      margin-bottom: 8px; letter-spacing: 0.3px;
    }

    .person-card.student .person-role { color: #c0392b; }

    .person-dept {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 12px; color: #999; line-height: 1.5;
    }

    .person-divider {
      width: 32px; height: 2px;
      background: linear-gradient(to right, #1a5c2e, transparent);
      margin: 8px auto 8px; border-radius: 2px;
    }

    .person-card.student .person-divider {
      background: linear-gradient(to right, #c0392b, transparent);
    }

 
    /* ══ NOTICE BOARD ══ */
    .notice-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 32px;
      align-items: start;
    }

    .notice-list { display: flex; flex-direction: column; gap: 14px; }

    .notice-item {
      background: #fff;
      border-radius: 10px;
      padding: 16px 18px;
      display: flex; gap: 16px; align-items: flex-start;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
      border-left: 4px solid #1a5c2e;
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
    }

    .notice-item:hover { transform: translateX(5px); box-shadow: 0 6px 24px rgba(0,0,0,0.10); }
    .notice-item.urgent { border-left-color: #c0392b; }

    .notice-date-box {
      flex-shrink: 0;
      background: #1a5c2e;
      color: #fff;
      border-radius: 8px;
      padding: 8px 12px;
      text-align: center;
      min-width: 52px;
    }

    .notice-item.urgent .notice-date-box { background: #c0392b; }

    .notice-date-box .nd { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; line-height: 1; }
    .notice-date-box .nm { font-size: 10px; font-weight: 600; letter-spacing: 0.5px; opacity: 0.88; font-family: 'Noto Sans Bengali', sans-serif; }

    .notice-content { flex: 1; }
    .notice-title { font-family: 'Noto Serif Bengali', serif; font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; line-height: 1.4; }
    .notice-desc { font-family: 'Noto Sans Bengali', sans-serif; font-size: 12.5px; color: #777; line-height: 1.65; }

    .notice-badge {
      display: inline-block; padding: 2px 8px;
      border-radius: 20px; font-size: 10px; font-weight: 700;
      background: rgba(192,57,43,0.10); color: #c0392b;
      font-family: 'Noto Sans Bengali', sans-serif;
      margin-bottom: 4px;
    }

    /* Calendar widget */
    .notice-calendar {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 22px rgba(0,0,0,0.08);
    }

    .cal-header {
      background: linear-gradient(135deg, #1a5c2e, #2d7a44);
      color: #fff; padding: 18px 20px;
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 15px; font-weight: 700; text-align: center;
    }

    .cal-body { padding: 16px; }

    .cal-days-head {
      display: grid; grid-template-columns: repeat(7, 1fr);
      text-align: center; margin-bottom: 8px;
    }

    .cal-days-head span {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 11px; font-weight: 700; color: #1a5c2e; padding: 4px 0;
    }

    .cal-days-head span:first-child { color: #c0392b; }

    .cal-grid {
      display: grid; grid-template-columns: repeat(7, 1fr);
      gap: 2px; text-align: center;
    }

    .cal-day {
      padding: 7px 4px;
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 12.5px; color: #444;
      border-radius: 6px; cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .cal-day:hover { background: #f0f8f2; }
    .cal-day.today { background: #1a5c2e; color: #fff; font-weight: 700; }
    .cal-day.has-event { position: relative; }
    .cal-day.has-event::after {
      content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
      width: 4px; height: 4px; border-radius: 50%; background: #c0392b;
    }
    .cal-day.empty { color: #ccc; }
    .cal-day.holiday { color: #c0392b; font-weight: 600; }

    .notice-view-all {
      display: block; text-align: center; margin-top: 18px;
      padding: 12px; background: #f0f8f2;
      border-radius: 8px; color: #1a5c2e; font-weight: 700;
      text-decoration: none; font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 13.5px; transition: background 0.2s;
    }
    .notice-view-all:hover { background: #1a5c2e; color: #fff; }

     

    /* ══ WHY US ══ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .why-card {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      transition: background 0.3s, transform 0.32s cubic-bezier(0.34,1.3,0.64,1);
      backdrop-filter: blur(4px);
    }

    .why-card:hover { background: rgba(255,255,255,0.17); transform: translateY(-6px); }

    .why-icon {
      width: 64px; height: 64px;
      border-radius: 16px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 28px;
      transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
    }

    .why-card:hover .why-icon { transform: scale(1.15) rotate(-5deg); }

    .why-title {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 17px; font-weight: 700; color: #fff;
      margin-bottom: 10px;
    }

    .why-desc {
      font-family: 'Noto Sans Bengali', sans-serif;
      font-size: 13.5px; color: rgba(255,255,255,0.78);
      line-height: 1.75;
    }

    @media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px)  { .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .why-card { padding: 22px 14px; }
      .why-icon { width: 50px; height: 50px; font-size: 22px; }
    }

    /* ══ FOOTER ══ */
    .site-footer {
      background: #0f3d1e;
      color: rgba(255,255,255,0.78);
      padding: 56px 24px 0;
      font-family: 'Noto Sans Bengali', sans-serif;
      
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 36px;
      max-width: 1100px;
      margin: 0 auto;
      padding-bottom: 40px;
    }

  .footer-brand img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    margin-bottom: 14px;
    object-fit: cover;
    margin-left: 74px;
  }

    .footer-brand-name {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.4;
    }

    .footer-brand-desc {
      font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 18px;
    }

    .footer-social { display: flex; gap: 10px; }

    .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.20);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }

    .footer-social a:hover { background: #1a5c2e; transform: translateY(-3px); }

    .footer-social a svg {
      width: 15px; height: 15px; stroke: rgba(255,255,255,0.8);
      fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      transition: stroke 0.2s;
    }

    .footer-social a:hover svg { stroke: #fff; }

    .footer-col-title {
      font-family: 'Noto Serif Bengali', serif;
      font-size: 15px; font-weight: 700; color: #fff;
      margin-bottom: 18px; padding-bottom: 10px;
      border-bottom: 2px solid rgba(255,255,255,0.10);
      position: relative;
    }

    .footer-col-title::after {
      content: ''; position: absolute;
      bottom: -2px; left: 0; width: 36px; height: 2px;
      background: #ffd54f;
    }

    .footer-links { 
      list-style: none; display: flex; flex-direction: column; gap: 10px;
      margin-left: -32px;
     }

    .footer-links li a {
      color: rgba(255,255,255,0.65); text-decoration: none;
      font-size: 13.5px; transition: color 0.2s, padding-left 0.2s;
      display: flex; align-items: center; gap: 6px;
    }

    .footer-links li a::before { content: '›'; color: #ffd54f; font-size: 16px; }
    .footer-links li a:hover { color: #fff; padding-left: 4px; }

    .footer-contact { display: flex; flex-direction: column; gap: 14px; }

    .footer-contact-item {
      display: flex; gap: 12px; align-items: flex-start;
      font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.6;
    }

    .footer-contact-item svg {
      width: 16px; height: 16px; stroke: #ffd54f; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      flex-shrink: 0; margin-top: 2px;
    }

    /* Bottom bar */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 18px 24px;
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px;
    }

    .footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.45); }
    .footer-copy span { color: #ffd54f; }

    .footer-made {
      font-size: 12px; color: rgba(255,255,255,0.35);
      display: flex; align-items: center; gap: 5px;
    }

    .footer-made span { color: #e74c3c; }

    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 500px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .sec-title { font-size: 24px; }
    }


 /*=================== institution page ======================== */
 
/* PAGE HERO BANNER */
.page-hero{background:linear-gradient(135deg,#1a5c2e 0%,#2d7a44 60%,#1a5c2e 100%);padding:48px 24px;text-align:center;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;background-image:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0,rgba(255,255,255,.03) 1px,transparent 1px,transparent 28px);pointer-events:none;}
.page-hero h1{font-family:'Noto Serif Bengali',serif;font-size:32px;font-weight:700;color:#fff;margin-bottom:8px;}
.page-hero p{font-family:'Noto Sans Bengali',sans-serif;font-size:14px;color:rgba(255,255,255,.78);}
.page-hero-bread{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:12px;font-size:12px;color:rgba(255,255,255,.6);font-family:'Noto Sans Bengali',sans-serif;}
.page-hero-bread a{color:rgba(255,255,255,.8);text-decoration:none;}
.page-hero-bread a:hover{color:#ffd54f;}
.page-hero-bread span{color:#ffd54f;}


.glance-top{display:grid;grid-template-columns:280px 1fr;gap:40px;align-items:start;margin-bottom:48px;}
.glance-logo-wrap{background:#fff;border-radius:20px;padding:32px;text-align:center;box-shadow:0 6px 28px rgba(0,0,0,.10);}
.glance-logo{width:160px;height:160px;border-radius:50%;object-fit:cover;border:5px solid #1a5c2e;box-shadow:0 8px 28px rgba(26,92,46,.25);margin-bottom:16px;}
.glance-logo-name{font-family:'Noto Serif Bengali',serif;font-size:17px;font-weight:700;color:#1a5c2e;line-height:1.4;}
.glance-logo-en{font-family:'Cinzel',serif;font-size:11px;color:#888;letter-spacing:1px;margin-top:4px;}
.glance-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.gi-item{background:#fff;border-radius:12px;padding:16px 18px;box-shadow:0 3px 14px rgba(0,0,0,.06);display:flex;gap:14px;align-items:center;}
.gi-icon{font-size:24px;flex-shrink:0;}
.gi-label{font-family:'Noto Sans Bengali',sans-serif;font-size:11.5px;color:#999;margin-bottom:3px;}
.gi-val{font-family:'Noto Serif Bengali',serif;font-size:14.5px;font-weight:700;color:#1a1a1a;line-height:1.3;}
/* Stats bar */
.glance-stats{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-bottom:48px;}
.gs-card{background:linear-gradient(135deg,#1a5c2e,#2d7a44);border-radius:14px;padding:24px 16px;text-align:center;color:#fff;}
.gs-card:nth-child(even){background:linear-gradient(135deg,#c0392b,#e74c3c);}
.gs-num{font-family:'Cinzel',serif;font-size:30px;font-weight:700;line-height:1;}
.gs-lbl{font-family:'Noto Sans Bengali',sans-serif;font-size:12px;opacity:.85;margin-top:6px;}
/* Classes list */
.classes-table{width:100%;border-collapse:collapse;background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 3px 16px rgba(0,0,0,.07);}
.classes-table th{background:#1a5c2e;color:#fff;padding:13px 18px;text-align:left;font-family:'Noto Sans Bengali',sans-serif;font-size:13px;font-weight:700;}
.classes-table td{padding:12px 18px;font-family:'Noto Sans Bengali',sans-serif;font-size:13.5px;color:#444;border-bottom:1px solid #f5f5f5;}
.classes-table tr:last-child td{border-bottom:none;}
.classes-table tr:hover td{background:#f8fdf9;}
.cls-level{display:inline-block;padding:3px 12px;border-radius:20px;font-size:11px;font-weight:700;background:rgba(26,92,46,.10);color:#1a5c2e;}
/* Accreditation */
.accred-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.accred-card{background:#fff;border-radius:12px;padding:22px;box-shadow:0 3px 14px rgba(0,0,0,.07);text-align:center;}
.accred-icon{font-size:36px;margin-bottom:10px;}
.accred-title{font-family:'Noto Serif Bengali',serif;font-size:15px;font-weight:700;color:#1a1a1a;margin-bottom:6px;}
.accred-desc{font-family:'Noto Sans Bengali',sans-serif;font-size:12.5px;color:#777;line-height:1.6;}
@media(max-width:900px){.glance-top{grid-template-columns:1fr;}.glance-logo-wrap{max-width:300px;}.glance-stats{grid-template-columns:repeat(3,1fr);}.accred-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:480px){.glance-stats{grid-template-columns:repeat(2,1fr);}.glance-info-grid{grid-template-columns:1fr;}.accred-grid{grid-template-columns:1fr;}.classes-table{font-size:12px;}}



/* ══════════════════════════════════════════════════════════════
   HISTORY PAGE PREMIUM STYLES (Hindi Siliguri Font Compatible)
══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');

.history-page-wrapper { font-family: 'Hind Siliguri', sans-serif; background: #f4f6f9; color: #334155; padding-bottom: 60px; }

/* Hero Banner */
.history-hero {
	background: linear-gradient(rgb(57, 152, 87), rgba(34, 113, 177, 0.9)), url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?q=80&w=1200') no-repeat center/cover;
	padding: 80px 20px;
	text-align: center;
	color: #fff;
}
.history-hero h1 { font-size: 36px; font-weight: 700; margin: 0 0 10px 0; }
.history-hero p { font-size: 18px; opacity: 0.9; margin: 0; }

/* Layout Grid */
.history-container { max-width: 1200px; margin: 40px auto 0 auto; display: grid; grid-template-columns: 2.8fr 1.2fr; gap: 30px; padding: 0 20px; }

/* Left Main Content */
.history-main-content { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.legacy-statement { background: #f0f7ff; border-left: 4px solid #2271b1; padding: 20px; font-size: 18px; font-weight: 500; font-style: italic; color: #1e3a8a; line-height: 1.8; border-radius: 0 8px 8px 0; margin-bottom: 35px; }
.sub-title { font-size: 24px; color: #1e293b; font-weight: 700; margin-top: 30px; margin-bottom: 15px; position: relative; padding-bottom: 8px; border-bottom: 1px solid #e2e8f0; }
.sub-title::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 60px; height: 3px; background: #2271b1; }
.history-details p { font-size: 16px; line-height: 1.9; color: #475569; text-align: justify; margin-bottom: 20px; }

/* Advanced Timeline */
.detail-timeline { position: relative; padding: 10px 0; }
.detail-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 30px; width: 3px; background: #cbd5e1; }
.dt-item { position: relative; margin-bottom: 30px; padding-left: 70px; }
.dt-badge { position: absolute; left: 0; top: 0; width: 60px; height: 30px; background: #2271b1; color: #fff; border-radius: 20px; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 6px rgba(34,113,177,0.2); z-index: 2; }
.dt-panel { background: #f8fafc; padding: 20px; border-radius: 8px; border: 1px solid #e2e8f0; transition: 0.3s; }
.dt-panel:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border-color: #2271b1; }
.dt-panel h4 { margin: 0 0 5px 0; color: #1e293b; font-size: 18px; font-weight: 600; }
.dt-panel p { margin: 0; color: #64748b; font-size: 14px; line-height: 1.7; }

/* Right Sidebar Notice Box */
.notice-sidebar { position: relative; }
.notice-sticky-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-top: 5px solid #399856; position: sticky; top: 30px; }
.notice-card-title { font-size: 20px; color: #1e293b; font-weight: 700; margin: 0 0 20px 0; display: flex; align-items: center; gap: 10px; }
.notice-card-title span { color: #2271b1; font-size: 22px; }
.recent-notice-list { list-style: none; padding: 0; margin: 0; }
.recent-notice-list li { border-bottom: 1px solid #f1f5f9; padding: 15px 0; transition: 0.2s; }
.recent-notice-list li:last-child { border-bottom: none; }
.recent-notice-list a { text-decoration: none; display: block; }
.recent-notice-list li:hover p { color: #2271b1; }
.n-date { font-size: 12px; color: #94a3b8; font-weight: 500; display: block; margin-bottom: 4px; }
.recent-notice-list p { margin: 0; font-size: 14px; color: #334155; font-weight: 500; line-height: 1.6; transition: 0.2s; }
.all-notice-link { display: block; text-align: center; background: #f0f7ff; color: #2271b1 !important; padding: 12px; border-radius: 8px; margin-top: 20px; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; border: 1px dashed #2271b1; }
.all-notice-link:hover { background: #399856; color: #fff !important; border-style: solid; }

/* Responsive Layout */
@media (max-width: 991px) {
    .history-container { grid-template-columns: 1fr; }
    .notice-sidebar { order: -1; } /* মোবাইলে নোটিশ আগে দেখাবে */
    .history-main-content { padding: 25px; }
}


/* ══════════════════════════════════════════════════════════════
   PRINCIPAL MESSAGE PAGE STYLES
══════════════════════════════════════════════════════════════ */
.principal-page-wrapper { background: #f8fafc; padding: 60px 0; overflow: visible !important; }
.page-main-head { margin-bottom: 50px; text-align: center; }

/* মেইন লেআউট গ্রিড */
.principal-full-layout { 
  display: grid; 
  grid-template-columns: 2.6fr 1.4fr; 
  gap: 40px; 
  align-items: start;
  overflow: visible !important;
}

/* বাম পাশের বাণীর অংশ */
.principal-message-body { 
  background: #ffffff; 
  padding: 45px; 
  border-radius: 16px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.04); 
}

/* বড় কোটেশন স্টাইল */
.p-big-quote { 
  background: #f0f7ff; 
  color: #1e3a8a; 
  padding: 25px 30px; 
  border-left: 5px solid #2271b1; 
  font-size: 20px; 
  font-weight: 600; 
  line-height: 1.7; 
  border-radius: 0 12px 12px 0; 
  margin-bottom: 35px; 
  position: relative;
}
.p-big-quote .quote-icon {
  font-size: 45px;
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.1;
  font-family: serif;
}

/* বাণীর মেইন টেক্সট */
.p-full-text p { 
  font-size: 16.5px; 
  line-height: 2; 
  color: #475569; 
  text-align: justify; 
  margin-bottom: 20px; 
}

/* সিগনেচার */
.p-final-signature { 
  margin-top: 40px; 
  padding-top: 25px; 
  border-top: 1px dashed #cbd5e1; 
}
.p-final-signature strong { font-size: 19px; color: #1e293b; display: block; margin-bottom: 4px; }
.p-final-signature span { font-size: 14px; color: #64748b; display: block; }

/* ডান পাশের সাইডবার প্রোফাইল কার্ড */
.principal-sidebar-card {
  height: 100%;
  overflow: visible !important;
}
.p-sticky-card { 
  background: #ffffff; 
  border-radius: 16px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.04); 
  overflow: hidden; 
  border: 1px solid #e2e8f0; 
  position: -webkit-sticky;
  position: sticky; 
  top: 90px; /* হেডার যদি ফিক্সড থাকে তার নিচে স্পেস দেওয়ার জন্য */
  z-index: 99;
}
.p-card-photo-frame { position: relative; background: #f1f5f9; }
.p-card-photo-frame img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 350px; }

.p-card-experience {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #2271b1;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.p-card-meta { padding: 30px; text-align: center; }
.p-card-meta h3 { font-size: 22px; color: #1e293b; margin: 0 0 8px 0; font-weight: 700; }
.p-card-role { background: #e0f2fe; color: #0369a1; display: inline-block; padding: 3px 14px; border-radius: 20px; font-size: 13.5px; font-weight: 600; margin-bottom: 15px; }
.p-card-edu { font-size: 14.5px; color: #475569; line-height: 1.6; margin: 0 0 20px 0; }

.p-card-contact-list { border-top: 1px solid #f1f5f9; padding-top: 20px; text-align: left; }
.p-c-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #475569; margin-bottom: 12px; }
.p-c-item:last-child { margin-bottom: 0; }
.p-c-item svg { flex-shrink: 0; }

/* মোবাইল রেসপন্সিভ */
@media (max-width: 991px) {
  .principal-full-layout { grid-template-columns: 1fr; gap: 30px; }
  .principal-sidebar-card { order: -1; height: auto; } /* মোবাইলে ছবি আগে আসবে */
  .p-sticky-card { position: static; }
  .principal-message-body { padding: 25px; }
}


/*====================== All teacher page ================ */
 


/* Action buttons */
.t-actions {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 12px;
    margin-top     : 16px;
    padding        : 0 16px;
}
.t-btn {
    width          : 40px;
    height         : 40px;
    border-radius  : 50%;
    border         : 1.5px solid;
    display        : flex;
    align-items    : center;
    justify-content: center;
    cursor         : pointer;
    background     : transparent;
    text-decoration: none;
    transition     : all .18s;
    font-size      : 16px;
}
.btn-green {
    border-color: #b6d9bc;
    color       : #1a6b2a;
    background  : #f0f8f1;
}
.btn-green:hover { background: #1a6b2a; color: #fff; border-color: #1a6b2a; }

.btn-red {
    border-color: #f0b8b4;
    color       : #c0392b;
    background  : #fdf2f1;
}
.btn-red:hover { background: #c0392b; color: #fff; border-color: #c0392b; }

/* SVG icons */
.icon-svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ══════════════════════════════════
   EMPTY STATE
══════════════════════════════════ */
.empty-state {
    grid-column: 1/-1;
    text-align : center;
    padding    : 80px 20px;
    display    : none;
}
.empty-state .em-icon { font-size: 56px; opacity: .35; margin-bottom: 14px; }
.empty-state p { font-size: 15px; color: #6b7280; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 640px) {
    .main { padding: 20px 16px 48px; }
    .filter-bar { padding: 10px 16px; }
    .site-header { padding: 14px 16px; }
    .teachers-grid { gap: 16px; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .t-avatar { width: 72px; height: 72px; font-size: 1.4rem; }
}

/* all student page ================================ */
.container-fluid {
    padding: 64px;
 }
        
        /* ট্যাব বাটন স্টাইল */
        .class-btn-container {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        .class-btn {
            background-color: #ffffff;
            color: #333;
            border: 1px solid #e0e0e0;
            padding: 10px 25px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }
        .class-btn:hover, .class-btn.active {
            background-color: #ffffff;
            border-color: #a0a0a0;
            color: #000;
            box-shadow: 0 3px 6px rgba(0,0,0,0.08);
        }

        /* টেবিল কন্টেইনার */
        .table-responsive-wrapper {
            background: #ffffff;
            border-radius: 4px;
            border: 1px solid #dee2e6;
            overflow: hidden;
        }
        
        /* টেবিল ভেতরের স্টাইল */
        .student-table {
            margin-bottom: 0;
            vertical-align: middle;
        }
        .student-table th {
            background-color: #ffffff;
            color: #333;
            font-weight: 600;
            border-bottom: 2px solid #dee2e6;
            padding: 12px 15px;
        }
        .student-table td {
            padding: 12px 15px;
            color: #495057;
            border-bottom: 1px solid #eff2f5;
        }
        .student-table tbody tr:hover {
            background-color: #fdfdfd;
        }

        /* প্রোফাইল ইমেজ */
        .student-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 10px;
            border: 1px solid #ddd;
        }

        /* কাস্টম লিংক ও অ্যাকশন বাটন */
        .link-style {
            color: #0275d8;
            text-decoration: none;
            font-weight: 500;
        }
        .link-style:hover {
            text-decoration: underline;
        }
        .action-view {
            color: #0275d8;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .action-view:hover {
            color: #014c8c;
        }

/* staf page ar css ====================== */
    
.staff-filter{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-bottom:36px;}
.sf-btn{padding:8px 20px;border-radius:30px;border:2px solid #1a5c2e;background:transparent;color:#1a5c2e;font-family:'Noto Sans Bengali',sans-serif;font-size:13px;font-weight:600;cursor:pointer;transition:all .22s;}
.sf-btn:hover,.sf-btn.active{background:#1a5c2e;color:#fff;}
.staff-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.staff-card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.08);transition:transform .32s cubic-bezier(.34,1.3,.64,1),box-shadow .32s;text-align:center;}
.staff-card:hover{transform:translateY(-7px);box-shadow:0 16px 44px rgba(0,0,0,.13);}
.staff-card-bar{height:4px;background:linear-gradient(90deg,#1a5c2e,#3a9a58);}
.staff-card[data-dept="admin"] .staff-card-bar{background:linear-gradient(90deg,#c0392b,#e74c3c);}
.staff-card[data-dept="office"] .staff-card-bar{background:linear-gradient(90deg,#e65100,#ff6d00);}
.staff-photo-wrap{padding:22px 22px 0;}
.staff-photo{width:90px;height:90px;border-radius:50%;object-fit:cover;display:block;margin:0 auto;border:4px solid #fff;box-shadow:0 4px 16px rgba(0,0,0,.12);transition:transform .32s;}
.staff-card:hover .staff-photo{transform:scale(1.07);}
.staff-info{padding:14px 16px 20px;}
.staff-name{font-family:'Noto Serif Bengali',serif;font-size:15px;font-weight:700;color:#1a1a1a;margin-bottom:4px;}
.staff-role{font-family:'Noto Sans Bengali',sans-serif;font-size:12px;font-weight:600;color:#1a5c2e;margin-bottom:6px;}
.staff-card[data-dept="admin"] .staff-role{color:#c0392b;}
.staff-card[data-dept="office"] .staff-role{color:#e65100;}
.staff-divider{width:32px;height:2px;background:linear-gradient(to right,#1a5c2e,transparent);margin:6px auto 8px;border-radius:2px;}
.staff-dept{font-family:'Noto Sans Bengali',sans-serif;font-size:11.5px;color:#999;}
.staff-contact{display:flex;justify-content:center;gap:8px;margin-top:10px;}
.staff-contact a{width:30px;height:30px;border-radius:50%;background:#f0f8f2;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background .2s;}
.staff-contact a:hover{background:#1a5c2e;}
.staff-contact a svg{width:13px;height:13px;stroke:#1a5c2e;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:stroke .2s;}
.staff-contact a:hover svg{stroke:#fff;}
@media(max-width:900px){.staff-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:600px){.staff-grid{grid-template-columns:repeat(2,1fr);gap:14px;}.staff-photo{width:70px;height:70px;}}


/* vedio page css ========================== */

.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.video-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.08);transition:transform .3s,box-shadow .3s;}
.video-card:hover{transform:translateY(-6px);box-shadow:0 14px 40px rgba(0,0,0,.13);}
.video-thumb{position:relative;aspect-ratio:16/9;background:#111;cursor:pointer;overflow:hidden;}
.video-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.video-card:hover .video-thumb img{transform:scale(1.05);}
.play-btn{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;}
.play-btn span{width:56px;height:56px;background:rgba(26,92,46,.88);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:transform .25s,background .25s;}
.play-btn span svg{width:22px;height:22px;fill:#fff;margin-left:4px;}
.video-card:hover .play-btn span{transform:scale(1.12);background:#1a5c2e;}
.video-duration{position:absolute;bottom:10px;right:10px;background:rgba(0,0,0,.75);color:#fff;font-size:11px;font-weight:700;padding:3px 8px;border-radius:4px;font-family:'Cinzel',serif;}
.video-info{padding:16px;}
.video-title{font-family:'Noto Serif Bengali',serif;font-size:15px;font-weight:700;color:#1a1a1a;margin-bottom:6px;line-height:1.4;}
.video-meta{display:flex;align-items:center;gap:10px;font-size:12px;color:#888;font-family:'Noto Sans Bengali',sans-serif;}
.video-meta span{display:flex;align-items:center;gap:4px;}
/* Modal */
.video-modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:9999;align-items:center;justify-content:center;}
.video-modal.open{display:flex;}
.vm-inner{width:min(840px,92vw);position:relative;}
.vm-close{position:absolute;top:-40px;right:0;background:none;border:none;color:#fff;font-size:28px;cursor:pointer;}
.vm-inner iframe{width:100%;aspect-ratio:16/9;border-radius:8px;border:none;}
@media(max-width:768px){.video-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:480px){.video-grid{grid-template-columns:1fr;}}


/* photo page css ================================ */
 

.photo-filters{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-bottom:36px;}
.filter-btn{padding:8px 20px;border-radius:30px;border:2px solid #1a5c2e;background:transparent;color:#1a5c2e;font-family:'Noto Sans Bengali',sans-serif;font-size:13px;font-weight:600;cursor:pointer;transition:all .25s;}
.filter-btn:hover,.filter-btn.active{background:#1a5c2e;color:#fff;}
.photo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.photo-item{border-radius:10px;overflow:hidden;position:relative;cursor:pointer;aspect-ratio:4/3;background:#e0e0e0;}
.photo-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.photo-item:hover img{transform:scale(1.08);}
.photo-overlay{position:absolute;inset:0;background:rgba(26,92,46,.7);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s;}
.photo-item:hover .photo-overlay{opacity:1;}
.photo-overlay svg{width:32px;height:32px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.photo-item.wide{grid-column:span 2;}
.photo-item.tall{grid-row:span 2;}
/* Lightbox */
.lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:9999;align-items:center;justify-content:center;}
.lightbox.open{display:flex;}
.lightbox img{max-width:90vw;max-height:85vh;border-radius:8px;box-shadow:0 20px 60px rgba(0,0,0,.5);}
.lb-close{position:absolute;top:20px;right:24px;background:none;border:none;color:#fff;font-size:32px;cursor:pointer;line-height:1;}
.lb-prev,.lb-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.12);border:none;color:#fff;font-size:28px;cursor:pointer;width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background .2s;}
.lb-prev{left:16px;}.lb-next{right:16px;}
.lb-prev:hover,.lb-next:hover{background:rgba(255,255,255,.25);}
@media(max-width:768px){.photo-grid{grid-template-columns:repeat(2,1fr);}.photo-item.wide{grid-column:span 1;}.photo-item.tall{grid-row:span 1;}}
@media(max-width:480px){.photo-grid{grid-template-columns:1fr 1fr;gap:10px;}}


/* member page css ============================ */

/* Main Container */
.member-form-container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Header */
.member-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.member-form-header h1 {
    font-size: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Form Content */
.member-form-main-content form {
    padding: 35px;
}

.form-section {
    margin-bottom: 35px;
}

.section-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.section-header h3 {
    color: #0f3d1e;
    font-size: 19px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Profile Upload Area */
.profile-upload-area {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.profile-image-box {
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.profile-info-text p {
    font-weight: 600;
    font-size: 16px;
}

.profile-info-text small {
    color: #718096;
    display: block;
    margin: 2px 0 6px 0;
}

.profile-info-text .upload-hint {
    font-size: 14px;
    color: #718096;
    font-weight: 400;
}

.required {
    color: #e53e3e;
    margin-left: 3px;
}

/* Grid Layout Rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 650px) {
    .form-row.two-columns {
        grid-template-columns: 1fr 1fr;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 500;
    font-size: 15px;
}

/* Inputs & Form Controls */
input[type="text"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    color: #2d3748;
    transition: all 0.3s ease;
    background-color: #fff;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

/* Input Fields with Right Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-right: 45px;
}

.input-with-icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
    font-size: 16px;
}

/* Hide Default File Inputs */
input[type="file"] {
    display: none;
}

/* Custom Upload Buttons Button Style */
.custom-file-upload, .upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: #fff;
    border: 1px solid #0f3d1e;
    color: #2e4d38;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.custom-file-upload:hover, .upload-btn:hover {
    background-color: #0f3d1e;
    color: #fff;
}

/* Documents Upload Grid */
.document-upload-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.document-upload-box {
    background: #f8fafc;
    border: 1px solid #164124;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: border-color 0.3s ease;
}

.document-upload-box:hover {
    border-color: #667eea;
}

.doc-icon {
    color: #0f3d1e;
    margin-bottom: 5px;
}

.document-upload-box label {
    font-weight: 600;
    font-size: 15px;
}

.document-instruction {
    font-size: 13px;
    color: #718096;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #0f3d1e 0%, #59645d 100%);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.submit-button:active {
    transform: translateY(0);
}

/* login page ar css ======================= */

             .container {
            background: #fff;
            width: 100%;
            max-width: 450px;
            padding: 35px 40px;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .form-box {
            display: none;
        }

        .form-box.active {
            display: block;
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Image/Logo Styling */
        .form-logo {
            display: block;
            margin: 0 auto 15px auto;
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 50%; /* ইমেজটি গোল করার জন্য */
            /* border: 3px solid #764ba2; */ /* প্রয়োজন হলে বর্ডার অন করতে পারেন */
        }

        h2 {
            font-size: 26px;
            color: #333;
            text-align: center;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .input-group {
            margin-bottom: 20px;
            position: relative;
        }

        .input-group label {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .input-group input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e1e1;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
        }

        .input-group input:focus {
            border-color: #764ba2;
            box-shadow: 0 0 8px rgba(118, 75, 162, 0.2);
        }

        .btn-log {
            width: 100%;
            padding: 13px;
            background: linear-gradient(135deg, #53705d 0%, #0f3d1e 100%);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s ease;
            margin-top: 10px;
        }

        .btn-log:hover {
            opacity: 0.9;
        }

        .switch-text {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: #666;
        }

        .switch-text a {
            color: #764ba2;
            text-decoration: none;
            font-weight: 600;
        }

        .switch-text a:hover {
            text-decoration: underline;
        }

    /* holidays page ar css ====================== */
     /* মেইন লাক্সারি কন্টেইনার ক্লাস 'holly' */
    .holly {
        background: #ffffff;
        width: 100%;
        max-width: 750px;
        margin: 40px auto;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-sizing: border-box;
        border: 1px solid #f0f2f5;
    }

    /* ফর্মের মেইন বড় শিরোনাম */
    .holly .holly-main-title {
        font-size: 24px;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin-bottom: 35px;
        position: relative;
    }
    .holly .holly-main-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #1d4ed8);
        border-radius: 2px;
        margin: 8px auto 0 auto;
    }

    /* সেকশন কার্ড (আলাদা আলাদা ব্লকের জন্য) */
    .holly .holly-section {
        background: #f8fafc;
        padding: 25px;
        border-radius: 12px;
        margin-bottom: 25px;
        border: 1px solid #e2e8f0;
    }

    /* সেকশন টাইটেল */
    .holly .holly-section-title {
        font-size: 16px;
        font-weight: 700;
        color: #334155;
        margin-top: 0;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    /* টাইটেলের বাম পাশের কালার বার */
    .holly .holly-section-title::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 29px;
        background: #164325;
        border-radius: 2px;
    }

    /* দুই কলাম লেআউটের জন্য রো এবং গ্রিড */
    .holly .holly-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* প্রতিটি ইনপুট গ্রুপের সাইজ */
    .holly .holly-col {
        flex: 1;
        min-width: 260px;
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }

    /* লেবেল স্টাইল */
    .holly .holly-label {
        font-size: 13px;
        font-weight: 600;
        color: #475569;
        margin-bottom: 8px;
    }

    /* ইনপুট, সিলেক্ট এবং টেক্সট-এরিয়া আধুনিক স্টাইল */
    .holly .holly-input,
    .holly .holly-select,
    .holly .holly-textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        font-size: 14px;
        color: #1e293b;
        background-color: #ffffff;
        box-sizing: border-box;
        transition: all 0.2s ease-in-out;
    }

    /* ফোকাস ইফেক্ট (ক্লিক করলে গ্লো করবে) */
    .holly .holly-input:focus,
    .holly .holly-select:focus,
    .holly .holly-textarea:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.11);
        outline: none;
        background-color: #fff;
    }

    /* টেক্সট এরিয়া সাইজ */
    .holly .holly-textarea {
        resize: vertical;
        min-height: 90px;
    }

    /* প্রিমিয়াম সাবমিট বাটন */
    .holly .holly-btn-submit {
        background: linear-gradient(135deg, #45664f, #0f3d1e);
        color: #ffffff;
        padding: 14px 40px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        display: block;
        margin: 30px auto 0 auto;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    }

    
    .holly .holly-btn-submit:active {
        transform: translateY(1px);
    }

  /* teacher single page ar css ======================== */
   .teacher-single-container {
                max-width: 1200px;
                margin: 40px auto;
                padding: 0 15px;
                font-family: 'Hind Siliguri', sans-serif;
            }
            .teacher-profile-layout {
                display: grid;
                grid-template-columns: 320px 1fr;
                gap: 30px;
            }
            /* Sidebar Styling */
            .profile-sidebar {
                background: #fff;
                border: 1px solid #e1e8ed;
                border-radius: 12px;
                padding: 24px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.05);
                text-align: center;
                height: fit-content;
            }
            .profile-avatar-wrap {
                position: relative;
                width: 180px;
                height: 180px;
                margin: 0 auto 20px;
                border-radius: 50%;
                padding: 5px;
                border: 3px solid #006a4e;
                background: #fff;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }
            .profile-avatar {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 50%;
            }
            .profile-sidebar .t-name {
                font-size: 20px;
                font-weight: 700;
                color: #2c3e50;
                margin-bottom: 5px;
            }
            .profile-sidebar .t-desig {
                font-size: 14px;
                color: #006a4e;
                font-weight: 600;
                margin-bottom: 20px;
                background: #e6f3ef;
                padding: 4px 12px;
                border-radius: 20px;
                display: inline-block;
            }
            /* Quick Contact Buttons */
            .quick-contacts {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin-bottom: 25px;
            }
            .quick-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                padding: 10px;
                border-radius: 8px;
                text-decoration: none;
                font-size: 14px;
                font-weight: 600;
                transition: all 0.3s;
            }
            .q-call { background: #006a4e; color: #fff; }
            .q-call:hover { background: #00523c; }
            .q-mail { background: #f39c12; color: #fff; }
            .q-mail:hover { background: #d68910; }
            .q-fb { background: #3b5998; color: #fff; }
            .q-fb:hover { background: #2d4373; }
            .q-wp { background: #25d366; color: #fff; }
            .q-wp:hover { background: #128c7e; }
            .quick-btn svg {
                width: 18px;
                height: 18px;
                fill: currentColor;
            }
            /* Quick Info Widget */
            .quick-meta-box {
                border-top: 1px solid #eee;
                padding-top: 20px;
                text-align: left;
            }
            .meta-item {
                display: flex;
                justify-content: space-between;
                font-size: 14px;
                margin-bottom: 10px;
                color: #555;
            }
            .meta-item strong { color: #2c3e50; }

            /* Main Content Area Styling */
            .profile-main-content {
                display: flex;
                flex-direction: column;
                gap: 30px;
            }
            .profile-card {
                background: #fff;
                border: 1px solid #e1e8ed;
                border-radius: 12px;
                padding: 30px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            }
            .card-title {
                font-size: 18px;
                font-weight: 700;
                color: #2c3e50;
                margin-bottom: 20px;
                border-bottom: 2px solid #006a4e;
                padding-bottom: 8px;
                display: inline-block;
            }
            /* Info Grid Details */
            .info-details-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 20px;
            }
            .info-detail-box {
                background: #f8f9fa;
                padding: 15px;
                border-radius: 8px;
                border-left: 4px solid #006a4e;
            }
            .info-detail-box label {
                display: block;
                font-size: 12px;
                color: #7f8c8d;
                text-transform: uppercase;
                margin-bottom: 5px;
            }
            .info-detail-box span {
                font-size: 15px;
                font-weight: 600;
                color: #2c3e50;
            }
            /* Description/Biography content styles */
            .bio-text {
                font-size: 15px;
                line-height: 1.8;
                color: #4a5568;
            }
            /* Mini Gallery Grid */
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 15px;
            }
            .gallery-item img {
                width: 100%;
                height: 100px;
                object-fit: cover;
                border-radius: 6px;
                border: 1px solid #ddd;
                transition: transform 0.2s;
                cursor: pointer;
            }
            .gallery-item img:hover {
                transform: scale(1.05);
            }

           /* ট্যাবলেট এবং ল্যাপটপ ছোট স্ক্রিন */
            @media (max-width: 992px) {
                .teacher-profile-layout { grid-template-columns: 1fr; }
            }

            /* মোবাইল স্ক্রিন */
            @media (max-width: 600px) {
                .teacher-single-container { margin: 20px 10px; }
                .info-details-grid { grid-template-columns: 1fr; } /* মোবাইল এক কলাম */
                .info-detail-box { grid-column: span 1 !important; }
                .card-title { font-size: 16px; }
                
                /* গ্যালারি মোবাইল ভিউ */
                .gallery-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            /* গ্যালারি গ্রিড */
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
                gap: 15px;
            }