/* General Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  top: 0;
  z-index: 1000;
}

.logo img {
  width: 85%;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.menu_items_block {
  display: flex;
  gap: 20px;
}

.menu_items a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.menu_items a:hover {
  color: #019ee2;
}

.schedule {
  background-color: #019ee2;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.schedule:hover {
  background-color: #017bb3;
}

/* Container About Section */

.half-about {
  width: 48%;
}

.name-of-office {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.company-type {
  color: #ffc107;
}

.about-office {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #555;
}

.sign-up-top {
  background-color: #019ee2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.sign-up-top:hover {
  background-color: #017bb3;
}

.team-image-place {
  background-color: #ddd;
  height: 300px;
  border-radius: 10px;
  background-image: url("../images/team.jpg");
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.team-image-place:hover {
  transform: scale(1.05);
}

/* Titles */
/* Types Section */
.title-of-1 {
  text-align: center;
  font-size: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.title-of-1.visible {
  opacity: 1;
  transform: translateY(0);
}

.title-of-2 {
  text-align: center;
  font-size: 2.5rem;
  color: #019ee2;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.title-of-2.visible {
  opacity: 1;
  transform: translateY(0);
}

#details-of-dev {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
}

.card-detail {
  width: 350px;
  height: 380px;
  border-radius: 20px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  position: relative;
  overflow: hidden;
}

.card-detail.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-detail:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-detail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;

  opacity: 0.8;
  transition: height 0.3s ease;
}

.card-detail:hover::before {
  opacity: 0.1;
}

.card-image {
  width: 110px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  margin-top: 30px;
  overflow: hidden;
}

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

.card-title {
  width: 100%;
  font-weight: bold;
  font-size: 23px;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

.card-text {
  width: 90%;
  margin: auto;
  color: rgb(146, 143, 143);
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}

/* Pricing Section */
/* Pricing Section */
.pricing-title {
  text-align: center;
  color: #019ee2;
  font-size: 3rem;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.pricing-title.visible {
  opacity: 1;
}

#pricing-main {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-card {
  width: 28%;
  height: 770px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  overflow: hidden;
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(135deg, #50d6ff, #019ee2); /* Yellow gradient */

  opacity: 0.8;
  transition: height 0.3s ease;
}

.pricing-card:hover::before {
  height: 800px;
  position: fixed;
  opacity: 0.1;
}

.pricing-card-title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #019ee2;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.pricing-card-price {
  text-align: center;
  font-size: 22px;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}

.pricing-card-price .pr {
  font-size: 33px;
  color: #019ee2;
  font-weight: bold;
  margin-left: 5px;
}

.pricing-card-content {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.content-detail {
  margin-left: 24px;
  margin-top: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}

.content-detail i {
  color: #019ee2;
  font-size: 20px;
}

.contact-conv {
  width: 90%;
  height: 40px;
  border-radius: 10px;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 20px;
  border: none;
  background: linear-gradient(90deg, #019ee2, #ffc107);
  background: linear-gradient(135deg, #50d6ff, #019ee2); /* Yellow gradient */

  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-conv:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */

/* Projects Section */
.projects-section {
  padding: 50px 20px;
  text-align: center;
}

.projects-title {
  font-size: 2.5rem;
  color: #019ee2;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.projects-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  padding-bottom: 0;
  padding-top: 30px;
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.project-image {
  width: 90%;
  height: 200px;
}

.project-content {
  padding: 20px;
  text-align: left;
}

.project-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #019ee2;
  margin-bottom: 10px;
}

.project-about {
  font-size: 1rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 20px;
}

.project-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #019ee2, #ffc107);
  background: linear-gradient(135deg, #50d6ff, #019ee2); /* Yellow gradient */

  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu_items_block {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
  }

  .menu_items_block.active {
    display: flex;
  }

  .container-about {
    flex-direction: column;
    gap: 40px;
  }

  .half-about {
    width: 100%;
  }

  .card-detail {
    width: 100%;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}


@media (max-width: 1306px) {
  .pricing-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    width: 90%;
  }
}

/* Responsive Styles */
@media (max-width: 1054px) {
  .card-detail {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .card-detail {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .card-detail {
    width: 90%;
  }
}

.conversition-main {
  width: 100%;
  height: 100vh;
  background-color: rgba(178, 178, 178, 0.447);
  position: fixed;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conversition-white{
  width: 520px;
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 30px;
  padding: 10px 10px;
}

.conversition-header{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
}

.close-conversition{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
}

.conversition-title{
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.label-conv{
  padding-left: 10px;
  margin-top: 5px;
}

.conv-inp{
  width: 95%;
  margin-left: 10px;
  margin-top: 3px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #019ee2;
  padding-left: 10px;

}

.conv-btn{
  width: 95%;
  margin-left: 10px;
  height: 40px;
  border-radius: 5px;
  margin-top: 15px;
  background-color: #019ee2;
  color: white;
  border: 1px solid white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-self: flex-start;
}

@media(max-width:550px){
  .conversition-white{
    width: 90%;
  }
}