* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* Navbar */

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  animation: slideOut 1s ease-in-out;
}

nav .logo {
  display: flex;
  gap: 10px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  transition: color 0.3s ease-in;
}

nav ul li a:hover {
  color: #9cff00;
}

.nav_btn {
  padding: 20px 35px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 20px;
  background-color: white;
  transition: all 0.5s;
}

.nav_btn:hover {
  transform: scale(1.05);
  background-color: #9cff00;
  color: white;
}

/* Hero Section */

.hero {
  display: flex;
  padding: 50px;
  animation: slideIn 1s ease-in-out;
  overflow: hidden;
}

.hero_content {
  justify-content: center;
}

.content_heading {
  font-size: 60px;
  font-weight: 500;
  padding: 20px;
}

.content_para {
  font-size: 25px;
  padding: 20px;
  line-height: 28px;
}

.content_btn {
  padding: 20px;
  margin: 20px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 20px;
  background-color: black;
  color: white;
  transition: all 0.5s;
}

.content_btn:hover {
  background-color: #9cff00;
  color: white;
  transform: scale(1.05);
}

/* Company Logos */

.logo_s {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  animation: opicity 0.8s ease;
  animation-timeline: view();
}

/* Services Message */

.services_message {
  display: flex;
  justify-content: flex-start;
  padding: 50px;
  animation: opicity 0.8s ease;
  animation-timeline: view();
}

.services_heading {
  font-size: 40px;
  font-weight: 500;
  padding: 7px;
  background-color: rgb(122, 200, 44);
  border-radius: 7px;
}

.services_para {
  font-size: 18px;
  padding: 20px;
  line-height: 100%;
}

/* Services */

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px;
}

.card {
  display: flex;
  width: 48%;
  padding: 40px;
  border-radius: 35px;
  border: 2px solid black;
  transition: 1.2s;
  position: relative;
  height: 250px;
  box-shadow: 0px 4px rgba(0, 0, 0, 1);
  animation: opicity 1.5s ease;
  animation-timeline: view();
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px rgba(0, 0, 0, 1);
}

.card .h2_green {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: rgb(122, 200, 44);
}

.card button {
  position: absolute;
  bottom: 30px;
  left: 30px;
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  font-size: 23px;
  background-color: rgb(249, 245, 252);
}

.arrow {
  border-radius: 50%;
  font-size: 25px;
}

.card img {
  position: absolute;
  top: 10px;
  right: 30px;
}

.card_gray {
  background-color: rgb(249, 245, 252);
}

.card_green {
  background-color: rgb(122, 200, 44);
}

.card_green button {
  background-color: rgb(122, 200, 44);
}

.card_green .h2_gray {
  background-color: white;
  position: absolute;
  top: 30px;
  left: 30px;
}

.card_black {
  background-color: black;
}

.card_black .h2_white {
  background-color: white;
  position: absolute;
  top: 30px;
  left: 30px;
  color: black;
}

.card_black .btn_black {
  background-color: black;
  color: white;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

/* CTA Block */

.cta_block {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  border-radius: 40px;
  margin: auto;
  background-color: rgb(249, 245, 252);
  animation: opicity 1s ease;
  transition: transform 0.3s ease;
}

.cta_block:hover {
  transform: scale(1.05);
}

.cta_block .cta_heading {
  font-size: 30px;
  font-weight: 500;
  padding: 20px;
}

.cta_block .cta_para {
  font-size: 18px;
  padding: 20px;
  line-height: 100%;
}

.cta_block .cta_btn {
  padding: 20px 35px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 20px;
  background-color: black;
  color: white;
  transition: 1.2s;
}

.cta_block .cta_btn:hover {
  background-color: #9cff00;
  color: black;
}

/* Case Studies Block */

.case_studies_block {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  border-radius: 45px;
  margin: auto;
  background-color: #191a23;
  padding: 70px 60px;
  gap: 60px;
  animation: opicity 1s ease;
  transition: transform 0.3s ease;
}

.case_studies_block:hover {
  transform: scale(1.05);
}

.case_studies_para {
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
  padding: 0 20px;
  font-weight: 400;
}

.case_studies_2 {
  border-right: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

.case_studies_btn_2 {
  margin-left: 20px;
}

.case_studies_btn {
  cursor: pointer;
  font-size: 20px;
  margin-top: 20px;
  background-color: #191a23;
  color: rgb(166, 239, 136);
  transition: 1.2s;
}

/* Process Block */

.process_block {
  justify-content: space-around;
  align-items: center;
  width: 90%;
  border-radius: 45px;
  margin: auto;
  padding: 70px 60px;
  gap: 60px;
}

.process_para {
  font-size: 18px;
  line-height: 100%;
  color: #191a23;
  padding: 0 20px;
  font-weight: 400;
}

.process_block_card {
  background-color: rgb(249, 245, 252);
  border-radius: 35px;
  margin-top: 30px;
  border: 2px solid black;
  transition: 1.2s;
  padding: 30px;
  box-shadow: 0px 3px rgba(0, 0, 0, 1);
  position: relative;
  animation: opicity 1s ease;
  transition: transform 0.3s ease;
}

.process_block_card:hover {
  transform: scale(1.05);
}

.process_block_card_1 {
  background-color: rgb(122, 200, 44);
  color: black;
  padding: 10px;
  border-radius: 35px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid black;
  transition: 1.2s;
  position: relative;
  box-shadow: 0px 3px rgba(0, 0, 0, 1);
}

.process_block_heading {
  font-size: 30px;
  font-weight: 500;
  padding: 40px;
  color: black;
}

.process_block_span {
  font-size: 60px;
}

.process_block_line {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e6f7e6;
  border: 2px solid #000;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: bold;
  position: absolute;
  top: 50px;
  right: 30px;
  transition: all 0.5s ease;
}

.process_block_line:hover {
  background-color: black;
  color: #e6f7e6;
}

.minus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e6f7e6;
  border: 2px solid #000;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  font-weight: bold;
  position: absolute;
  top: 50px;
  right: 30px;
}

.process_block_para {
  font-size: 18px;
  line-height: 100%;
  color: #191a23;
  padding: 30px;
  font-weight: 400;
}

/* Group of Cards */

.group_of_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.group_of_card {
  border: 2px solid black;
  border-radius: 35px;
  width: 29%;
  transition: 1.2s;
  background-color: rgb(249, 245, 252);
  box-shadow: 0px 3px rgba(0, 0, 0, 1);
  animation: opicity 1s ease;
  transition: transform 0.5s ease;
}

.group_of_card:hover {
  transform: scale(1.05);
}

.group_of_card img {
  width: 20%;
  margin-top: 10px;
  margin-left: 10px;
}

.group_of_card_name {
  display: inline-block;
  font-size: 18px;
  padding: 20px;
  position: relative;
}

.linkedin {
  position: absolute;
  top: 5px;
  right: 1px;
  font-size: 30px;
  color: black;
}

.group_of_card_para {
  font-size: 16px;
  padding: 20px;
  line-height: 100%;
}

/* Testimonial Block */

.testimonial_block {
  margin: auto;
  background: #11131f;
  width: 90%;
  max-width: 1000px;
  border-radius: 20px;
  padding: 60px 40px;
  color: white;
  animation: opacity 0.3s ease;
  transition: transform 0.5s ease;
}

.testimonial_block:hover {
  transform: scale(1.05);
}

.testimonial_cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.testimonial_card {
  border: 1px solid #9cff00;
  border-radius: 20px;
  padding: 25px;
  width: 30%;
  position: relative;
  opacity: 0.4;
}

.testimonial_card.active {
  opacity: 1;
}

.testimonial_card p {
  font-size: 14px;
  line-height: 1.6;
}

.arrow_down {
  width: 20px;
  height: 20px;
  background: #11131f;
  border-left: 1px solid #9cff00;
  border-bottom: 1px solid #9cff00;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -10px;
  left: 40px;
}

.testimonial_card h3 {
  margin-top: 30px;
  color: #9cff00;
  font-size: 16px;
}

.testimonial_card p {
  font-size: 12px;
  color: #aaa;
}

.controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.arrow {
  font-size: 20px;
  cursor: pointer;
  color: #ccc;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
}

.dot.active {
  background: #9cff00;
}

/* Contact Block */

.contact_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  border-radius: 45px;
  margin: auto;
  background-color: rgb(249, 245, 252);
  padding: 70px 60px;
  gap: 60px;
  animation: opacity 0.3s ease;
  transition: transform 0.5s ease;
}

