/* ===== Variables ===== */
:root {
  /* Primary Colors */
  --primary-color: #0056b3;
  --primary-light: #007bff;
  --primary-dark: #003d82;
  --primary-hover: #004a9f;
  
  /* Secondary Colors */
  --secondary-color: #e9ecef;
  --secondary-light: #f8f9fa;
  --secondary-dark: #dee2e6;
  
  /* Neutral Colors */
  --text-color: #333333;
  --text-light: #6c757d;
  --text-dark: #212529;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-dark: #343a40;
  --bg-gradient: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadow */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
}

/* ===== General Styles ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  padding: var(--spacing-md) var(--spacing-sm);
}

.section {
  padding: var(--spacing-xl) 0;
}

/* ===== Buttons ===== */
.button {
  transition: background-color var(--transition-normal), transform var(--transition-normal);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-primary {
  background-color: var(--primary-color);
}

.button.is-primary:hover {
  background-color: var(--primary-hover);
}

.button.is-light {
  color: var(--primary-dark);
}

.button.is-light:hover {
  color: var(--primary-color);
}

/* ===== Navbar ===== */
.navbar {
  box-shadow: var(--shadow-md);
  background-color: var(--text-white);
  transition: background-color var(--transition-normal);
}

.navbar.is-fixed-top {
  padding: var(--spacing-xs) 0;
}

.navbar-item {
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary-color) !important;
}

