:root {
  --primary: #29aaac;
  --dark-green: #00160b;
  --dark-blue: #002130;
  --light-bg: #ffffff;
  --light-text: #00160b;
  --dark-bg: #0d1117;
  --dark-text: #e6edf3;
  --nav-height: 70px;
  
  --bg-color: var(--light-bg);
  --text-color: var(--light-text);
  --nav-bg: rgba(255, 255, 255, 0.9);
  --section-bg: #f9f9f9;
  --card-bg: #ffffff;
}

[data-theme="dark"] {
  --bg-color: var(--dark-green);
  --text-color: #f0f6fc;
  --nav-bg: rgba(0, 22, 11, 0.9);
  --section-bg: #002130;
  --card-bg: #0d1e18;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Nav */
nav {
  position: sticky;
  top: 0;
  height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-color);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem;
  transition: color 0.2s;
}

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

.theme-toggle {
  background: none;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  /* Default Light Mode Background */
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(220, 240, 245, 0.9)), url('/assets/img/hero-bg-light.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--dark-green);
  transition: background 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .hero {
  /* Dark Mode Background */
  background: linear-gradient(rgba(0, 22, 11, 0.85), rgba(0, 33, 48, 0.9)), url('/assets/img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

[data-theme="dark"] .hero h1 {
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.5rem;
  color: var(--primary); /* Keep primary color for text in light mode too, or adjust */
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
}

[data-theme="dark"] .hero p {
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Scorecards */
.hero-scorecards {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.scorecard {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-number {
  font-size: 3rem;
  font-weight: 800;
  /* Flashy Gradient */
  background: linear-gradient(135deg, #00dbde 0%, #fc00ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  /* Removed text-shadow to ensure gradient visibility */
}

.score-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  color: var(--text-color);
  opacity: 0.8;
}

/* Services */
.section-padding {
  padding: 6rem 5%;
}

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

/* Services Detail Page */
.services-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.service-detail-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.service-detail-block.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  /* Optional: Glitch/Tech effect border? */
  border: 1px solid rgba(41, 170, 172, 0.2);
}

.service-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.service-text h2::after {
  content: '';
  display: block;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.detail-item {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid rgba(128,128,128,0.2);
  transition: border-color 0.3s;
}

.detail-item:hover {
  border-left-color: var(--primary);
}

.detail-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.detail-item p {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .service-detail-block, .service-detail-block.reverse {
    flex-direction: column;
    text-align: center;
  }
  
  .service-text h2::after {
    margin: 0.5rem auto 0;
  }
  
  .detail-item {
    border-left: none; /* Remove side border on mobile */
    padding-left: 0;
    margin-bottom: 3rem;
  }
}


/* Home Page Flip Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 1.5rem; /* Tighter gap */
  margin-top: 4rem;
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Flip Card Container */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 350px; /* Fixed height for consistency */
  perspective: 1000px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 12px;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Style the front side */
.flip-card-front {
  background-color: var(--card-bg);
  color: var(--text-color);
  border: 1px solid rgba(128,128,128,0.1);
}

/* Style the back side */
.flip-card-back {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(41, 170, 172, 0.1) 100%);
  color: var(--text-color);
  transform: rotateY(180deg);
  border: 1px solid var(--primary);
}

/* Front Content Styles */
.flip-card-front h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.flip-card-front .service-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

/* Back Content Styles */
.flip-card-back .service-solution {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.learn-more {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
}

.learn-more:hover {
  background: var(--primary);
  color: #fff;
}

/* Blog Index */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px; /* Limit width */
  margin: 0 auto; /* Center it */
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(128,128,128,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Featured Post (First Child) */
.blog-card:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(41, 170, 172, 0.05) 100%);
  border-left: 5px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.blog-card:first-child h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-card h2 a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-meta {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Tag Pills */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag-pill {
  background: rgba(41, 170, 172, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.tag-pill:hover {
  background: var(--primary);
  color: #fff;
}

.blog-desc {
  line-height: 1.6;
  opacity: 0.9;
  flex-grow: 1; /* Pushes content down if needed */
}

/* Article / Post Content (Medium Style) */
.article-container {
  max-width: 720px; /* Standard reading width */
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(128,128,128,0.2);
  padding-bottom: 2rem;
}

.article-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.article-meta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
  opacity: 0.8;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
}

.article-content {
  font-family: 'Georgia', 'Times New Roman', serif; /* Legible Serif */
  font-size: 1.25rem; /* ~20px */
  line-height: 1.6;
  color: var(--text-color);
}

.article-content p {
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.article-content h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.article-content h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  font-style: italic;
  font-size: 1.4rem;
  margin: 2rem 0;
  color: var(--text-color);
  opacity: 0.9;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

/* Carousel (Clients & Testimonials) */
.carousel-section {
  padding: 4rem 0;
  width: 100%; 
  background: transparent; /* Revert to transparent/base background */
  overflow: hidden;
}

/* Light mode specific override for a nice teal tint */
:root:not([data-theme="dark"]) .carousel-section {
  background: transparent;
}

/* Dark mode specific override */
[data-theme="dark"] .carousel-section {
    background: transparent;
}

.carousel-title {
  text-align: center; 
  margin-bottom: 2.5rem; 
  font-size: 2rem;
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.carousel-container {
  max-width: 800px; /* Narrower container */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* Soft fade mask */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
  display: flex;
  width: calc(200px * 14); /* Clients: 7 items * 2 */
  animation: scroll 30s linear infinite;
  align-items: center; /* Center vertically */
  padding: 10px 0; /* Space for shadows */
}

.testimonial-track {
  display: flex;
  width: calc(300px * 24); /* Testimonials: 12 items * 2 */
  animation: scroll 60s linear infinite;
  padding: 10px 0;
}

.carousel-slide {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.testimonial-slide {
  width: 300px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

/* Client "Cards" */
.carousel-slide span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3e2700; /* Dark brown for contrast on gold */
  
  /* Gold/Orange Card Style */
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  padding: 0.8rem 1.5rem;
  border-radius: 50px; /* Pill shape */
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
  
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
}

.carousel-slide span:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
  opacity: 1; /* Reset opacity logic if needed, but styling overrides it now */
}

/* Testimonial Cards */
.testimonial-card {
  /* Gold/Orange Card Style */
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); /* Lighter gold for text readability */
  color: #4e342e; /* Dark brownish text */
  
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 167, 38, 0.2);
  text-align: center;
  width: 100%;
  font-size: 1rem;
  font-style: italic;
  
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

[data-theme="dark"] .testimonial-card {
    /* Darker Gold for Dark Mode to not be blinding */
    background: linear-gradient(135deg, #614618 0%, #8a5708 100%);
    color: #ffd769; /* Light gold text */
    border-color: #8a5708;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimonial-card:hover {
    transform: scale(1.02);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50%)); } /* Generic scroll to half width */
}

/* Specific overrides for track widths in animation if needed, 
   but using -50% is a cleaner trick if the track is exactly double the content.
   Let's ensure the track width definitions in CSS match the content double.
   
   Client Track: 7 items * 2 = 14 items. Width needs to be big enough.
   Testimonial Track: 12 items * 2 = 24 items.
*/

.carousel-track {
  width: calc(200px * 14); 
}
.testimonial-track {
  width: calc(300px * 24);
}

/* Contact */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(128,128,128,0.3);
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 6px;
  font-size: 1rem;
}

button[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s;
}

button[type="submit"]:hover {
  opacity: 0.9;
}

/* Footer */
footer {
  background: var(--dark-green);
  color: #fff;
  padding: 3rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.to-top {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, opacity 0.3s;
  z-index: 1000;
  opacity: 0.8;
}

.to-top:hover {
  transform: translateY(-5px);
  opacity: 1;
}

/* Blog */
.blog-list {
  max-width: 800px;
  margin: 0 auto;
}

.blog-item {
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(128,128,128,0.2);
  padding-bottom: 2rem;
}

.blog-item h2 a {
  color: var(--text-color);
  text-decoration: none;
}

.blog-item h2 a:hover {
  color: var(--primary);
}

.meta {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1rem;
  display: block;
}

/* Services Page Specific UI */
.partner-pill {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  background: transparent;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  border: 1px solid rgba(128,128,128,0.3);
  white-space: nowrap;
  display: inline-block;
  opacity: 0.7;
  transition: all 0.3s;
}

.partner-pill:hover {
  border-color: var(--primary);
  opacity: 1;
  transform: translateY(-2px);
}

.service-testimonial {
  background: rgba(255, 255, 255, 0.5); /* Semi-transparent default */
  color: var(--text-color);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid var(--primary);
  text-align: left;
  width: 100%;
  font-size: 1.1rem;
  font-family: 'Georgia', serif;
  font-style: italic;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-testimonial small {
  display: block;
  margin-top: 0.8rem;
  font-family: system-ui, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.7;
}

[data-theme="dark"] .service-testimonial {
  background: rgba(255, 255, 255, 0.05); /* Subtle glass in dark mode */
}

/* Blog Cards Row - Horizontal Layout for Recent Articles */
.blog-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .blog-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-cards-row {
    grid-template-columns: 1fr;
  }
}

.blog-card-small {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(128,128,128,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.blog-card-small h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-card-small h3 a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-small h3 a:hover {
  color: var(--primary);
}

.blog-card-small .blog-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
  flex-grow: 1;
}

/* Other Articles Section */
.other-articles-section {
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  color: var(--primary);
  text-align: center;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  display: block;
  font-weight: 700;
}

/* Blog Titles Grid - Large Title Display */
.blog-titles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .blog-titles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-titles-grid {
    grid-template-columns: 1fr;
  }
}

.blog-title-item {
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-title-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-left-color: var(--primary);
}

.blog-title-item a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  line-height: 1.3;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.blog-title-item a:hover {
  color: var(--primary);
}

.blog-meta-small {
  font-size: 0.85rem;
  opacity: 0.6;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* More Articles Section - Expandable */
.more-articles-wrapper {
  margin-top: 3rem;
}

.more-articles-section {
  margin-bottom: 2rem;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* See More Button */
.see-more-container {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.see-more-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(41, 170, 172, 0.3);
}

.see-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 170, 172, 0.4);
  opacity: 0.9;
}

.see-more-btn:active {
  transform: translateY(0);
}

