
    /* ════════════════════════════════════
       RESET & BASE
    ════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: #1a2b3c; background: #fff; }
    img { display: block; max-width: 100%; }
    a { cursor: pointer; }
    ul { list-style: none; }

    /* ════════════════════════════════════
       LAYOUT HELPERS
    ════════════════════════════════════ */
    .container  { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .section     { padding: 28px 0; background: #fff; }
    .section-alt { padding: 28px 0; background: #f8fafc; }

    /* ════════════════════════════════════
       NAVBAR
    ════════════════════════════════════ */
    nav {
      background: #000c14;
      border-bottom: 1px solid rgba(0,212,255,.15);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }
    .nav-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, #00d4ff, #2563eb);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #fff;
      font-size: 16px;
    }
    .nav-logo span  { color: #fff; font-weight: 700; font-size: 1rem; }
    .accent         { color: #00d4ff; }
    .nav-links      { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      color: rgba(255,255,255,.75);
      text-decoration: none;
      font-size: .875rem;
      font-weight: 500;
      transition: color .2s;
    }
    .nav-links a:hover { color: #00d4ff; }
    .nav-cta {
      background: #00d4ff !important;
      color: #000c14 !important;
      font-size: .8rem !important;
      font-weight: 700 !important;
      padding: 8px 18px;
      border-radius: 50px;
      letter-spacing: .5px;
      transition: background .2s, box-shadow .2s;
    }
    .nav-cta:hover { background: #fff !important; box-shadow: 0 0 15px rgba(0,212,255,.5); }
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
    .mobile-menu {
      display: none;
      background: #000c14;
      border-top: 1px solid rgba(0,212,255,.1);
      padding: 16px 24px;
      flex-direction: column;
      gap: 12px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: rgba(255,255,255,.8);
      text-decoration: none;
      font-size: .95rem;
      font-weight: 500;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .mob-cta {
      background: #00d4ff;
      color: #000c14 !important;
      text-decoration: none;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 50px;
      text-align: center;
      margin-top: 4px;
      border: none;
    }

    /* ════════════════════════════════════
       HERO
    ════════════════════════════════════ */
    .hero {
      position: relative;
      height: 280px;
      background: #000c14;
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }
    .hero-panel {
      flex: 1;
      position: relative;
      overflow: hidden;
      filter: brightness(.35) saturate(.4) hue-rotate(190deg);
      transition: flex .7s cubic-bezier(.165,.84,.44,1), filter .7s ease;
    }
    .hero-panel:nth-child(1) { clip-path: polygon(0 0,100% 0,88% 100%,0% 100%); margin-right: -4%; }
    .hero-panel:nth-child(2) { clip-path: polygon(12% 0,100% 0,88% 100%,0% 100%); margin-right: -4%; z-index: 2; }
    .hero-panel:nth-child(3) { clip-path: polygon(12% 0,100% 0,88% 100%,0% 100%); margin-right: -4%; z-index: 3; }
    .hero-panel:nth-child(4) { clip-path: polygon(12% 0,100% 0,100% 100%,0% 100%); z-index: 4; }
    .hero-panel:hover { flex: 1.8; filter: brightness(1) saturate(1.1); z-index: 10; }
    .hero-panel img  { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
    .hero-panel:hover img { transform: scale(1.12); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      pointer-events: none;
      background: radial-gradient(circle, rgba(0,12,20,.1) 0%, rgba(0,12,20,.9) 100%);
    }
    .hero-overlay h1 { color: #fff; font-size: 2.4rem; font-weight: 800; line-height: 1.1; letter-spacing: -.5px; }
    .hero-overlay p  { color: #f8fafc; margin: 14px 0 22px; font-size: 1rem; font-weight: 500; max-width: 580px; }
    .hero-btn {
      pointer-events: auto;
      display: inline-block;
      padding: 12px 28px;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      border-radius: 50px;
      border: 1px solid #00d4ff;
      background: rgba(0,212,255,.1);
      backdrop-filter: blur(10px);
      text-transform: uppercase;
      font-size: .82rem;
      letter-spacing: 1.2px;
      transition: all .3s;
    }
    .hero-btn:hover { background: #00d4ff; color: #000c14; transform: translateY(-2px); }

    /* ════════════════════════════════════
       SECTION LABEL
    ════════════════════════════════════ */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37,99,235,.08);
      border: 1px solid rgba(37,99,235,.2);
      color: #2563eb;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 12px;
    }
    .sec-head          { text-align: center; margin-bottom: 36px; }
    .sec-head h2       { font-size: 1.75rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
    .sec-head p        { font-size: 1rem; color: #64748b; max-width: 560px; margin: 0 auto; }

    /* ════════════════════════════════════
       ABOUT
    ════════════════════════════════════ */
    .about-top {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      align-items: flex-start;
      padding-bottom: 40px;
      margin-bottom: 40px;
      border-bottom: 1px solid #e2e8f0;
    }
    .about-text        { flex: 1.8; min-width: 300px; }
    .about-text h2     { font-size: 1.75rem; font-weight: 800; color: #0f172a; margin-bottom: 16px; line-height: 1.2; }
    .about-text p      { font-size: .95rem; color: #374151; margin-bottom: 14px; line-height: 1.7; }
    .about-text p.sub  { font-size: .9rem; color: #64748b; }
    .gpa-box {
      flex: 1;
      min-width: 280px;
      background: #f0f7ff;
      padding: 24px;
      border-radius: 12px;
      border-left: 4px solid #015FC9;
    }
    .gpa-box h4  { color: #015FC9; font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
    .gpa-box p   { font-size: .9rem; color: #374151; line-height: 1.7; }
    .why-center  { text-align: center; margin-bottom: 28px; }
    .why-center p { font-size: 1rem; color: #64748b; font-style: italic; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2px;
      background: #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 11px;
    }
    .why-box       { background: #fff; padding: 24px; }
    .why-box h4    { color: #015FC9; font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
    .why-items     { display: grid; grid-template-columns: 1fr 1fr; font-size: .85rem; color: #444; row-gap: 10px; }
    .why-item      { display: flex; align-items: center; gap: 6px; }
    .why-item i    { color: #015FC9; width: 13px; }
    .about-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding-top: 12px;
      border-top: 1px solid #e2e8f0;
    }
    .about-cta p     { font-size: .875rem; color: #64748b; flex: 1; min-width: 280px; }
    .about-cta-btns  { display: flex; gap: 12px; }
    .btn-primary {
      background: #015FC9;
      color: #fff;
      text-decoration: none;
      font-size: .8rem;
      font-weight: 800;
      padding: 11px 22px;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(1,95,201,.25);
    }
    .btn-outline {
      color: #015FC9;
      text-decoration: none;
      font-size: .8rem;
      font-weight: 800;
      border: 2px solid #015FC9;
      padding: 9px 20px;
      border-radius: 6px;
    }

    /* ════════════════════════════════════
       GPA PHASES
    ════════════════════════════════════ */
    .immersion-banner {
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 32px;
      position: relative;
      height: 220px;
    }
    .immersion-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
    .immersion-overlay {
      position: absolute;
      inset: 0;
     
      display: flex;
      align-items: center;
      padding: 0 36px;
    }
    .immersion-overlay p { color: #bfdbfe; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
    .immersion-overlay h3 { color: #fff; font-size: 1.4rem; font-weight: 800; line-height: 1.3; max-width: 420px; }
    .phase-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
    }
    .phase-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 22px;
      display: flex;
      flex-direction: column;
      transition: all .25s;
    }
    .phase-card:hover { border-color: #2563eb; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.07); }
    .phase-num        { font-size: 10px; font-weight: 800; color: #2563eb; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
    .phase-card h3    { font-size: 17px; color: #0f172a; font-weight: 700; margin-bottom: 8px; }
    .phase-card p     { font-size: 13.5px; color: #64748b; line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
    .phase-bar-bg     { height: 6px; background: #f1f5f9; border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
    .phase-bar        { height: 100%; background: linear-gradient(90deg, #2563eb, #3b82f6); border-radius: 10px; }
    .phase-footer     { font-size: 11px; font-weight: 700; color: #94a3b8; display: flex; justify-content: space-between; border-top: 1px solid #f1f5f9; padding-top: 12px; }
    .curriculum-btn   { margin-top: 24px; display: flex; justify-content: center; }
    .curriculum-btn a { background: #2563eb; color: #fff; text-decoration: none; font-weight: 700; font-size: 13px; padding: 11px 28px; border-radius: 8px; letter-spacing: .5px; }

    /* ════════════════════════════════════
       PATHWAYS
    ════════════════════════════════════ */
    .pathway-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 48px;
    }
    .card-online { background: #f8fafc; overflow: hidden; }
    .card-sylhet { background: #f8fafc; overflow: hidden; }
    .card-body           { padding: 28px; }
    .card-body h2        { font-size: 2.2rem; font-weight: 800; margin: 0 0 4px; }
    .card-subtitle       { font-size: .85rem; font-weight: 700; margin-bottom: 18px; }
    .service-list        { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .service-item        { display: flex; gap: 12px; align-items: flex-start; }
    .service-icon        { font-size: 1.1rem; line-height: 1; margin-top: 2px; flex-shrink: 0; }
    .service-title       { display: block; font-weight: 700; font-size: .85rem; }
    .service-desc        { font-size: .82rem; line-height: 1.5; }
    .btn-blue { display: block; text-align: center; background: #3b82f6; color: #fff; padding: 13px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; }
    .btn-teal { display: block; text-align: center; border: 2px solid #0369a1; color: #0369a1; padding: 11px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem; }

    /* ════════════════════════════════════
       STEPS
    ════════════════════════════════════ */
    .steps-title  { font-size: 1.15rem; font-weight: 800; color: #0f172a; margin-bottom: 20px; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 14px;
      margin-bottom: 48px;
    }
    .step-card          { background: #f8fafc; padding: 16px; border-radius: 10px; border-left: 4px solid #3b82f6; box-shadow: 0 2px 6px rgba(0,0,0,.05); }
    .step-card strong   { display: block; font-weight: 700; color: #1e40af; margin-bottom: 4px; }
    .step-card span     { font-size: .85rem; color: #64748b; }

    /* ════════════════════════════════════
       FAQ
    ════════════════════════════════════ */
    .faq-title   { font-size: 1.15rem; font-weight: 800; color: #0f172a; margin-bottom: 16px; }
    .faq-list    { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .faq-item    { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px 18px; cursor: pointer; }
    .faq-q       { font-weight: 700; color: #1e40af; font-size: .95rem; }
    .faq-a       { margin-top: 10px; color: #4b5563; font-size: .9rem; line-height: 1.7; display: none; }
    .faq-a ul    { padding-left: 20px; list-style: disc; }
    .faq-item.open .faq-a { display: block; }
    .quick-info  { background: #dbeafe; border-left: 4px solid #3b82f6; border-radius: 8px; padding: 18px; font-size: .9rem; color: #1e3a8a; line-height: 1.7; }

    /* ════════════════════════════════════
       REVIEWS
    ════════════════════════════════════ */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 14px;
    }
    .review-card    { background: #fff; padding: 16px 18px; border: 1px solid #e2e8f0; border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
    .review-card p  { font-size: .85rem; line-height: 1.6; color: #4a5568; margin-bottom: 12px; }
    .review-footer  { display: flex; align-items: center; gap: 10px; border-top: 1px solid #f1f5f9; padding-top: 10px; }
    .review-footer img  { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; border: 1px solid #e2e8f0; }
    .review-name    { display: block; font-weight: 700; font-size: 12px; color: #004a99; }
    .review-role    { display: block; font-size: 10px; color: #94a3b8; text-transform: uppercase; }

    /* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
    footer { background: #000c14; color: #94a3b8; }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 40px;
      padding: 56px 0 32px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .footer-brand-logo  { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .footer-brand-icon  { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, #00d4ff, #2563eb); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #fff; }
    .footer-brand-logo span  { color: #fff; font-weight: 700; font-size: 1.1rem; }
    .footer-brand-desc  { font-size: .775rem; line-height: 1.7; color: #64748b; margin-bottom: 20px; }
    .social-links       { display: flex; gap: 10px; }
    .social-link {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      color: #94a3b8;
      text-decoration: none;
      font-size: 13px;
      transition: all .2s;
    }
    .social-link:hover { background: #00d4ff; color: #000c14; border-color: #00d4ff; }
    .footer-col h4 { color: #fff; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
    .footer-links  { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { color: #64748b; text-decoration: none; font-size: .875rem; transition: color .2s; }
    .footer-links a:hover { color: #00d4ff; }
    .footer-langs li  { color: #64748b; font-size: .875rem; margin-bottom: 10px; }
    .footer-contact   { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: #64748b; }
    .footer-contact-item i { color: #00d4ff; margin-top: 2px; width: 14px; flex-shrink: 0; }
    .footer-consult {
      display: inline-block;
      color: #00d4ff;
      text-decoration: none;
      font-size: .8rem;
      font-weight: 700;
      padding: 9px 20px;
      border-radius: 50px;
      border: 1px solid #00d4ff;
      letter-spacing: .5px;
      transition: all .2s;
    }
    .footer-consult:hover { background: #00d4ff; color: #000c14; }
    .footer-bottom {
      padding: 20px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .footer-bottom p  { font-size: .8rem; color: #475569; }
    .footer-legal     { display: flex; gap: 20px; }
    .footer-legal a   { font-size: .8rem; color: #475569; text-decoration: none; transition: color .2s; }
    .footer-legal a:hover { color: #00d4ff; }
	

 
 
/* ===== CLEAN CONTACT FORM (ISOLATED, NO CONFLICTS) ===== */

.contact-section {
  background: #f8fafc;
  padding: 60px 20px;
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-header {
  text-align: center;
  margin-bottom: 25px;
}

.contact-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-header p {
  color: #64748b;
  font-size: 14px;
}

/* FORM */

.contact-form-clean {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #015FC9;
  box-shadow: 0 0 0 3px rgba(1,95,201,0.15);
}

/* BUTTON */

.contact-btn {
  background: #015FC9;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.contact-btn:hover {
  background: #0147a3;
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .nav-links.active {
    display: flex !important;
  }
}
/* ===== MOBILE NAV FIX ===== */

.mobile-menu {
  position: absolute;
  top: 60px; /* same as navbar height */
  left: 0;
  width: 100%;
  background: #000c14;
  display: none;
  flex-direction: column;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

}


/* Thumbnail Grid */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr)); /* Smaller thumbnails */
  grid-gap: 9px;
  padding: 7px;
}

.gallery-item {
  height: 60px; /* Small square look */
  cursor: pointer;
  overflow: hidden;
  border-radius: 25px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.gallery-item img:hover {
  opacity: 0.7;
}

/* The Modal (background) */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  padding-top: 50px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.9); 
}

/* Modal Content (The Image) */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 5px;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}








/* ════════════════════════════════════
   PUBLICATION SPECIFIC STYLES
════════════════════════════════════ */
/* ════════════════════════════════════
   CLEAN PUBLICATION STYLES
════════════════════════════════════ */

/* Grid for the Manuscripts (Puti) */
.puti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.puti-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: 0.3s;
}

.puti-item:hover {
  transform: translateX(5px);
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.puti-item img {
  width: 50px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
}

.puti-item span {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

/* Grid for the Books */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.book-card {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

.book-img {
  background: #f8fafc;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.book-img img {
  height: 100%;
  width: auto;
  transition: transform 0.3s;
}

.book-card:hover .book-img img {
  transform: scale(1.05);
}

.book-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.book-info h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #0f172a;
}

.book-meta {
  font-size: 0.85rem;
  color: #64748b;
  font-style: italic;
  margin-bottom: 12px;
}

.book-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-view {
  background: #015FC9;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-view:hover {
  background: #00d4ff;
  color: #000c14;
}







.thumb-wrap {
  width: 50px; /* Your requested size */
  height: 50px; /* Book aspect ratio */
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #eee;
  margin-bottom: 5px;
}

.thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s;
}

.puti-card:hover img {
  filter: brightness(0.9);
}

.puti-card span {
  font-size: 10px;
  color: #333;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  max-width: 100px;
}

/* Mobile Tweak */
@media (max-width: 480px) {
  .puti-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.custom-stats-section {
    padding: 50px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.custom-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    max-width: 1000px;
    width: 100%;
}

.custom-stats-section .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-stats-section .stat-circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.custom-stats-section svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.custom-stats-section circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.custom-stats-section .stat-bg {
    stroke: #e2e8f0; /* Light gray background track */
}

.custom-stats-section .stat-progress {
    /* Circumference (2 * PI * 40) = ~251 */
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2; 
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-stats-section .stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: bold;
    color: #334155;
    font-family: sans-serif;
}

.custom-stats-section .stat-label {
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Colors - feel free to customize */
.color-1 { stroke: #10b981; }
.color-2 { stroke: #3b82f6; }
.color-3 { stroke: #8b5cf6; }
.color-4 { stroke: #f59e0b; }
.color-5 { stroke: #ef4444; }
.color-6 { stroke: #06b6d4; }