/* Sheritech Theme CSS */

:root {
  --primary-color: #1898d5;
  --primary-light: #3faddf;
  --primary-dark: #1376a8;
  --secondary-color: #bad531;
  --secondary-light: #c9e055;
  --secondary-dark: #9ab427;
  --dark-color: #1a1a2e;
  --light-color: #f7f7f7;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Navbar Styling */
.navbar {
  background-color: #000000 !important; /* Pure black background */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 0.7rem 1rem;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
}

.navbar-brand .logo {
  height: 40px;
  margin-right: 10px;
  max-width: 100%;
  object-fit: contain;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
  background-color: rgba(255,255,255,0.1);
}

/* Navigation Enhancement for Black Background */
.bg-dark {
  background-color: #000000 !important; /* Pure black */
}

.navbar-dark .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}

.navbar-dark .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%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 768px) {
  .navbar-brand span {
    font-size: 1.2rem; /* Smaller brand text on mobile */
  }
  
  .navbar-brand .logo {
    height: 35px; /* Slightly smaller logo on mobile */
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 70%, var(--dark-color) 100%); /* Fallback in case video doesn't load */
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-content {
  animation: fadeIn 1.2s ease-out;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: slideInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
  margin-top: 2.5rem;
  animation: slideInUp 1s ease-out 0.4s backwards;
}

.hero-buttons .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0d7ebd);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #9cb618);
}

.hero-buttons .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0; /* Changed from -1 to 0 */
}

.hero-video-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-video-container video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-youtube-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-youtube-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

#youtube-player, 
#youtube-player iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 150% !important; /* Larger than container to ensure no black bars */
  min-height: 150% !important; /* Larger than container to ensure no black bars */
  width: 150% !important; 
  height: 150% !important;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  filter: grayscale(50%) brightness(0.9);
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3; /* Ensure content is above the video and overlay */
  text-align: center;
  padding: 0 15px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: white;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  text-align: center;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Card Styling */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

.card-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Features */
.feature-box {
  padding: 3rem 2rem;
  text-align: center;
  background-color: white;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2.5rem;
}

.feature-box:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px; /* MUCH bigger circle */
  height: 160px; /* MUCH bigger circle */
  border-radius: 50%;
  background: #f5f7fa; /* Very light grey background */
  margin-bottom: 1.8rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 0 20px rgba(0, 120, 215, 0.2); /* Blue outer glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15), 0 0 30px rgba(0, 120, 215, 0.35); /* Enhanced blue glow on hover */
}

.feature-icon img {
  width: 120px; /* MUCH larger icons */
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 80, 160, 0.2)); /* Subtle blue drop shadow on the icon itself */
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: white;
}

.footer h5 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.footer h5:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Forms */
.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(24, 152, 213, 0.25);
}

.form-label {
  font-weight: 500;
}

/* Contact Page */
.contact-info-box {
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  min-width: 30px;
}

/* Modern Header with Ellipsis Menu */
.header {
  background-color: #000000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  height: 80px; /* Larger header */
  display: flex;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
}

.header-brand .logo {
  height: 50px; /* Larger logo */
  max-width: 100%;
  object-fit: contain;
}

.menu-toggle {
  background: transparent;
  border: none;
  color: white;
  font-size: 2.5rem; /* Bigger font size for ellipsis */
  cursor: pointer;
  width: 60px; /* Larger button width */
  height: 60px; /* Larger button height */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  margin-right: -10px; /* Pull slightly to the right for better alignment */
}

.menu-toggle:hover {
  background-color: rgba(255,255,255,0.1);
  transform: scale(1.05); /* Subtle scale effect on hover */
}

/* Sliding Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -320px; /* Start off-screen */
  width: 320px;
  height: 100vh;
  background-color: #000000;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.side-menu.active {
  right: 0; /* Slide in */
}