.navbar-burger {
  height: auto;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-body {
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero .title, 
.hero .subtitle {
  color: var(--text-white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
  color: var(--text-white);
}

.hero .buttons {
  margin-top: var(--spacing-md);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-white);
  font-size: 2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* ===== About Section ===== */
.about-section {
  position: relative;
  background-color: var(--text-white);
}

.about-section .image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.about-section .image:hover {
  transform: scale(1.02);
}

/* ===== History Section ===== */
.history-section {
  position: relative;
  background-color: var(--bg-light);
}

.timeline {
  position: relative;
  padding: var(--spacing-md) 0;
}

.timeline-item {
  padding-left: 2rem;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.timeline-marker:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  height: 100%;
  width: 2px;
  background-color: var(--primary-light);
}

.timeline-item:first-child .timeline-marker:before {
  display: none;
}

.timeline-content {
  background-color: var(--text-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-content .heading {
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== Services Section ===== */
.services-section {
  background-color: var(--text-white);
}

.services-section .card {
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.services-section .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.services-section .card-image {
  overflow: hidden;
}

.services-section .card-image img {
  transition: transform var(--transition-slow);
  display: block;
  margin: 0 auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.services-section .card:hover .card-image img {
  transform: scale(1.05);
}

.services-section .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--spacing-md);
}

.services-section .card-content h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
}

.services-section .card-content p {
  color: var(--text-light);
  flex: 1;
}

/* ===== Prices Section ===== */
.prices-section {
  background-color: var(--bg-light);
}

.pricing-tabs {
  background-color: var(--text-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.tabs.is-boxed li.is-active a {
  background-color: var(--primary-color);
  color: var(--text-white);
  border-color: transparent;
}

.pricing-content {
  display: none;
  padding: var(--spacing-md);
}

.pricing-content.is-active {
  display: block;
  animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pricing-content .notification {
  margin-bottom: var(--spacing-md);
}

.table {
  width: 100%;
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.table th,
.table td {
  vertical-align: middle;
  text-align: center;
}

.table th {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.table tr:nth-child(even) {
  background-color: var(--secondary-light);
}

/* ===== Research Section ===== */
.research-section {
  position: relative;
}

.research-gallery {
  margin-top: var(--spacing-md);
}

.research-gallery .image {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.research-gallery .image:hover {
  transform: scale(1.05);
}

/* ===== Statistics Section ===== */
.statistics-section {
  background-color: var(--bg-light);
}

.statistic-item {
  background-color: var(--text-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
  height: 100%;
}

.statistic-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* ===== Resources Section ===== */
.resources-section {
  background-color: var(--text-white);
}

.resources-list {
  list-style-type: none;
  padding-left: 0;
}

.resources-list li {
  margin-bottom: var(--spacing-sm);
  padding-left: 1.5rem;
  position: relative;
}

.resources-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.resources-list a {
  color: var(--primary-color);
  transition: color var(--transition-normal);
  text-decoration: underline;
}

.resources-list a:hover {
  color: var(--primary-hover);
}

/* ===== Innovation Section ===== */
.innovation-section {
  background-color: var(--bg-light);
}

.innovation-section .card {
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation-section .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.innovation-section .card-image {
  overflow: hidden;
  width: 100%;
}

.innovation-section .card-image img {
  transition: transform var(--transition-slow);
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.innovation-section .card:hover .card-image img {
  transform: scale(1.05);
}

.innovation-section .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

/* ===== Team Section ===== */
.team-section {
  background-color: var(--text-white);
}

.team-section .card {
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-section .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-section .card-image {
  overflow: hidden;
  width: 100%;
}

.team-section .card-image img {
  transition: transform var(--transition-slow);
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.team-section .card:hover .card-image img {
  transform: scale(1.05);
}

.team-section .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

/* ===== News Section ===== */
.news-section {
  background-color: var(--bg-light);
}

.news-slider {
  position: relative;
  overflow: hidden;
}

.news-item {
  margin-bottom: var(--spacing-md);
}

.news-item .card {
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-item .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-item .card-image {
  overflow: hidden;
  width: 100%;
}

.news-item .card-image img {
  transition: transform var(--transition-slow);
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.news-item .card:hover .card-image img {
  transform: scale(1.05);
}

.news-item .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.news-item .date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
}

.carousel-controls {
  margin-top: var(--spacing-md);
}

.carousel-controls .button {
  margin: 0 var(--spacing-xs);
}

/* ===== Calendar Section ===== */
.calendar-section {
  background-color: var(--text-white);
}

.events-list {
  margin-top: var(--spacing-md);
}

.event-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
  background-color: var(--secondary-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.event-date {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: var(--spacing-sm);
  text-align: center;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-content {
  padding: var(--spacing-md);
  flex: 1;
}

.event-content h3 {
  margin-bottom: var(--spacing-xs);
}

.event-content .location {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

/* ===== Accolades Section ===== */
.accolades-section {
  background-color: var(--bg-light);
}

.accolades-list {
  margin-top: var(--spacing-md);
}

.accolade-item {
  margin-bottom: var(--spacing-md);
  background-color: var(--text-white);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.accolade-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.accolade-item img {
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition-normal);
  display: block;
  margin: 0 auto;
}

.accolade-item:hover img {
  transform: scale(1.1);
}

/* ===== Contact Section ===== */
.contact-section {
  background-color: var(--text-white);
}

.contact-section .card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 300px;
}

.map-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer .title {
  color: var(--text-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--secondary-light);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.social-links a {
  color: var(--secondary-light);
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  margin-right: var(--spacing-sm);
  position: relative;
  padding-left: 1.5rem;
}

.social-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.social-links a[href*="facebook"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23ffffff"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"/></svg>');
}

.social-links a[href*="twitter"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="%23ffffff"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>');
}

.social-links a[href*="instagram"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" fill="%23ffffff"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg>');
}

.social-links a[href*="youtube"]::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" fill="%23ffffff"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"/></svg>');
}

.social-links a:hover {
  color: var(--primary-light);
}

.newsletter-form .input {
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.newsletter-form .button {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.copyright {
  margin-top: var(--spacing-lg);
  color: var(--secondary-light);
  opacity: 0.8;
}

/* ===== Success Page ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-light);
}

.success-content {
  padding: var(--spacing-xl);
  background-color: var(--text-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

/* ===== Terms & Privacy Pages ===== */
.terms-page,
.privacy-page {
  padding-top: 100px;
  min-height: 100vh;
}

.terms-content,
.privacy-content {
  background-color: var(--text-white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

/* ===== Utilities ===== */
.has-text-centered {
  text-align: center;
}

.has-background-light {
  background-color: var(--bg-light);
}

.has-text-white {
  color: var(--text-white);
}

.has-shadow {
  box-shadow: var(--shadow-md);
}

.mb-3 {
  margin-bottom: var(--spacing-sm);
}

.mb-4 {
  margin-bottom: var(--spacing-md);
}

.mb-5 {
  margin-bottom: var(--spacing-lg);
}

.mb-6 {
  margin-bottom: var(--spacing-xl);
}

.mt-3 {
  margin-top: var(--spacing-sm);
}

.mt-4 {
  margin-top: var(--spacing-md);
}

.mt-5 {
  margin-top: var(--spacing-lg);
}

.mt-6 {
  margin-top: var(--spacing-xl);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Responsive Adjustments ===== */
@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .counter {
    font-size: 2rem;
  }
  
  .event-date {
    min-width: 60px;
  }
  
  .event-date .day {
    font-size: 1.5rem;
  }
  
  .event-date .month {
    font-size: 0.8rem;
  }
  
  .accolade-item .columns {
    flex-direction: column;
  }
  
  .accolade-item .column.is-one-quarter {
    margin-bottom: var(--spacing-sm);
  }
  
  .footer {
    text-align: center;
  }
  
  .footer .columns {
    display: block;
  }
  
  .footer .column {
    margin-bottom: var(--spacing-lg);
  }
  
  .social-links {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: var(--spacing-xs);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .event-date .day {
    margin-right: var(--spacing-xs);
  }
}

/* ===== AOS Animation Override ===== */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Read More Link Styles */
a.read-more,
.button.is-small {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  transition: color var(--transition-normal);
}

a.read-more::after,
.button.is-small::after {
  content: "→";
  display: inline-block;
  margin-left: 5px;
  transition: transform var(--transition-normal);
}

a.read-more:hover,
.button.is-small:hover {
  color: var(--primary-hover);
}

a.read-more:hover::after,
.button.is-small:hover::after {
  transform: translateX(5px);
}

/* Card Enhancements */
.card {
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.card-image {
  width: 100%;
  text-align: center;
}

.card-image img {
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
  margin: 0 auto;
}

.card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Testimonial, Team Member, Product Card */
.testimonial, .team-member, .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial img, .team-member img, .product-card img {
  display: block;
  margin: 0 auto;
  object-fit: cover;
}
.navbar>.container{
  padding-top: 0;
  padding-bottom: 0;
}