* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: white;
  font-family: "Poppins", sans-serif;
  color: black;
  padding: 10px;
}

.navbar {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 10;
  background: rgba(236, 250, 229, 0.1);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
}

.navbar-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-title {
  font-size: 1.8rem;
  font-weight: bold;

  position: relative;
}

.navbar-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0%;
  background: #333;
  transition: width 0.3s ease;
}

.navbar-title:hover::after {
  width: 100%;
}

.navbar-links {
  display: flex;
  gap: 2rem;
}

.navbar-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  position: relative;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background: #333;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(236, 250, 229, 0.95);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.head1 {
  text-align: left;
  margin-top: 50px;
}

.head1 h1 {
  margin: 0;
}
.head1 span {
  color: orangered;
}

.head1 h1:nth-child(3) {
  position: relative;
  font-family: "Gloria Hallelujah", cursive;
  top: -15px;
  margin-bottom: 20px;
}

.imgcnt1 {
  position: relative;
  height: 280px;
}

/* These should be separate blocks */
.imgcnt1 img:nth-child(1) {
  position: absolute;
  right: 0;
  height: 280px;
  width: auto;
}

.imgcnt1 img:nth-child(2) {
  position: absolute;
  left: 0;
  height: 250px;
  width: auto;
}

.head2{
    font-weight: 100;
}
.head2 p{
    text-align: right;
    font-size: 1.5em;
    font-weight: 400;
}
.head2 p:nth-child(2){
    position: relative;
    font-size: 1.5em;
    top: -20px;
    font-family: "Gloria Hallelujah", cursive;
}
.head2 span{
    color: orangered;
    text-decoration: underline;
}
.head2 img{
    position: relative;
    left: 200px;
    height: 100px;
    width: auto;
    rotate: 160deg;
}
.head2 button{
  cursor: pointer;
    position: relative;
    background-color: black;
    border: none;
    padding: 20px 30px;
    color: white;
    right: 130px;
    top: -30px;
    font-size: 1em;
    border-radius: 15px;
}

.grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
    }

    .card:nth-child(1) {
      position: relative;
      text-align: right;
      padding: 10px;
      height: 100px;
      h1{
        font-weight: 500;
      }
      p{
        font-family: "Gloria Hallelujah", cursive;
        font-weight: 300;

      }
      span{
        height: 50px;
        width: 70px;
        position: absolute;
        bottom: 0;
        left: 0;
        border-bottom-left-radius: 12px;
        border-top-right-radius: 40px;
        background-color: white;
        display: flex;
        justify-content: center;
      }
    }
    .card {
      height: 250px;
      border-radius: 12px;

      padding: 20px;
      background-color: #c3eafe; /* red */
    }

    .card div{
      padding: 10px;
      position: relative;
      display: flex;
      align-items: center;
      
      height: 80%;
      width: 100%;
      margin-top: 10px;
      border-radius: 10px;
      
      

      p{
        font-weight: 400;
        width: 75%;
        text-align: justify;
      }


      span{
        height: 50px;
        width: 70px;
        z-index: 2;
        border: black 1px solid;
        background-color: black;
        
        position: absolute;
        top: -1px;
        right: -1px;
        
        
        
        display: flex;
        justify-content: center;
        align-items: center;
        a{
          font-style: normal;
          text-decoration: none;
          color: orange;
          
           font-family: "Gloria Hallelujah", cursive;
          font-weight: bold;
        }
      }
    }

    .card:nth-child(2n) {
      border: 1px solid black;
      background-color: white; /* blue */
      
    }

    .card:nth-child(3n) {
      border: 1px solid black;
      background-color: white; /* green */
      
    }

    .yellow-grid {
      display: grid;
      
      text-align: center;
      
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .yellow-card-1,
    .yellow-card-2,
    .yellow-card-3,
    .yellow-card-4 {
      position: relative;
      height: 150px;
      
      border: black 1px solid;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: bold;

      p{
        font-family: "Gloria Hallelujah", cursive;
      }
      span{
        position: absolute;
        height: 40px;
        width: 40px;
        padding: 5px;
        
        bottom: 0;
        right: 0;
      }
      
    }

    .head3 {
  text-align: right;
  margin-top: 100px;
}

.head3 h1 {
  margin: 0;
}
.head3 a{
  cursor: pointer;
  color: black;
  text-decoration: none;
  transition: all 0.5s ease;
}
.head3 a:hover{
  text-decoration: underline;
}
.head3 span {
  color: rgb(255, 0, 93);
  font-style: italic;
}

.head3 h1:nth-child(3) {
  position: relative;
  font-family: "Gloria Hallelujah", cursive;
  top: -15px;
  margin-bottom: 20px;
}

.imgcnt3 {
  position: relative;
  height: 280px;
}

/* These should be separate blocks */
.imgcnt3 img:nth-child(1) {
  position: absolute;
  margin-top: 50px;
  left: 0;
  border: 5px solid black;
  border-radius: 15px;
  height: 160px;
  width: auto;
}

.imgcnt3 img:nth-child(2) {
  position: absolute;
  right: 0;
  border: 2px solid black;
  border-radius: 15px;
  margin-top: 30px;
  height: 250px;
  width: auto;
}

.plans-container {
  margin-top: 50px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      max-width: 600px;
      width: 100%;

      
    }

    .plan-card {
      border: 1px solid black;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      padding: 30px;
      transition: all 0.2s ease;
    }

    .plan-card:hover {
      background-color: #ddff95;
      transform: translateY(-5px);
    }

    .plan-title {
      font-size: 1.5rem;
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
    }

    .price {
      font-size: 1.2rem;
      color: #00aaff;
      margin-bottom: 20px;
    }

    .features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .features li {
      margin-bottom: 10px;
      color: #555;
      position: relative;
      padding-left: 20px;
    }

    .features li::before {
      content: "✔";
      color: #00aa88;
      position: absolute;
      left: 0;
    }
.footer {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -10px;
  background: #101010;
  color: #fff;
  padding: 40px 20px 20px;
  
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}
.footer-section h2{
  text-align: left;
}
.footer-section h2,
.footer-section h3 {
  margin-bottom: 10px;
  
}

.footer-section p,
.footer-section ul {
  margin: 0;
  font-size: 20px;
  color: #ccc;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}