﻿* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background: #0f0f1a; color: #f1f1f1; scroll-behavior: smooth; line-height: 1.6; }

header { position: fixed; top: 0; width: 100%; background: #12122a; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; flex-wrap: wrap; }
.logo { font-size: 1.3rem; font-weight: bold; color: #ffb703; }
.nav-links { display: flex; list-style: none; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: #f1f1f1; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: #ffb703; }

.page-content { padding: 120px 8% 60px; min-height: 80vh; }

.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: linear-gradient(135deg, #12122a, #1c1c3d); padding: 0 5%; }
.hero h1 { font-size: 2.6rem; }
.hero h1 span { color: #ffb703; }
.hero p { margin: 15px 0; font-size: 1.15rem; color: #ccc; max-width: 650px; }
.btn { background: #ffb703; color: #12122a; padding: 12px 28px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: 0.3s; margin: 8px; display: inline-block; }
.btn:hover { background: #fca311; }

h2.section-title { font-size: 2rem; margin-bottom: 30px; color: #ffb703; border-bottom: 2px solid #ffb703; display: inline-block; padding-bottom: 8px; }

.card { background: #1c1c3d; padding: 20px 25px; border-radius: 10px; margin-bottom: 20px; }
.card h3 { color: #ffb703; margin-bottom: 10px; }
.card .meta { color: #ffb703; font-size: 0.9rem; margin-bottom: 8px; }
.card ul { margin-left: 20px; margin-top: 10px; }

table.details-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
table.details-table td { padding: 10px 15px; border-bottom: 1px solid #2a2a4a; }
table.details-table td:first-child { color: #ffb703; font-weight: bold; width: 220px; }

.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }

.contact-info p { margin-bottom: 12px; font-size: 1.05rem; }
.contact-info span { color: #ffb703; font-weight: bold; margin-right: 8px; }

footer { text-align: center; padding: 20px; background: #12122a; }

/* ---- Advanced Profile Picture Animation ---- */
.profile-pic-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatUpDown 4s ease-in-out infinite, fadeInScale 1.2s ease-out;
}

.profile-pic-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #ffb703, #fca311, #ff6b6b, #ffb703);
  animation: rotateBorder 5s linear infinite;
  z-index: 1;
}

.profile-pic-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 20px 4px rgba(255, 183, 3, 0.5);
  animation: pulseGlow 2.5s ease-in-out infinite;
  z-index: 1;
}

.profile-pic {
  position: relative;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0f0f1a;
  z-index: 2;
  transition: transform 0.4s ease;
}

.profile-pic:hover {
  transform: scale(1.08) rotate(3deg);
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px 4px rgba(255, 183, 3, 0.5); }
  50% { box-shadow: 0 0 35px 10px rgba(255, 183, 3, 0.8); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

/* ---- Advanced Gallery Animation ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  background: #1c1c3d;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: translateY(30px);
  animation: galleryFadeUp 0.7s ease forwards;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.85), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item .caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ffb703;
  font-weight: bold;
  font-size: 0.95rem;
  padding: 12px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.gallery-item:hover {
  box-shadow: 0 0 25px rgba(255, 183, 3, 0.5);
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(0.7);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .caption {
  bottom: 0;
  opacity: 1;
}

@keyframes galleryFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}



/* ---- Nepali Date/Time Widget + Header (Fixed Top Group) ---- */
.top-fixed-group {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.datetime-bar {
  width: 100%;
  background: #ffb703;
  text-align: center;
  padding: 10px 15px;
  font-size: 1rem;
  color: #12122a;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.datetime-bar span {
  margin: 0 10px;
  color: #12122a;
  font-weight: 800;
}

header {
  position: static;
  width: 100%;
  background: #12122a;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
  .datetime-bar { font-size: 0.8rem; padding: 8px 10px; }
}




/* ---- Social Media Icons (Brand Colors) ---- */
.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 25px;
}

.social-links a {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1c1c3d;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  transform: translateY(-8px) scale(1.15);
}

/* Facebook */
.social-links a.facebook { color: #1877F2; border-color: #1877F2; }
.social-links a.facebook:hover { background: #1877F2; color: #fff; box-shadow: 0 10px 25px rgba(24,119,242,0.5); }

/* Instagram */
.social-links a.instagram { color: #E1306C; border-color: #E1306C; }
.social-links a.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; box-shadow: 0 10px 25px rgba(220,39,67,0.5); }

/* Threads */
.social-links a.threads { color: #f1f1f1; border-color: #f1f1f1; }
.social-links a.threads:hover { background: #f1f1f1; color: #12122a; box-shadow: 0 10px 25px rgba(241,241,241,0.4); }

/* TikTok */
.social-links a.tiktok { color: #25F4EE; border-color: #25F4EE; }
.social-links a.tiktok:hover { background: #000; color: #25F4EE; box-shadow: 0 10px 25px rgba(37,244,238,0.5); }

/* YouTube */
.social-links a.youtube { color: #FF0000; border-color: #FF0000; }
.social-links a.youtube:hover { background: #FF0000; color: #fff; box-shadow: 0 10px 25px rgba(255,0,0,0.5); }

/* X (Twitter) */
.social-links a.xtwitter { color: #f1f1f1; border-color: #f1f1f1; }
.social-links a.xtwitter:hover { background: #000; color: #fff; box-shadow: 0 10px 25px rgba(255,255,255,0.3); }

@media (max-width: 600px) {
  .social-links a {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

/* ---- Agriculture Notes Page ---- */
.notes-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-header);
  margin-bottom: 10px;
  line-height: 1.4;
}

.notes-subheading {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.notes-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notes-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.notes-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-header), var(--color-header-alt));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(13, 59, 115, 0.35);
  border: 3px solid var(--color-accent);
}

.notes-status {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-accent-hover);
  margin-bottom: 6px;
}

.notes-status.coming-soon {
  color: var(--color-text-muted);
}

.notes-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.notes-download-btn {
  background: #1565C0;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(21, 101, 192, 0.35);
  display: inline-block;
}

.notes-download-btn:hover {
  background: #0d47a1;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(21, 101, 192, 0.5);
}

.notes-download-btn.disabled {
  background: #9aa5b1;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

@media (max-width: 500px) {
  .notes-heading { font-size: 1.5rem; }
  .notes-badge { width: 75px; height: 75px; font-size: 1.05rem; }
}

/* ---- Notes Page Section Divider ---- */
.notes-section {
  margin-bottom: 70px;
}

.notes-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 55px 0 45px;
}

.notes-divider::before,
.notes-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.notes-divider span {
  padding: 0 20px;
  font-size: 1.4rem;
  color: var(--color-accent);
}

.semester-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .semester-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 550px) {
  .semester-grid { grid-template-columns: 1fr; }
}

/* ================= Notes Cards - Individual Color Themes ================= */
/* हरेक card को background-color र color (text) यहाँबाट सजिलै बदल्न सकिन्छ */

/* 1st Year - Mint Green */
.card-1st-year {
  background: linear-gradient(145deg, #d4f8e8, #a8ecc7);
  color: #0b5e3a;
}
.card-1st-year .notes-badge { background: #0b5e3a; color: #ffffff; border-color: #0b5e3a; }
.card-1st-year .notes-status { color: #0b5e3a; }
.card-1st-year .notes-desc { color: #1c6b47; }

/* 2nd Year - Soft Yellow */
.card-2nd-year {
  background: linear-gradient(145deg, #fff7d6, #ffe98f);
  color: #6b5300;
}
.card-2nd-year .notes-badge { background: #b88900; color: #ffffff; border-color: #b88900; }
.card-2nd-year .notes-status { color: #6b5300; }
.card-2nd-year .notes-desc { color: #7a6413; }

/* 3rd Year - Blush Pink */
.card-3rd-year {
  background: linear-gradient(145deg, #ffe1ef, #ffb8d9);
  color: #7a0d42;
}
.card-3rd-year .notes-badge { background: #c21a68; color: #ffffff; border-color: #c21a68; }
.card-3rd-year .notes-status { color: #7a0d42; }
.card-3rd-year .notes-desc { color: #8f1c52; }

/* 1st Semester - Lavender */
.card-1st-sem {
  background: linear-gradient(145deg, #ece1ff, #cdb4ff);
  color: #3d1a78;
}
.card-1st-sem .notes-badge { background: #5a26b8; color: #ffffff; border-color: #5a26b8; }
.card-1st-sem .notes-status { color: #3d1a78; }
.card-1st-sem .notes-desc { color: #4c2591; }

/* 2nd Semester - Peach */
.card-2nd-sem {
  background: linear-gradient(145deg, #ffe8d6, #ffc79c);
  color: #7a3a06;
}
.card-2nd-sem .notes-badge { background: #c9600f; color: #ffffff; border-color: #c9600f; }
.card-2nd-sem .notes-status { color: #7a3a06; }
.card-2nd-sem .notes-desc { color: #8f4710; }

/* 3rd Semester - Sky Blue */
.card-3rd-sem {
  background: linear-gradient(145deg, #d6f0ff, #a3ddff);
  color: #044470;
}
.card-3rd-sem .notes-badge { background: #0d70b3; color: #ffffff; border-color: #0d70b3; }
.card-3rd-sem .notes-status { color: #044470; }
.card-3rd-sem .notes-desc { color: #0a5487; }

/* 4th Semester - Coral */
.card-4th-sem {
  background: linear-gradient(145deg, #ffe0dc, #ffb3aa);
  color: #7a1508;
}
.card-4th-sem .notes-badge { background: #c62e18; color: #ffffff; border-color: #c62e18; }
.card-4th-sem .notes-status { color: #7a1508; }
.card-4th-sem .notes-desc { color: #8f2210; }

/* 5th Semester - Aqua/Teal */
.card-5th-sem {
  background: linear-gradient(145deg, #d3f7f4, #9aeae3);
  color: #045952;
}
.card-5th-sem .notes-badge { background: #0e8c80; color: #ffffff; border-color: #0e8c80; }
.card-5th-sem .notes-status { color: #045952; }
.card-5th-sem .notes-desc { color: #0b6c63; }

/* 6th Semester - Soft Violet/Rose */
.card-6th-sem {
  background: linear-gradient(145deg, #f3e3ff, #ecc7ff);
  color: #5c1470;
}
.card-6th-sem .notes-badge { background: #8a1fb0; color: #ffffff; border-color: #8a1fb0; }
.card-6th-sem .notes-status { color: #5c1470; }
.card-6th-sem .notes-desc { color: #6d1a86; }

/* ---- Ensure download button stays visible on all colored cards ---- */
.notes-card[class*='card-'] .notes-download-btn {
  background: #1565C0;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(21, 101, 192, 0.35);
}
.notes-card[class*='card-'] .notes-download-btn:hover {
  background: #0d47a1;
}

/* ---- Colored cards should not use default border since they have their own background ---- */
.notes-card[class*='card-'] {
  border: none;
}

/* ================= Notes Page - Heading Banner Cards ================= */

.notes-header-banner {
  background: linear-gradient(135deg, var(--color-header), var(--color-header-alt));
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-strong);
  margin: 0 auto 50px;
  max-width: 900px;
}

.notes-header-banner .notes-main-title {
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 12px;
  text-align: center;
}

.notes-header-banner .notes-main-subtitle {
  color: #eaf3fc;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
}

.notes-section-banner {
  background: var(--color-card-bg);
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  padding: 22px 25px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  margin: 0 auto 35px;
  max-width: 750px;
}

.notes-section-banner .notes-section-title {
  color: var(--color-header);
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.notes-section-banner .notes-subheading {
  color: var(--color-text-muted);
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .notes-header-banner { padding: 28px 18px; border-radius: 16px; }
  .notes-section-banner { padding: 18px 16px; }
}





/* ================= Video Gallery Page (Thumbnail + Click to Play) ================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.video-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #12122a;
  cursor: pointer;
  overflow: hidden;
}

.video-frame-wrap img.video-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.video-frame-wrap .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.video-frame-wrap:hover .play-btn {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.15);
}

.video-frame-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-card-title {
  padding: 16px 18px;
  font-weight: 700;
  font-size: 1.02rem;
  color: #0d3b73 !important;
  text-align: center;
  background: #ffffff;
}

body.dark-theme .video-card-title {
  color: #ffb703 !important;
  background: #1c1c3d;
}

body.dark-theme .video-card {
  background: #1c1c3d;
}

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS (Tablet & Phone)
   ================================================================ */

/* ---- Tablet: max-width 768px ---- */
@media (max-width: 768px) {

  /* Navigation */
  nav {
    flex-direction: column;
    gap: 12px;
    padding: 12px 5%;
  }
  .nav-links {
    justify-content: center;
    gap: 12px;
    font-size: 0.88rem;
  }
  .logo { font-size: 1.15rem; }

  /* Date/time bar */
  .datetime-bar {
    flex-wrap: wrap;
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  /* Hero section */
  .hero { padding: 30px 6%; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .profile-pic-wrapper { width: 170px; height: 170px; }
  .profile-pic { width: 156px; height: 156px; }

  /* Page content spacing */
  .page-content { padding: 150px 5% 50px; }

  /* Section titles */
  h2.section-title { font-size: 1.6rem; }

  /* Cards - single column on tablet for skills/education/etc */
  .skills-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }

  /* Notes page */
  .notes-header-banner { padding: 28px 20px; }
  .notes-main-title { font-size: 1.9rem; }
  .notes-main-subtitle { font-size: 0.95rem; }
  .notes-section-banner { padding: 18px 18px; }
  .notes-section-title { font-size: 1.35rem; }
  .notes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .semester-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .notes-badge { width: 78px; height: 78px; font-size: 1.05rem; }

  /* Social links */
  .social-links a { width: 50px; height: 50px; font-size: 1.35rem; }
}

/* ---- Phone: max-width 480px ---- */
@media (max-width: 480px) {

  /* Navigation */
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .nav-links li { width: 100%; text-align: center; }

  /* Date/time bar */
  .datetime-bar {
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
    padding: 10px;
  }
  .theme-toggle-btn {
    position: static;
    transform: none;
    margin-top: 4px;
  }

  /* Hero */
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.92rem; max-width: 100%; }
  .profile-pic-wrapper { width: 140px; height: 140px; }
  .profile-pic { width: 128px; height: 128px; }
  .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 8px 0;
    padding: 12px 20px;
  }

  /* Page content */
  .page-content { padding: 175px 4% 40px; }

  /* Section titles */
  h2.section-title { font-size: 1.35rem; }
  .card { padding: 16px 18px; }

  /* Table */
  table.details-table td { padding: 8px 10px; font-size: 0.9rem; }
  table.details-table td:first-child { width: auto; }

  /* Grids collapse to single column */
  .gallery-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .notes-grid { grid-template-columns: 1fr; }
  .semester-grid { grid-template-columns: 1fr; }

  /* Notes page */
  .notes-header-banner { padding: 22px 15px; border-radius: 14px; }
  .notes-main-title { font-size: 1.5rem; line-height: 1.3; }
  .notes-main-subtitle { font-size: 0.88rem; }
  .notes-section-banner { padding: 16px 14px; }
  .notes-section-title { font-size: 1.15rem; }
  .notes-subheading { font-size: 0.85rem; }
  .notes-card { padding: 22px 18px; }
  .notes-badge { width: 70px; height: 70px; font-size: 0.95rem; }
  .notes-status { font-size: 1rem; }
  .notes-desc { font-size: 0.88rem; }

  /* Notes download button - full width on phone */
  .notes-download-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    box-sizing: border-box;
  }

  /* Divider */
  .notes-divider { margin: 40px 0 30px; }
  .notes-divider span { font-size: 1.1rem; padding: 0 12px; }

  /* Social links */
  .social-links { gap: 14px; }
  .social-links a { width: 46px; height: 46px; font-size: 1.2rem; }

  /* Contact info */
  .contact-info p { font-size: 0.95rem; }
}