.side-menu-header {
  padding: 1.5rem;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.close-menu {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.close-menu:hover {
  background-color: rgba(255,255,255,0.1);
}

.side-menu-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 0;
}

.side-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu-item {
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.side-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.side-menu-link:hover, 
.side-menu-link:focus {
  background-color: rgba(255,255,255,0.05);
  color: var(--primary-color);
  border-left-color: var(--primary-color);
}

.side-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary-color);
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Page Transitions */
.page-transition {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  /* Hide YouTube video on mobile devices */
  .hero-youtube-container {
    display: none;
  }
  
  /* Add a gradient background with secondary green color instead of video for mobile */
  .hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 70%, var(--dark-color) 100%);
    padding: 2rem 0;
    height: auto;
    min-height: 400px;
  }
  
  /* Stack CTA buttons on mobile */
  .hero-content .d-flex.justify-content-center.hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 0.75rem !important;
  }
  
  .hero-content .btn {
    margin-bottom: 0;
    width: 100%;
  }
  
  /* Adjust hero title and subtitle for mobile */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem !important;
  }
  
  .header {
    height: 70px; /* Slightly smaller on mobile */
  }
  
  .header-brand .logo {
    height: 45px; /* Slightly smaller logo on mobile */
  }
  
  .menu-toggle {
    font-size: 2.2rem; /* Still big on mobile, but slightly smaller */
    width: 55px;
    height: 55px;
    margin-right: -5px;
  }
  
  .side-menu {
    width: 280px; /* Narrower menu on mobile */
  }
  
  .side-menu-link {
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Admin Login Area */
.admin-login-container {
  max-width: 450px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background-color: white;
}

.admin-header {
  text-align: center;
  margin-bottom: 2rem;
}

.admin-header h2 {
  color: var(--primary-color);
}

/* Animation for the menu toggle button */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); } /* More dramatic scale */
  100% { transform: scale(1); }
}

.menu-toggle:focus {
  animation: pulse 0.4s ease-in-out;
  outline: none;
  color: var(--secondary-color); /* Change color when focused */
}

/* Animations for menu items */
.side-menu-item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.side-menu.active .side-menu-item {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation delay for menu items */
.side-menu.active .side-menu-item:nth-child(1) { transition-delay: 0.1s; }
.side-menu.active .side-menu-item:nth-child(2) { transition-delay: 0.15s; }
.side-menu.active .side-menu-item:nth-child(3) { transition-delay: 0.2s; }
.side-menu.active .side-menu-item:nth-child(4) { transition-delay: 0.25s; }
.side-menu.active .side-menu-item:nth-child(5) { transition-delay: 0.3s; }
.side-menu.active .side-menu-item:nth-child(6) { transition-delay: 0.35s; }

/* Capabilities Page Video Background */
.capabilities-hero {
  position: relative;
  padding: 7rem 0;
  color: white;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.capabilities-youtube-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.capabilities-youtube-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
                rgba(24, 152, 213, 0.7) 0%, 
                rgba(19, 118, 168, 0.8) 70%,
                rgba(19, 118, 168, 0.95) 100%);
  z-index: 2;
}

#capabilities-youtube-player,
#capabilities-youtube-player iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 150% !important;
  min-height: 150% !important;
  width: 150% !important;
  height: 150% !important;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  filter: grayscale(30%) brightness(0.8);
}

/* Bottom fade effect to blend into the next section */
.capabilities-hero:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 3;
}

/* About Page Video Background */
.about-hero {
  position: relative;
  padding: 7rem 0;
  color: white;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-dark) 100%);
}

.about-youtube-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.about-youtube-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.6) 0%, 
                rgba(0, 0, 0, 0.7) 70%,
                rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

#about-youtube-player,
#about-youtube-player iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 150% !important;
  min-height: 150% !important;
  width: 150% !important;
  height: 150% !important;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  filter: grayscale(20%) brightness(0.85);
}

/* Bottom fade effect to blend into the next section */
.about-hero:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 3;
}

/* Hero Section Enhancements */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-content {
  animation: fadeIn 1.2s ease-out;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: slideInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
  margin-top: 2.5rem;
  animation: slideInUp 1s ease-out 0.4s backwards;
}

.hero-buttons .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #0d7ebd);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary {
  background: linear-gradient(135deg, var(--secondary-color), #9cb618);
}

.hero-buttons .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  z-index: 1;
  animation: float 12s infinite ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-shape-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 3s;
}

.hero-shape-3 {
  width: 70px;
  height: 70px;
  bottom: 15%;
  left: 20%;
  animation-delay: 6s;
}

/* Navbar Scroll Effect */
.navbar {
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(0, 0, 0, 0.95) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  transition: all 0.3s ease;
}

.menu-toggle {
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.05);
  color: var(--secondary-color);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(8px) rotate(-5deg); }
  75% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from { 
    opacity: 0;
    transform: translateY(40px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}
