/* styles.css */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.ml-2 {
  margin-left: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f0fdf4 100%);
  overflow: hidden;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(2rem);
  opacity: 0.2;
  animation: pulse 3s infinite;
}

.circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: #93c5fd;
  animation-delay: 0s;
}

.circle-2 {
  top: 10rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: #86efac;
  animation-delay: 1s;
}

.circle-3 {
  bottom: -5rem;
  left: 50%;
  width: 20rem;
  height: 20rem;
  background-color: #d8b4fe;
  animation-delay: 0.5s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
}

/* Hero text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.headline h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .headline h1 {
    font-size: 3rem;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #2563eb 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.25rem;
  color: #374151;
  display: block;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .subtitle {
    font-size: 1.875rem;
  }
}

.headline p {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.75;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateZ(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.btn-secondary {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  color: white;
}

.btn-white {
  background: white;
  color: #2563eb;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* Hero showcase */
.hero-showcase {
  display: flex;
  justify-content: center;
}

.showcase-wrapper {
  position: relative;
  width: 100%;
  z-index: 10;
}

.iframe-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-element {
  position: absolute;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.top-right {
  top: -1.5rem;
  right: -1.5rem;
}

.bottom-left {
  bottom: -1.5rem;
  left: -1.5rem;
  animation-delay: 0.5s;
}

.floating-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-blue {
  color: #3b82f6;
  width: 1.5rem;
  height: 1.5rem;
}

.icon-green {
  color: #10b981;
  width: 1.5rem;
  height: 1.5rem;
}

.floating-content span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

/* Section headers */
.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
}

/* Industry Solutions Section */
.industry-solutions {
  padding: 2.5rem 0;
  background-color: white;
}

@media (min-width: 1024px) {
  .industry-solutions {
    padding: 4rem 0;
  }
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.5s ease;
  overflow: hidden;
}

.industry-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #dbeafe;
  transform: translateY(-5px);
}

.card-image {
  height: 12rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.industry-card:hover .card-content h3 {
  color: #2563eb;
}

.card-content p {
  color: #4b5563;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 2.5rem 0;
  background-color: #f9fafb;
}

/* @media (min-width: 1024px) {
  .features-section {
    padding: 4rem 0;
  }
} */

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #bbf7d0;
}

.feature-icon {
  margin-bottom: 1rem;
}

.icon-wrapper {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.special-note {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
}

.note-content {
  font-size: 0.875rem;
  color: #6b7280;
  background-color: #f9fafb;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

/* Industry Custom Services Section */
.industry-custom-services {
  /* padding: 2.5rem 0; */
  background-color: #f9fafb;
}

/* @media (min-width: 1024px) {
  .industry-custom-services {
    padding: 4rem 0;
  }
} */

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.industry-item {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.industry-item:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #dbeafe;
}

@media (min-width: 768px) {
  .industry-item {
    flex-direction: row;
  }
}

.industry-image {
  width: 100%;
}

@media (min-width: 768px) {
  .industry-image {
    width: 40%;
  }
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12.5rem;
  transition: transform 0.5s ease;
}

.industry-item:hover .industry-image img {
  transform: scale(1.05);
}

.industry-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .industry-content {
    width: 60%;
    padding: 2rem;
  }
}

.industry-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.industry-icon {
  width: 3rem;
  height: 3rem;
  background-color: #eff6ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.industry-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.industry-content p {
  color: #4b5563;
  line-height: 1.75;
}

/* Client Recognition Section */
.client-recognition {
  padding: 2.5rem 0;
  background-color: white;
}

@media (min-width: 1024px) {
  .client-recognition {
    padding: 4rem 0;
  }
}

.customer-wall {
  margin-bottom: 4rem;
}

.customer-wall-content {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.customer-wall-content img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.bottom-cta {
  margin-top: 4rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(90deg, #2563eb 0%, #16a34a 100%);
  color: white;
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cta-text {
  text-align: center;
}

@media (min-width: 768px) {
  .cta-text {
    text-align: left;
  }
}

.cta-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: #dbeafe;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
  }
  
  .headline h1 {
    font-size: 1.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .headline p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .floating-element {
    padding: 0.75rem;
  }
  
  .floating-content span {
    font-size: 0.75rem;
  }
  
  .icon-blue, .icon-green {
    width: 1.25rem;
    height: 1.25rem;
  }
}