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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 768px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

/* Left Content Styles */
.left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0;
}

.logo-section {
  margin-bottom: 30px;
}

.logo-background {
  width: 150px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.logo-background img {
  width:100%;
  height: 100px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  opacity: 0.7;
}

.company-name {
  font-size: 3.5rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.tagline {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 400px;
}

.cta-button {
  background: #22c55e;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
  transform: translateX(4px);
}

/* Right Content Styles */
.right-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.image-card {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

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

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

.top-left {
  transform: rotate(-2deg);
}

.top-right {
  transform: rotate(2deg);
}

.bottom-left {
  transform: rotate(1deg);
}

.bottom-right {
  transform: rotate(-1deg);
}

.image-card:hover {
  transform: translateY(-8px) rotate(0deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .left-content {
    align-items: center;
    order: 2;
  }
  
  .right-content {
    order: 1;
  }
  
  .company-name {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .images-grid {
    max-width: 300px;
  }
  
  .image-card {
    transform: none !important;
  }
  
  .image-card:hover {
    transform: translateY(-4px) !important;
  }
}

@media (max-width: 480px) {
  .company-name {
    font-size: 2rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  
  .images-grid {
    max-width: 250px;
    gap: 15px;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.left-content {
  animation: fadeInUp 0.8s ease-out;
}

.right-content {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.image-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.image-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.image-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.image-card:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.7s both;
}