.contact_block:hover {
  transform: scale(1.05);
}

.radio_options {
  display: flex;
  gap: 40px;
}

input[type="radio"] {
  font-size: 18px;
  accent-color: rgb(122, 200, 44);
}

.form_field {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.form_field label {
  font-weight: 500;
}

.form_field input,
.form_field textarea {
  width: 500px;
  padding: 18px 30px;
  border: 1px solid #000;
  border-radius: 14px;
  font-size: 16px;
  background: white;
  transition: transform 0.5s ease;
}

.form_field input:hover,
.form_field textarea:hover {
  transform: scale(1.05);
}

.block_illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.block_illustration img {
  width: 70%;
}

.submit_btn {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  background-color: #191a23;
  padding: 20px;
  border-radius: 20px;
  color: white;
  transition: all 0.5s ease;
}

.submit_btn:hover {
  background-color: #9cff00;
  transform: scale(1.05);
}

/* Footer */

footer {
  width: 90%;
  color: #aaa;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  margin: auto;
  background-color: #191a23;
  padding: 70px 60px;
  gap: 60px;
  animation: opacity 0.3s ease;
  transition: transform 0.5s ease;
}

footer:hover {
  transform: scale(1.05);
}

.footer_navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_navbar .footer_logo {
  display: flex;
  color: white;
  gap: 10px;
}

.footer_navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer_navbar ul a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: all 0.5s ease;
}

.footer_navbar ul a:hover {
  color: #9cff00;
}

.socials_icon i {
  width: 40px;
  border-radius: 10px;
  height: 40px;
  font-size: 20px;
  color: white;
}

.socials_icon i:hover {
  color: #9cff00;
}

.footer_frame {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.footer_contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.footer_contact_h2 {
  background-color: #9cff00;
  padding: 10px;
  border-radius: 30px;
  font-size: 32px;
  text-align: center;
  color: #000;
}

.footer_contact p {
  font-size: 16px;
  line-height: 1.6;
}

.subscription_block {
  display: flex;
  gap: 20px;
  background-color: #11131f;
  padding: 20px;
  border-radius: 30px;
}

.subscription_block input {
  padding: 25px;
  width: 400px;
  border: 2px solid white;
  color: white;
  background-color: #11131f;
  border-radius: 10px;
  font-size: 18px;
  transition: transform 0.5s ease;
}

.subscription_block input:hover {
  transform: scale(1.05);
}

.subscription_block input::placeholder {
  color: #ccc;
  font-size: 18px;
}

.subscription_block button {
  padding: 20px;
  border-radius: 10px;
  border: 2px solid white;
  background-color: #9cff00;
  color: black;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.subscription_block button:hover {
  transform: scale(1.05);
  background-color: white;
  color: #9cff00;
}

hr {
  margin-top: 50px;
}

.privacy {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  transition: all 0.5s ease;
}

.privacy:hover {
  color: #9cff00;
}

/* Animations */

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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