/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
  --primary-dark: #000828;
  --primary-card: rgba(10, 17, 49, 0.7);
  --primary-card-hover: rgba(10, 17, 49, 0.85);
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-muted-light: rgba(255, 255, 255, 0.7);
  --accent-blue: #8ab4f8;
  --accent-purple: #9732f9;
  --accent-indigo: #5364f7;
  --accent-gold: #f5a623;
  --accent-green: #4ade80;
  --accent-red: #f87171;
  --btn-primary-bg: #1a4a8a;
  --btn-primary-hover: #2a5a9a;
  --border-light: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 6px 28px rgba(0, 0, 0, 0.3);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-full: 30px;
  --radius-pill: 60px;
  --transition: all 0.3s ease;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========================================
   BASE STYLES
   ======================================== */
* {
  font-family: var(--font-family);
}

body {
  background: var(--primary-dark);
  padding-top: 90px;
  color: var(--text-white);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar-custom {
  background: var(--primary-dark);
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-light);
  min-height: 82px;
}

.navbar-custom .navbar-brand {
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  padding: 0;
}

.navbar-custom .navbar-brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.navbar-custom .navbar-brand .ai-badge {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-blue);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-left: 8px;
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link.show{
	color: white !important;
}

.navbar-custom .nav-link {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--text-white);
  background: rgba(64 155 76);
}

.navbar-custom .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.4rem 1.4rem;
}

.navbar-custom .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-custom .btn-primary {
  background: var(--btn-primary-bg);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1.4rem;
  color: var(--text-white);
}

.navbar-custom .btn-primary:hover {
  background: var(--btn-primary-hover);
}

.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.6rem;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   MEGA DROPDOWN STYLES
   ======================================== */

.navbar-custom .dropdown-menu-mega {
  width: 700px;
  max-width: 90vw;
  padding: 0;
}

.navbar-custom .dropdown-menu-mega .dropdown-header {
  color: #8ab4f8;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 0.3rem;
}

.navbar-custom .dropdown-menu-mega .dropdown-item {
  padding: 0.3rem 0;
  font-size: 0.85rem;
}

.navbar-custom .dropdown-menu-mega .row {
  padding: 0.5rem 0;
}

@media (max-width: 991.98px) {
  .navbar-custom .dropdown-menu-mega {
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
  }
  
  .navbar-custom .dropdown-menu-mega .row {
    padding: 0;
  }
  
  .navbar-custom .dropdown-menu-mega .dropdown-header {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    padding-top: 0.8rem;
  }
  
  .navbar-custom .dropdown-menu-mega .col-md-3,
  .navbar-custom .dropdown-menu-mega .col-md-4 {
    padding: 0;
  }
}

/* ========================================
   SECTION HEADINGS
   ======================================== */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.section-title .highlight {
  color: var(--accent-blue);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========================================
   BUTTON WITH ARROW
   ======================================== */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(26, 74, 138, 0.2);
  border: 1px solid rgba(26, 74, 138, 0.3);
  color: var(--accent-blue);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-arrow:hover {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  color: var(--text-white);
  transform: translateX(4px);
}

.btn-arrow-large {
  padding: 0.8rem 2.8rem;
  font-size: 1.1rem;
  background: rgba(26, 74, 138, 0.3);
  border: 1px solid rgba(26, 74, 138, 0.4);
}

.btn-arrow-large:hover {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-bg);
  color: var(--text-white);
  transform: translateX(6px);
}

.btn-arrow i {
  transition: transform 0.3s;
}

.btn-arrow:hover i {
  transform: translateX(4px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1.5rem 0;
  margin-top: 2rem;
}

.footer .footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
}

.footer .footer-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer .footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.footer .footer-heading {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer .footer-link {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.footer .footer-link:hover {
  color: var(--accent-blue);
  padding-left: 4px;
}

.footer .footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer .footer-social a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer .footer-social a:hover {
  color: var(--accent-blue);
}

.footer .footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1.2rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  text-align: center;
}

/* ========================================
   HERO BADGE
   ======================================== */
.hero-badge {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
  display: inline-block;
  border: 1px solid var(--border-light);
}

/* ========================================
   HOME SECTION - MARGIN CONTROL
   ======================================== */
@media (min-width: 992px) {
  #home {
    margin-top: -50px !important;
  }
}

