* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}


.site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background-color: #fff;
  }

.site-logo {
    max-width: 160px;
    height: auto;
  }

  @media (max-width: 600px) {
    .site-header {
      justify-content: flex-start;
      padding-left: 16px;
    }

.site-logo {
      max-width: 140px;
    }
  }


.cta-container {
  margin-top: 40px; /* Increased top margin */
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 20px 50px; /* Larger padding for button */
  font-size: 24px; /* Bigger font for button */
  border: none;
  border-radius: 50px; /* Fully rounded button */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Small CTA Button */
.cta-button.small {
  font-size: 16px;
  padding: 12px 30px; /* Adjusted small button size */
}

/* Contact Us Form */
.contact-us {
  margin-top: 80px; /* Increased space */
  background-color: #f9f9f9;
  padding: 50px;
  border-radius: 10px;
}

.contact-us h2 {
  font-size: 50px; /* Larger header */
  margin-bottom: 30px;
  color: #333;
}

.form-group {
  margin-bottom: 30px; /* More space between form fields */
  text-align: left;
}

.form-group label {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
  display: block;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.form-group textarea {
  height: 200px;
}

footer {
  background-color: #007bff;
  color: white;
  padding: 40px;
  text-align: center;
  margin-top: 80px; /* Increased space */
}

footer .footer-content p {
  margin: 10px 0;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 0 5vw;
  background-color: #f7f7f7;
}

.animated-heading {
  font-size: 72px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
  word-break: break-word;
}

.animated-heading span {
  display: inline-block;
  opacity: 0;
  animation: fadeInWord 0.5s ease forwards;
  margin-right: 8px;
}

.animated-heading span:nth-child(1) { animation-delay: 0.1s; }
.animated-heading span:nth-child(2) { animation-delay: 0.3s; }
.animated-heading span:nth-child(3) { animation-delay: 0.5s; }
.animated-heading span:nth-child(4) { animation-delay: 0.7s; }
.animated-heading span:nth-child(5) { animation-delay: 0.9s; }
.animated-heading span:nth-child(6) { animation-delay: 1.1s; }

.hero-subtext {
  font-size: 20px;
  color: #666;
  max-width: 900px;
  margin-bottom: 40px;
}

@keyframes fadeInWord {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.client-base {
  text-align: center;
  padding: 40px 5vw 60px 5vw; /* top, sides, bottom */
  margin-top: 0; /* important */
  background-color: #f7f7f7;
}

.client-base h2 {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 40px 0;
  background-color: #f7f7f7;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollCarousel 25s linear infinite;
}

.carousel-track img {
  max-height: 80px;
  width: auto;
  display: block;
  opacity: 1;
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.05);
}

/* Fade edges for nice visual taper */
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f7f7f7, transparent);
}

.carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f7f7f7, transparent);
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trusted-section {
  background-color: #f7f7f7; /* match your main site */
  padding: 60px 5vw 40px 5vw; /* top: 60, bottom: 40 */
  text-align: center;
}

.trusted-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
  animation: fadeSlideDown 1s ease-out;
}

.trusted-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.3s; }
.stat-item:nth-child(2) { animation-delay: 0.6s; }
.stat-item:nth-child(3) { animation-delay: 0.9s; }

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
}

.stat-label {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/* Hover bounce effect */
.stat-item:hover .stat-number {
  transform: scale(1.1);
}

/* Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.lms-section {
  background-color: #f7f7f7;
  padding: 30px 5vw 60px 5vw; /* NOT 80px or more */
  margin-top: 0; 
}

.lms-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.lms-text {
  flex: 1 1 500px;
  animation: slideInLeft 1s ease forwards;
}

.lms-text h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
}

.lms-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.fcg-image {
  flex: 1 1 400px;
  text-align: center;
  animation: slideInRight 1s ease forwards;
}

.fcg-image img {
  max-width: 70%;
  height: auto;
  border-radius: 10px;
}

/* Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}



.services {
  padding: 80px 5vw;
  background-color: #f7f7f7;
  text-align: center;
}

.services h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #333;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  gap: 40px;
  animation: fadeInUp 0.8s ease forwards;
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1 1 400px;
  text-align: left;
}

.service-text h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.service-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.service-image {
  flex: 1 1 400px;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .service-card,
  .service-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-text {
    text-align: center;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.integration-section {
  background-color: #f7f7f7;
  padding: 80px 5vw;
  text-align: center;
}

.integration-section h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.integration-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

/* Marquee Container */
.integration-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Logo Scroller */
.logo-track {
  display: flex;
  gap: 90px;
  align-items: center;
  animation: scrollLeft 30s linear infinite;
  padding: 10px 0;
}

.logo-track img {
  height: 150px; /* ← bigger, but still mobile-friendly */
  width: auto;
  max-width: 180px; /* prevent ultra-wide logos */
  object-fit: contain;
  padding: 20px;
  transition: transform 0.2s ease;
  opacity: 0.95;
}


.logo-track img:hover {
  transform: scale(1.08);
  opacity: 1;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.form-success {
  display: none;
  background-color: #e6f7e6;
  color: #2a7a2a;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
  animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* MOBILE RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  
  .hero-section {
    padding: 0 5vw;
    min-height: 80vh;
  }

  .animated-heading {
    font-size: 42px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .cta-button {
    font-size: 18px;
    padding: 15px 40px;
  }

  .cta-button.small {
    font-size: 14px;
    padding: 10px 25px;
  }

  .contact-us {
    padding: 30px;
  }

  .contact-us h2 {
    font-size: 36px;
  }

  .form-group input, .form-group textarea {
    font-size: 16px;
    padding: 12px;
  }

  .services h2 {
    font-size: 36px;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .service-card.reverse {
    flex-direction: column;
  }

  .service-text {
    text-align: center;
  }

  .service-text h3 {
    font-size: 24px;
  }

  .service-text p {
    font-size: 16px;
  }

  .trusted-section h2,
  .integration-section h2,
  .lms-text h2 {
    font-size: 32px;
  }

  .trusted-stats {
    flex-direction: column;
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }

  .lms-content {
    flex-direction: column;
    text-align: center;
  }

  .lms-text p {
    font-size: 16px;
  }

  .integration-section p {
    font-size: 16px;
  }

  .carousel-track {
    gap: 40px;
  }

  .carousel-track img {
    max-height: 60px;
  }

  .logo-track {
    gap: 50px;
  }

  .logo-track img {
    height: 100px;
    max-width: 120px;
  }

  footer {
    padding: 30px 20px;
  }

  footer .footer-content p {
    font-size: 14px;
  }

  footer a {
    margin: 0 5px;
    font-size: 14px;
  }

}

/* EXTRA SMALL SCREENS */
@media (max-width: 480px) {
  
  .animated-heading {
    font-size: 32px;
  }

  .hero-subtext {
    font-size: 14px;
  }

  .cta-button {
    font-size: 16px;
    padding: 12px 30px;
  }

  .cta-button.small {
    font-size: 12px;
    padding: 8px 20px;
  }

  .contact-us {
    padding: 20px;
  }

  .contact-us h2 {
    font-size: 28px;
  }

  .form-group label {
    font-size: 16px;
  }

  .form-group input, .form-group textarea {
    font-size: 14px;
  }

  .service-text h3 {
    font-size: 20px;
  }

  .service-text p {
    font-size: 14px;
  }

  .trusted-section h2,
  .integration-section h2,
  .lms-text h2 {
    font-size: 28px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 14px;
  }

  .integration-section p {
    font-size: 14px;
  }

  footer .footer-content p,
  footer a {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  /* Make 
  base carousel faster */
  .carousel-track {
    animation-duration: 15s; /* was 25s */
  }

  /* Make integration logo carousel faster */
  .logo-track {
    animation-duration: 18s; /* was 30s */
  }
}

@media (max-width: 480px) {
  /* Even faster on very small screens */
  .carousel-track {
    animation-duration: 10s;
  }

  .logo-track {
    animation-duration: 15s;
  }
}
