/* Modern Design Improvements for PPDB Landing Page */

/* Modern CSS Variables */
:root {
  --primary-gradient: linear-gradient(135deg, #00746b 0%, #059669 100%);
  --secondary-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --accent-color: #10b981;
  --text-light: #64748b;
  --text-dark: #1e293b;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Improvements */
body {
  scroll-behavior: smooth;
  line-height: 1.7;
}

/* Modern Glassmorphism Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Card Design */
.modern-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid #f1f5f9;
  transition: var(--transition);
  overflow: hidden;
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* Bottom Navigation Styles */
.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 116, 107, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  z-index: 1040;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
  min-width: 60px;
  text-decoration: none;
  color: #64748b;
}

.bottom-nav-item i {
  font-size: 18px;
  margin-bottom: 2px;
  transition: var(--transition);
}

.bottom-nav-item span {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  background: rgba(0, 116, 107, 0.1);
  color: #00746b;
  transform: translateY(-2px);
}

.bottom-nav-item.active i {
  color: #00746b;
  transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  width: 90%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translate(-50%, -50%) scale(1);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 16px;
}

.btn-close-mobile {
  background: none;
  border: none;
  font-size: 18px;
  color: #64748b;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close-mobile:hover {
  background: rgba(0, 116, 107, 0.1);
  color: #00746b;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  color: #1e293b;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 500;
}

.mobile-menu-link:hover {
  background: rgba(0, 116, 107, 0.1);
  color: #00746b;
  transform: translateX(8px);
}

.mobile-menu-link i {
  color: #00746b;
}

.mobile-menu-buttons {
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

/* Hide default navbar collapse on mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
  
  .navbar-toggler {
    border: none;
    padding: 8px;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Mobile brand text styling */
  .brand-text-mobile {
    text-align: left;
    flex-grow: 1;
  }
  
  .brand-text-mobile h6 {
    font-size: 14px;
    color: #00746b !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
  }
  
  .navbar-brand {
    flex-grow: 1;
    justify-content: center;
    display: flex;
  }
  
  /* Center the navbar content on mobile */
  .navbar {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .navbar-toggler {
    position: absolute;
    right: 15px;
    z-index: 10;
  }
  
  /* Add bottom padding to body to prevent content being hidden behind bottom nav */
  body {
    padding-bottom: 80px;
  }
  
  /* Adjust hero section padding on mobile */
  .ud-hero {
    padding-top: 40px !important;
    padding-bottom: 100px !important;
  }
  
  /* Reduce min height on mobile to prevent excessive empty space */
  .hero-row {
    min-height: calc(100vh - 40px) !important;
  }
  
  /* Optimize hero content spacing on mobile */
  .ud-hero-content {
    text-align: center;
  }
  
  .ud-hero-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .ud-hero-desc {
    font-size: 1rem !important;
  }
  
  .ud-hero-buttons {
    justify-content: center;
    margin-bottom: 2rem !important;
  }
  
  .ud-hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Optimize hero image on mobile */
  .ud-hero-image {
    margin-top: 2rem;
  }
  
  .image-slider-container {
    max-height: 400px !important;
  }
  
  .image-slider-container img {
    max-height: 350px !important;
  }
}

/* Enhanced Header */
.ud-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 116, 107, 0.1);
  transition: var(--transition);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  transition: var(--transition);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Modern Navigation */
.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: var(--transition);
  padding: 8px 16px !important;
  border-radius: 8px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(0, 116, 107, 0.05);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Modern Buttons */
.ud-main-btn {
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 24px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ud-main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.ud-main-btn:hover::before {
  left: 100%;
}

.ud-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Modern Hero Section */
.ud-hero {
  background: linear-gradient(135deg, #00746b 0%, #059669 50%, #10b981 100%);
  position: relative;
  overflow: hidden;
}

.ud-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="pattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23pattern)"/></svg>');
  opacity: 0.3;
}

.ud-hero-content {
  position: relative;
  z-index: 2;
}

.ud-hero-title {
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ud-hero-desc {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.ud-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.ud-hero-image {
  position: relative;
}

.mySlides {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

/* Modern Section Titles */
.ud-section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.ud-section-title span {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.ud-section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Modern Feature Cards */
.ud-single-feature {
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ud-single-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.ud-single-feature:hover::before {
  transform: scaleX(1);
}

.ud-single-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.ud-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.ud-feature-icon i {
  font-size: 2rem;
  color: white;
}

.ud-single-feature:hover .ud-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.ud-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.ud-feature-desc {
  color: var(--text-light);
  line-height: 1.7;
}

/* Modern Timeline Table */
.timeline-table {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: none;
}

.timeline-table thead {
  background: var(--primary-gradient);
}

.timeline-table thead th {
  border: none;
  padding: 1.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.timeline-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: var(--transition);
}

.timeline-table tbody tr:hover {
  background: rgba(0, 116, 107, 0.02);
}

.timeline-table td, .timeline-table th {
  padding: 1.25rem 1rem;
  vertical-align: middle;
  border: none;
}

.timeline-table tbody th {
  background: var(--secondary-gradient);
  font-weight: 700;
  color: var(--primary-color);
}

/* Modern Testimonials */
.ud-single-testimonial {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #f1f5f9;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ud-single-testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: rgba(0, 116, 107, 0.05);
  font-family: serif;
  line-height: 1;
}

.ud-single-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.ud-testimonial-ratings {
  margin-bottom: 1.5rem;
}

.ud-testimonial-ratings i {
  color: #fbbf24;
  margin-right: 4px;
  font-size: 1.125rem;
}

.ud-testimonial-content p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.ud-testimonial-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ud-testimonial-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.ud-testimonial-meta h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.ud-testimonial-meta p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* Modern Footer */
.ud-footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  position: relative;
}

.ud-footer-widgets {
  padding: 4rem 0 2rem;
}

.ud-widget-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ud-widget-desc {
  color: #94a3b8;
  line-height: 1.8;
}

.ud-widget-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.ud-widget-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.ud-widget-socials a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
  .ud-hero-title {
    font-size: 2.5rem;
  }
  
  .ud-hero-buttons {
    justify-content: center;
  }
  
  .ud-single-feature {
    margin-bottom: 2rem;
  }
  
  .timeline-table {
    font-size: 0.875rem;
  }
  
  .timeline-table td, .timeline-table th {
    padding: 0.75rem 0.5rem;
  }
}

/* Animation Improvements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling for navigation */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
.image-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Enhanced focus states for accessibility */
.ud-main-btn:focus,
.navbar-nav .nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Custom styles for brand text */
.brand-text h6 {
  font-size: 0.875rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.brand-text small {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Timeline table improvements */
.timeline-table .badge {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
}

/* Contact info styling */
.contact-info .btn {
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
}

/* Mobile navbar improvements */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  display: block;
  margin: 5px 0;
  transition: var(--transition);
}

/* Bootstrap Color Override - Change Primary to Green */
:root {
  --bs-primary: #00746b;
  --bs-primary-rgb: 0, 116, 107;
}

.text-primary {
  color: #00746b !important;
}

.bg-primary {
  background-color: #00746b !important;
}

.btn-primary {
  background-color: #00746b;
  border-color: #00746b;
}

.btn-primary:hover {
  background-color: #059669;
  border-color: #059669;
}

.badge.bg-primary {
  background-color: #00746b !important;
}

.alert-primary {
  background-color: rgba(0, 116, 107, 0.1);
  border-color: rgba(0, 116, 107, 0.2);
  color: #00746b;
}

/* Additional Green Theme Overrides */
.border-primary {
  border-color: #00746b !important;
}

.btn-outline-primary {
  color: #00746b;
  border-color: #00746b;
}

.btn-outline-primary:hover {
  background-color: #00746b;
  border-color: #00746b;
  color: white;
}

.link-primary {
  color: #00746b !important;
}

.link-primary:hover {
  color: #059669 !important;
}

/* Icon fallback styles */
.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentcolor;
}

/* Clean navbar without icons */
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Enhanced Button Visibility */
.navbar-btn .btn {
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: var(--transition);
  font-size: 0.875rem;
}

.navbar-btn .btn-outline-success {
  border: 2px solid #00746b;
  color: #00746b;
  background: transparent;
}

.navbar-btn .btn-outline-success:hover {
  background: #00746b;
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.navbar-btn .btn-success {
  background: #00746b;
  border: 2px solid #00746b;
  color: white;
}

.navbar-btn .btn-success:hover {
  background: #059669;
  border-color: #059669;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Hero Buttons Enhancement */
.ud-hero-buttons .btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  min-width: 160px;
  border-width: 2px;
  font-size: 1rem;
  transition: var(--transition);
}

.ud-hero-buttons .btn-light {
  background: white;
  color: #00746b;
  border: 2px solid white;
  box-shadow: var(--shadow-lg);
}

.ud-hero-buttons .btn-light:hover {
  background: #00746b;
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.ud-hero-buttons .btn-outline-light {
  color: white;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.ud-hero-buttons .btn-outline-light:hover {
  background: white;
  color: #00746b;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Ensure buttons are always visible */
.btn-light, .btn-outline-light {
  text-shadow: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Navbar transparency fix */
.ud-header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero section button container backdrop */
.ud-hero-buttons {
  position: relative;
}

.ud-hero-buttons::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  z-index: -1;
}

/* Hero Image Improvements */
.image-slider-container {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySlides {
  transition: opacity 1s ease-in-out;
  border-radius: 20px;
  width: 100% !important;
  height: auto !important;
  max-height: 500px !important;
  object-fit: contain !important;
  object-position: center;
}

/* Responsive Hero Images */
@media (max-width: 768px) {
  .image-slider-container {
    min-height: 300px;
  }
  
  .mySlides {
    max-height: 350px !important;
  }
}

@media (max-width: 576px) {
  .image-slider-container {
    min-height: 250px;
  }
  
  .mySlides {
    max-height: 280px !important;
  }
}

/* Stats Cards Enhancement */
.stats-cards .card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.stats-cards .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Mobile stats alternative */
@media (max-width: 767.98px) {
  .stats-cards {
    position: static !important;
    margin-top: 1rem;
  }
}

/* Additional mobile responsive styles */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
  
  .navbar-btn {
    padding: 1rem 0;
    border-top: 1px solid #f1f5f9;
  }
}

@media (max-width: 575.98px) {
  .ud-hero {
    padding-top: 100px;
  }
  
  .stats-cards {
    position: static !important;
    margin-top: 2rem;
  }
  
  .badge.fs-6 {
    font-size: 0.75rem !important;
  }
}

/* Profile Content Enhancements */
.modern-card.p-5 {
  padding: 3rem !important;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.ud-testimonial-content.px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.ud-testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
}

/* Mobile Responsive for Profile Card */
@media (max-width: 768px) {
  .modern-card.p-5 {
    padding: 2rem !important;
    margin: 0 1rem;
  }
  
  .ud-testimonial-content.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .col-lg-10 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .modern-card.p-5 {
    padding: 1.5rem !important;
    margin: 0 0.5rem;
  }
  
  .ud-testimonial-content.px-4 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  .ud-testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}