@media (max-width: 991.98px) {
  #home {
    margin-top: 0 !important;
  }
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */
@media (max-width: 991.98px) {
  .navbar-custom .navbar-collapse {
    background: var(--primary-dark);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    border: 1px solid var(--border-light);
  }
  .navbar-custom {
    min-height: auto;
    padding: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
  .why-image {
    min-height: 200px;
    margin-bottom: 1rem;
  }
  .footer .footer-desc {
    max-width: 100%;
  }
  .display-tagline {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 76px;
  }
  .navbar-custom .navbar-brand img {
    height: 40px;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .category-card {
    padding: 0.8rem 1rem;
  }
  .job-card .job-img {
    height: 100px;
  }
  .display-tagline {
    font-size: 1.8rem !important;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.8rem;
  }
}

/* ========================================
   UTILITY CLASSES (for future pages)
   ======================================== */
.text-accent-blue { color: var(--accent-blue); }
.text-accent-purple { color: var(--accent-purple); }
.text-accent-indigo { color: var(--accent-indigo); }
.text-accent-gold { color: var(--accent-gold); }
.text-accent-green { color: var(--accent-green); }
.text-accent-red { color: var(--accent-red); }

.bg-gradient-purple-blue {
  background: linear-gradient(135deg, var(--accent-purple) 30%, var(--accent-indigo) 70%);
}

.bg-gradient-blue-gold {
  background: linear-gradient(135deg, var(--accent-blue) 30%, var(--accent-gold) 70%);
}

.gradient-text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section spacing utilities */
.section-padding {
  padding: 4rem 0;
}

.section-padding-sm {
  padding: 2rem 0;
}

.section-padding-lg {
  padding: 6rem 0;
}

/* Card hover lift effect */
.card-lift {
  transition: var(--transition);
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ========================================
SERVICES PAGE
======================================== */
.service-card {
  overflow: hidden;
  padding: 0;
  background: var(--primary-card);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-icon-overlay {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--btn-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-white);
  border: 3px solid var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-body {
  padding: 1.5rem 1.5rem 1.8rem;
}

.service-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.service-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-bottom: 1.2rem;
}

.service-features span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.service-features i {
  color: var(--accent-blue);
  font-size: 0.7rem;
}

.service-btn {
  font-size: 0.85rem;
  padding: 0.4rem 1.2rem;
}

/* ========================================
   SECTION PADDING UTILITIES
   ======================================== */
.section-padding {
  padding: 4rem 0;
}

.section-padding-sm {
  padding: 2rem 0;
}

.section-padding-lg {
  padding: 6rem 0;
}

/* ========================================
   CARD LIFT UTILITY
   ======================================== */
.card-lift {
  transition: var(--transition);
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ========================================
   RESPONSIVE - SERVICES
   ======================================== */
@media (max-width: 768px) {
  .service-img {
    height: 180px;
  }
  .service-icon-overlay {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    bottom: -16px;
    right: 16px;
  }
  .service-body {
    padding: 1.2rem 1.2rem 1.5rem;
  }
  .service-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .service-img {
    height: 160px;
  }
  .section-padding {
    padding: 2rem 0;
  }
  .service-features {
    gap: 0.5rem 0.8rem;
  }
  .service-features span {
    font-size: 0.7rem;
  }
}

/* ========================================
   SERVICE DETAILS PAGE
   ======================================== */

/* Service Detail Image */
.service-detail-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.service-detail-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 8, 40, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-white);
  border: 1px solid var(--border-light);
}

/* Service Detail Title */
.service-detail-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--text-white);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

/* Highlight Box */
.service-highlight-box {
  background: rgba(26, 74, 138, 0.15);
  border-left: 3px solid var(--accent-blue);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 0.5rem;
}

.service-highlight-box i {
  color: var(--accent-blue);
  font-size: 1.5rem;
  opacity: 0.5;
}

.service-highlight-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.highlight-text {
  color: var(--accent-blue);
  font-weight: 600;
}

/* Feature Items */
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 0.4rem 0;
}

.feature-item i {
  font-size: 1.1rem;
}

