
html{
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk";
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  
  background-size: 100% 10vh;
}
header {

  padding: 1rem;
  border-bottom: 1px solid #e6e8eb;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.blog-class{
  
}
.nav-toggle {
  display: none;
  cursor: pointer;
}


.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.nav-links {
  display: flex;
  align-items: center;
  margin: 0rem 1rem;
  font-weight: 500;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
}


.btn {
  text-transform: none;
  font-family: "Space Grotesk";
  color: #fff;
  font-size: 1rem;
  background: #000;
  border-radius: 5px;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  font-weight: bold;
}

.clickable:hover {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: scale(1.05);
  opacity: 0.9;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Animate hamburger icon on click */
.nav-toggle.open .hamburger {
  background-color: transparent;
}

.nav-toggle.open .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Features Section */

/* section {
  margin-Bottom: 5vh;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

section.animate {
  opacity: 1;
  transform: translateY(0);
} */

.feature-list {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.feature {
  text-align: left;
  width: 100%;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: flex-end;
  height: 40vh;

  background-size: cover;
  border-radius: 10px;
  padding: 3rem 3rem;
  margin-bottom: 5rem;


}



section h1 {
  font-size: 3rem;

}

.banner h1 {
  text-align: left;
  font-size: 3rem;
  text-align: center;
}

.detaillong {
  visibility: collapse;
  height: 0;
}

.card {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 1rem 0rem;
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; gap:0.5rem;
}
.card img{
  border-radius: 10px;
}
.card h3{
  margin:0;
}
.card p{
  margin:0;
  color: #828282;
  font-size: 13px;
  text-align: center;
}
.pricingelement {
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  padding: 1rem 1rem;
  justify-content: center;
  border-radius: 8px;
  gap: 1rem;
  text-align: left;
}
.pricingelement h2{
  font-size: 1.5rem;
 margin: 0rem;
}
.pricingelement h4{
  font-size: 1rem;
  margin: 0rem;
 }
 .pricingelement p{
  margin:0;
  color: #828282;
  font-size: 13px;
  
}
footer{
  background-color: #000000;
  margin-Bottom: 0;
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p{
  color: #fff;
 
 margin:0;
}
@media (max-width: 768px) {
 
  .detaillong {
    visibility: visible;
    width: 100%;
    height: auto;
  }

  .detail {
    visibility: collapse;
    height: 0;
  }

  main {

    max-width: 90vw;
    padding: 0 1rem;
  }



  .nav-toggle {
    display: flex;
    background-color: #fff;
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
  }

  .nav-links {
    margin: 0rem;
    position: fixed;
    top: 0;
    left: -250px;
    /* Start offscreen */
    width: 0;
    height: 100vh;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    z-index: 1000;
  }

  .nav-links.open {
    left: 0;
    /* Slide in when open */
    transition: left 0.3s ease-in-out;
    width: 250px;
  }

  .nav-links a {
    margin: 0.5rem 0;
  }

  section h1 {
    font-size: 2rem;

  }

  .banner h1 {
    font-size: 2rem;
    margin: 1rem 0;
  }
  footer p{
    color: #fff;
    font-size: 12px;
   margin:0;
  }
}