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

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --background: #f8f9fa;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background: linear-gradient(135deg, var(--background) 0%, #ffffff 100%);
  color: var(--text-dark);
}

.main-wrapper {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
  width: 100%;
}

/* Updated company header styling for logo image */
.company-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.company-logo-img {
  max-width: 150px;
  height: auto;
  display: block;
}

/* Carousel Styles */
.carousel-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.carousel-item img {
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(99, 102, 241, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

/* Added company tagline styling */
.company-tagline {
  margin: 25px 0 20px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 12px 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

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

/* Countdown Text */
.countdown-text {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

#timer {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-wrapper {
    height: 100vh;
    padding: 15px;
  }

  .carousel-item img {
    height: 300px;
  }

  .company-logo-img {
    max-width: 120px;
  }

  .company-tagline {
    font-size: 14px;
  }

  .btn-lg {
    padding: 10px 30px;
    font-size: 16px;
  }

  .countdown-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .main-wrapper {
    height: 100vh;
    padding: 10px;
  }

  .carousel-item img {
    height: 200px;
  }

  .company-logo-img {
    max-width: 100px;
  }

  .company-tagline {
    font-size: 13px;
    margin: 15px 0 15px 0;
  }

  .btn-lg {
    padding: 8px 25px;
    font-size: 14px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .countdown-text {
    font-size: 12px;
  }
}