/* Rating Bars */
.rating-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.rating-bar-item span:first-child {
  width: 55px;
  flex-shrink: 0;
}

.rating-bar-item span:last-child {
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-indigo));
  border-radius: 10px;
  transition: width 1s ease;
}

/* Rating Stars */
.rating-stars i {
  transition: all 0.2s;
}

.rating-stars i:hover,
.rating-stars i.active {
  color: #f5a623 !important;
}

/* Service Card for Related Services */
.service-card {
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-icon-overlay {
  position: absolute;
  bottom: -16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--btn-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-white);
  border: 3px solid var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-body {
  padding: 1.2rem;
}

.service-title {
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.3rem;
}

/* ========================================
   RESPONSIVE - SERVICE DETAILS
   ======================================== */
@media (max-width: 991.98px) {
  .service-detail-img {
    height: 250px;
  }
  
  .service-detail-title {
    font-size: 2rem;
  }
  
  .service-form-fixed {
    position: static;
  }
}

@media (max-width: 768px) {
  .service-detail-img {
    height: 220px;
  }
  
  .service-detail-title {
    font-size: 1.8rem;
  }
  
  .service-highlight-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .service-detail-img {
    height: 180px;
  }
  
  .service-detail-title {
    font-size: 1.5rem;
  }
  
  .service-detail-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.8rem;
    top: 10px;
    right: 10px;
  }
  
  .service-highlight-box {
    padding: 1rem;
  }
  
  .service-highlight-box p {
    font-size: 0.9rem;
  }
  
  .service-img {
    height: 150px !important;
  }
}

/* ========================================
   ABOUT US PAGE
======================================== */

/* Card Lift Effect for Testimonials */
.card-lift {
  transition: var(--transition);
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Testimonial Stars */
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

/* Founder Image Gradient Overlay */
.founder-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.founder-image-wrapper .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 8, 40, 0.85));
  padding: 1.5rem 1.5rem 1rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.founder-image-wrapper .overlay h5 {
  color: var(--text-white);
  font-weight: 700;
  margin: 0;
}

.founder-image-wrapper .overlay p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0;
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 3rem;
  color: rgba(138, 180, 248, 0.12);
}

/* Feature Items with description */
.feature-item-desc {
  display: flex;
  gap: 0.8rem;
  padding: 0.4rem 0;
}

.feature-item-desc i {
  color: var(--accent-blue);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.feature-item-desc .title {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-item-desc .desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE - ABOUT US
   ======================================== */
@media (max-width: 991.98px) {
  .founder-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .founder-image {
    height: 220px;
  }
  
  .quote-icon {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 576px) {
  .founder-image {
    height: 180px;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .section-title {
    font-size: 1.3rem !important;
  }
}

/* ========================================
   ABOUT US - NOTES SCROLLABLE SECTION
   ======================================== */

.notes-scroll-wrapper {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 0.5rem;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
.notes-scroll-wrapper::-webkit-scrollbar {
  width: 5px;
}

.notes-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.notes-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
  border-radius: 10px;
}

.notes-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #6a9ad8;
}

.notes-content {
  padding-right: 0.5rem;
}

/* Notes Headings */
.notes-heading {
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.notes-sub-heading {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
}

.notes-sub-section {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 2px solid rgba(138, 180, 248, 0.15);
  padding-left: 1rem;
}

/* About List Styling */
.about-list {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
}

.about-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

/* ========================================
   RESPONSIVE - ABOUT US
   ======================================== */
@media (max-width: 991.98px) {
  .notes-scroll-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .notes-scroll-wrapper {
    max-height: 450px;
  }
  
  .notes-heading {
    font-size: 1.05rem;
  }
  
  .notes-sub-heading {
    font-size: 0.95rem;
  }
  
  .notes-content p {
    font-size: 0.9rem;
  }
  
  .about-list {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .notes-scroll-wrapper {
    max-height: 400px;
  }
  
  .notes-heading {
    font-size: 0.95rem;
    margin-top: 1.2rem;
  }
  
  .notes-sub-section {
    padding-left: 0.5rem;
  }
  
  .about-list {
    padding-left: 0.5rem;
    font-size: 0.85rem;
  }
  
  .about-list li {
    padding-left: 1.2rem;
  }
}