:root {
  --primary-color: #01a3ff;
  --secondary-color: #00d9a5;
  --text-color: #333333;
  --bg-color: #ffffff;
  --light-gray: #f5f7fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase; /* Ensures uppercase for a bold look */
  transition: color 0.3s ease, transform 0.3s ease-in-out; /* Adds smooth transition and transform */
}

.logo:hover {
  transform: scale(1.1); /* Pop-out effect on hover */
}

.nav-links {
  display: flex;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  text-transform: uppercase; /* Ensures uppercase for consistency */
  font-size: 1.1rem; /* Slightly increase font size for better visibility */
  transition: color 0.3s ease, transform 0.3s ease-in-out; /* Adds smooth transition and transform */
}

.nav-links a:hover {
  color: var(--primary-color);
  transform: scale(1.1); /* Pop-out effect on hover */
}

.hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 10rem 0 6rem;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  position: relative;
  overflow: hidden;
  /* padding: 1rem; */
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 1rem;

  border: 3px solid var(--primary-color);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -60px auto 0;
  padding: 0 20px;
  position: relative; /* Allows z-index to take affect */
  z-index: 1;
}

.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  width: calc(33.333% - 20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.solutions {
  padding: 6rem 0;
  background-color: var(--light-gray);
}

.solution-section {
  margin-bottom: 4rem;
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.ai-cryptography {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  padding: 6rem 0;
  color: white;
  text-align: center;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  position: relative;
  overflow: hidden;
}

.benefits {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 3rem;
  text-shadow: 0 0 5px #000;
  -moz-text-shadow: 0 0 5px #000;
  -webkit-text-shadow: 0 0 5px #000;
}

.benefit {
  width: calc(50% - 30px);
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
}

.why-choose {
  padding: 6rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 3rem 0;
  margin-top: 13rem;
  /* border: 10px solid red; */
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

footer a {
  color: white;
  text-decoration: underline;
}

footer h3 {
  text-shadow: 0 0 5px #000;
  -moz-text-shadow: 0 0 5px #000;
  -webkit-text-shadow: 0 0 5px #000;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

.trust-animation {
  width: 100px;
  height: 100px;
  margin: 2rem auto;
  position: relative;
}

.trust-circle {
  width: 100%;
  height: 100%;
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  animation: growShrink 2s ease-in-out infinite;
}

.trust-checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes growShrink {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.industries-we-serve {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.industry-item {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .feature-card,
  .benefit {
    width: 100%;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }
}

.modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 20px;
  position: fixed;
  z-index: 12000;
  left: 0;
  top: 0;
  overflow: auto;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 500px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.modal-title {
  font-size: 24px;
  font-weight: 500;
  color: #0099cc;
}
.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}
.tabs {
  display: flex;
  margin-bottom: 20px;
}
.tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  background-color: #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s;
}
.tab.active {
  background-color: #0099cc;
  color: white;
}
.form-content {
  display: none;
}
.form-content.active {
  display: block;
}
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.sign-up-button {
  width: 100%;
  padding: 10px;
  background-color: #0099cc;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}
.sign-up-button:hover {
  background-color: #007399;
}
