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

  body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  background-size: cover;
    background-position: center;    

  
  }


  header {
    text-align: center;
    margin-bottom: 50px;
    
  }

  #buy{
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;      
    background-color: #073ba1;
    color: rgb(255, 255, 255);
    margin-bottom:40px; 
    text-decoration: none;
    border: 1px, solid, #073ba1;
    font-size: 1rem;
    transition: transform 0.6s ease ;
  }
  #buy:hover {
    background-color: #ffffff;
    color: #073ba1  ; 
    transform: scale(1.05) ;
  }
  
  header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
  }
  
  
  .phases { 
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    width: 90%;
    max-width: 1200px;
    margin-bottom: 80px;
    gap: 30px;
  }
  
  .phase {
    background-color:  rgba(212, 212, 212, 0.26);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
  }
  .phase:hover{
    transform: scale(1.05);
 
  }
  .phase h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
  }
  
  .phase p {
    font-size: .8rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .phase ul {
    list-style-type: none;
    text-align: left;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  
  .phase ul li {
    font-size: .8rem;
    margin-bottom: 10px;
  }
  
  .phase ul li strong {
    color: #000;
  }
  
  .phase em {
    color: #777;
    font-size: 0.7rem;
    display: block;
  }
  
  @media (max-width: 768px) {
    .phases {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  .steps-container {
    display: flex;  
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
  }
  
  .step:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
  
  .step {
    background-color: rgba(212, 212, 212, 0.26);
    padding: 20px;
    flex-direction: column;
    border-radius: 8px;
    width: 250px;  /* Fixed width */
    height: 200px; /* Fixed height */
    text-align: center;
    display: flex;  /* Use flex for centering */
    justify-content: center;  /* Center horizontally */
    align-items: center;  /* Center vertically */
  }
  
  .arrow img {
    height: 30px;
    width: auto;
  }
  #how{
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-top: 100px;
    margin-bottom: 30px;
  }


  /* General styles remain the same */

@media (max-width: 768px) {
    .steps-container {
      flex-direction: column;
      gap: 10px; /* Adjust gap for mobile */
    }
  
    .step {
      width: 100%; /* Full width on mobile */
      height: auto; /* Auto height for dynamic content */
      padding: 15px; /* Adjust padding */
    }
  
    .arrow img {
      display: none; /* Hide arrows on mobile for better flow */
    }
  
    .phases {
      flex-direction: column; /* Stack phases vertically */
      gap: 20px;
    }
  
    .phase {
      width: 100%; /* Full width on mobile */
      padding: 20px;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem; /* Smaller heading */
    }
  
    .step h3 {
      font-size: 1.2rem; /* Adjust font size */
    }
  
    .step p {
      font-size: 0.9rem; /* Adjust font size */
    }
  
    .phase h2 {
      font-size: 1rem;
    }
  
    .phase p, .phase ul li {
      font-size: 0.8rem; /* Smaller text for mobile */
    }
  }


  


  .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background:  #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 0, 0, 0.034);
  z-index: 100;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.4),
    transparent
  );
  transition: 0.5s;
}
.header:hover::before {
  left: 100%;
}
.logo {
  color: #000000;
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
}
.navbar a {
  color: #000000;
  font-size: 18px;
  text-decoration: none;
  margin-left: 35px;
  transition: 0.3s;
}
.navbar a:hover {
  color: rgba(73, 73, 73, 0.726);
}
#menu-icon {
  font-size: 30px;
  color: #000000;
  display: none;
}
/* BREAKPOINTS */
@media (max-width: 992px) {
  .header {
    padding: 1.25rem 4%;
  }
}
@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }
  body{
    margin-top: 80px;
  }
  .navbar {
    position: absolute; 
    top: 100%;
    left: 0;
    margin-bottom: 50px;
    width: 100%;
    padding: 0.5rem 4%;
    display: none;
  }
  .navbar.active {
    display: block;
    background: #ffffff;
  } 
  .navbar a {
    display: block;
    margin: 1.5rem 0;
  }
  .nav-bg {
    position: absolute;
    top: 79px;
    left: 0;
    width: 100%;
    height: 295px;
    background: #ffffff;
    border-bottom: 2px solid  rgba(0, 0, 0, 0.034);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: none;
  }
  .nav-bg.active {
    display: block;
  }
}


footer {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 80px;
  background-color:  rgba(212, 212, 212, 0.26);
  border-radius: 10px;
 
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 20px;
  margin: 0 auto;
  padding: 0 12px;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  
  text-align: start;
}

.wrapper .footer-widget {
  width: calc(20% - 30px);
  margin: 0 15px 50px;
  padding: 0 12px;
}

.wrapper .footer-widget:nth-child(1) {    
  width: calc(40% - 50px);
  margin-right: 15px;
}

.wrapper .footer-widget .logo {
  margin-bottom: 30px;
  vertical-align: middle;
}

.wrapper .footer-widget p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 24px;
}

.wrapper .footer-widget .socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wrapper .footer-widget .socials li {
  list-style: none;
}

.wrapper .footer-widget .socials li a {
  width: 44px;
  height: 44px; 
  margin-right: 10px;
  color: #ffffff;
  background-color: #052a4d;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .socials li a:hover {
  background-color: #052a4d;
}

.wrapper .footer-widget h6 {
  color: #000000;
  margin: 10px 0 35px;
  font-size: 20px;
  font-weight: 600;
}

.wrapper .footer-widget .links li {
  list-style: none;
}

.wrapper .footer-widget .links li a {
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  text-transform: capitalize;
  line-height: 32px;
  transition: all 0.3s ease-out;
}

.wrapper .footer-widget .links li a:hover {
  color: #052a4d;
}

.copyright-wrapper {
  padding: 20px 0;
  border-top: 1px solid rgba(88, 89, 120, 0.4);
}

.copyright-wrapper p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.copyright-wrapper p a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.copyright-wrapper p a:hover {
  color: #052a4d;
}

/* Let's write the media query */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }

  .wrapper .footer-widget,
  .wrapper .footer-widget:nth-child(1) {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }

  .wrapper .footer-widget,
  .wrapper .footer-widget:nth-child(1) {
    width: 100%;
    margin: 0 10px 50px;
  }
}
  


