/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and Navigation */
header {
  background: #2c3e50;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo i {
  margin-right: 10px;
  color: #3498db;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: #3498db;
  color: white;
}

.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  padding: 0.5rem;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
  width: 250px;
}

.search-bar button {
  padding: 0.5rem 1rem;
  border: none;
  background: #3498db;
  color: white;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-bar button:hover {
  background: #2980b9;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #c0392b;
}

/* Featured Books Section */
.featured-books {
  padding: 4rem 0;
  background: white;
}

.featured-books h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #2c3e50;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.book-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.book-card img {
  width: 100%;
  max-width: 150px;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.book-info h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.author {
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.genre {
  color: #3498db;
  font-weight: bold;
  margin-bottom: 1rem;
}

.isbn,
.year {
  font-size: 0.9rem;
  color: #95a5a6;
  margin-bottom: 0.5rem;
}

.availability {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: inline-block;
}

.availability.available {
  background: #d4edda;
  color: #155724;
}

.availability.borrowed {
  background: #f8d7da;
  color: #721c24;
}

.borrow-btn {
  background: #27ae60;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  width: 100%;
}

.borrow-btn:hover {
  background: #229954;
}

.borrow-btn:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
}

/* Library Stats */
.library-stats {
  background: #34495e;
  color: white;
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item i {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: #ecf0f1;
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

/* Catalog Styles */
.catalog-header {
  background: #3498db;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.catalog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.catalog-filters {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid #ecf0f1;
}

.filters {
  display: flex;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.filter-group label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.filter-group input,
.filter-group select {
  padding: 0.5rem;
  border: 1px solid #bdc3c7;
  border-radius: 5px;
  outline: none;
}

#clearFilters {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  height: fit-content;
}

#clearFilters:hover {
  background: #c0392b;
}

.catalog-content {
  padding: 3rem 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content {
  padding: 4rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about-text h3 {
  color: #3498db;
  margin: 2rem 0 1rem 0;
  font-size: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.values {
  padding: 4rem 0;
  background: #f8f9fa;
}

.values h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-size: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.team {
  padding: 4rem 0;
  background: white;
}

.team h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-size: 2.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.team-member h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: #3498db;
  font-weight: bold;
  margin-bottom: 1rem;
}

.history {
  padding: 4rem 0;
  background: #ecf0f1;
}

.history h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-size: 2.5rem;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
}

.timeline-year {
  background: #3498db;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
  margin-right: 2rem;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.timeline-content h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-content {
  padding: 4rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #3498db;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.contact-item h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.hours p {
  margin-bottom: 0.3rem;
}

.contact-form h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #bdc3c7;
  border-radius: 5px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #3498db;
}

.submit-btn {
  background: #27ae60;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #229954;
}

.map-section {
  padding: 3rem 0;
  background: #f8f9fa;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #2c3e50;
  font-size: 2rem;
}

.map-placeholder {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
  font-size: 4rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.faq {
  padding: 4rem 0;
  background: white;
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-size: 2.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #3498db;
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #3498db;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  color: #bdc3c7;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #3498db;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .filters {
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-year {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .books-grid {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Book card hover effect enhancement */
.book-card {
  position: relative;
  overflow: hidden;
}

.book-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(52, 152, 219, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.book-card:hover::before {
  animation: shine 0.5s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

/* Image Fallback Styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

img[src=""],
img:not([src]) {
  background: #f0f0f0;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

img[src=""]:before,
img:not([src]):before {
  content: "📷 Image";
  color: #999;
  font-size: 14px;
}

.book-card img {
  min-height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-card img:before {
  content: "📚";
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-member img {
  min-height: 150px;
  background: linear-gradient(45deg, #3498db, #2980b9);
  border-radius: 50%;
}

.about-image img {
  min-height: 300px;
  background: linear-gradient(135deg, #34495e, #2c3e50);
}

/* Legal Pages Styles */
.privacy-hero,
.terms-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.privacy-hero h1,
.terms-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-hero p,
.terms-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.privacy-content,
.terms-content {
  padding: 3rem 0;
  background: white;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-document .section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ecf0f1;
}

.legal-document .section:last-child {
  border-bottom: none;
}

.legal-document h2 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3498db;
}

.legal-document h3 {
  color: #34495e;
  font-size: 1.3rem;
  margin: 2rem 0 1rem 0;
}

.legal-document p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.legal-document ul,
.legal-document ol {
  margin: 1rem 0 1.5rem 2rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
}

.legal-document strong {
  color: #2c3e50;
}

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3498db;
  margin: 1.5rem 0;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: #3498db;
  margin-right: 0.5rem;
  width: 20px;
}

.acknowledgment {
  background: #fff3cd;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.acknowledgment h2 {
  color: #856404;
  border-bottom-color: #ffc107;
}

.acknowledgment p {
  color: #856404;
}

.last-updated {
  text-align: center;
  font-style: italic;
  color: #7f8c8d;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* Table of Contents (if needed) */
.toc {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  border-left: 4px solid #3498db;
}

.toc h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.toc ul {
  list-style-type: none;
  margin-left: 0;
}

.toc li {
  margin-bottom: 0.5rem;
}

.toc a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Sitemap Styles */
.sitemap-hero {
  background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.sitemap-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sitemap-content {
  padding: 3rem 0;
  background: #f8f9fa;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.page-category {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-category h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #3498db;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.page-link {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.page-link:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-icon {
  margin-right: 1.5rem;
  font-size: 2rem;
  color: #3498db;
  min-width: 60px;
  text-align: center;
}

.page-info h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.page-info p {
  color: #7f8c8d;
  margin: 0;
  line-height: 1.5;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.quick-link:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.website-stats {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.website-stats h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.stat-card {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-top: 4px solid #e74c3c;
}

.stat-card i {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #7f8c8d;
  margin: 0;
}

.mission-vision {
  background: #f8fbff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: #0d1b3e;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #0d3ea5;
  margin: 8px auto 0;
  border-radius: 3px;
}

.mv-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.mv-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  width: 400px;
  text-align: left;
  transition: transform 0.3s ease;
}

.mv-box:hover {
  transform: translateY(-5px);
}

.mv-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 24px;
  color: #fff;
}

.mv-icon.vision {
  background: #00bfff; /* Light blue for vision */
}

.mv-icon.mission {
  background: #002d72; /* Dark blue for mission */
}

.mv-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #0d1b3e;
}

.mv-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

