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

body {
  font-family:
    "Inter", "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  background: #ffffff;
  color: #333333;
}

.hero-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/industry.jpg");
  background-size: cover;
  background-position: center;
  background-color: #2d6aaa;
  padding: 20px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 106, 170, 0) 0%,
    rgba(45, 106, 170, 1) 100%
  );
}

.card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 4px;
  padding: 50px 40px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

.image-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.content-logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin: 0 auto 25px auto;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  animation: float 3s ease-in-out infinite;
}

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

/* Right Content Section */
.content-side {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.content-wrapper {
  max-width: 500px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out;
}

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

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #2d6aaa, #3a86d2);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #ffffff;
}

h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #1a1a2e;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d6aaa;
  margin-bottom: 15px;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.intro {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Services Section */
.services-section {
  margin-bottom: 35px;
}

.services-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #555555;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.services-list li:hover {
  color: #1a1a2e;
  padding-left: 10px;
}

.bullet {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #2d6aaa, #3a86d2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  margin-bottom: 30px;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  border: 2px solid #2d6aaa;
  border-radius: 2px;
  color: #2d6aaa;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.email-btn svg {
  width: 20px;
  height: 20px;
}

.email-btn:hover {
  background: linear-gradient(135deg, #2d6aaa, #3a86d2);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(45, 106, 170, 0.3);
}

.thanks {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 40px;
  font-style: italic;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #f5f5f5;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  color: #888888;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: #2d6aaa;
  border-color: #2d6aaa;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .split-container {
    flex-direction: column;
  }

  .image-side {
    min-height: 40vh;
  }

  .content-side {
    padding: 50px 30px;
  }

  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .image-side {
    min-height: 35vh;
  }

  .logo-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    border-radius: 2px;
  }

  .content-side {
    padding: 40px 25px;
  }

  h1 {
    font-size: 2rem;
  }

  .intro {
    font-size: 0.95rem;
  }

  .email-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .social-links {
    justify-content: center;
  }
}
