.navbar {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
  }

  .navbar-nav .nav-link {
    margin-right: 15px;
    color: #000;
    font-weight: 500;
  }

  .navbar-nav .nav-link:hover {
    color: #ffbf00;
  }

  .profile-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  /* Subscription Header Section */
  .subscription-header {
    margin-top: 30px;
    border-radius: 15px;
    background:linear-gradient(82.48deg, #E16409 22.1%, #DBC500 85.53%);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  .subscription-header h2 {
    color: white;
    font-size: 25px;
    font-weight: bold;
    background-color: linear-gradient( #939393 100%, #C3C602 100%);
  }

  /* Package Cards */
  .package-card {
    position: relative;
    padding: 27px 19px;
    margin: 15px 0;
    border-radius: 10px;
    text-align: left; /* Aligns text elements to the left */
    display: flex;
    flex-direction: column;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(45deg, #939393, #c3c602) border-box;
    border: 1px solid transparent;
    border-radius: 15px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 12px 25px rgba(0, 0, 0, 0.10);
    border: 1px solid transparent;
    background-image: linear-gradient(#fff, #fff), 
                      linear-gradient(45deg, #b5b5b5, #d4d400);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background-color: #f3edb4;
  }
  .package-card:hover {
    transform: scale(1.05); /* Slight zoom */
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.20);
    }

    /* Optional Click Zoom-Out Effect */
    .package-card:active {
        transform: scale(0.97);
    }
      
  .package-card h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 13px;
  }

  .package-card p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #666;
  }

  .package-card h6 {
    margin-top: 2px;
    font-size: 15px !important;
  }
    .price-tag {
    text-align: center;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 8px;
    margin-left: 8px;
    font-size: 33px;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
    }
    .package-card p {
        position: relative;
        padding-left: 18px;  /* space for bullet */
        margin: 5px 0;
    }

    .package-card p::before {
        content: "✦";   /* asterisk/star bullet */
        position: absolute;
        left: 0;
        top: 0;
        color: #c3c602;  /* golden shade to match your card border */
        font-size: 13px;
        line-height: 1.4;
    }
    .validity{
      font-size: 13px;
      color: #666;
    }
    
    .premium-tagline {
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        color: #444;
        margin-top: 50px !important;
        padding: 15px 20px;
        border-radius: 10px;
        background: #f8f8f8;
        border-left: 5px solid #c3c602; /* golden highlight */
        display: inline-block;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        font-family: 'Poppins', sans-serif;
    }

 .choose-plan-btn {
    margin-top: 30px;
    align-self: center;
    background-color: #AC9C09;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
  }

  .choose-plan-btn:hover {
    background-color: #e6a800;
  }

  /* Footer Section */
  .footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
  }

  .footer a {
    color: #fff;
    text-decoration: none;
  }

  .footer a:hover {
    color: #ffbf00;
  }

  .footer h5 {
    color: #ffbf00;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .footer p {
    color: #999;
  }
  .collapse{
    justify-content: flex-end;
  }
  .mb-5{
    margin-top: 45px;
  }
  .footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
  }
  .fab{
    margin-right: 10px;
  }



  .title-btn{
    display: flex;
    justify-content: space-between;
  }
  .popup-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Make sure it's on top of other content */
    background-color: white;
    border-radius: 36px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 350px;
    max-width: 90%;
}
.popup-form input,
.popup-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #fff;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #ececec;
}
.popup-form button {
  width: 60%;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  float:right;
  margin-top: 11px;
}
.remind {
  width: 20%;
  padding: 10px;
  background-color: #E16409 ;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  float:right;

}
.remind:focus {
  background-color: #DBC500;
}
.blur {
  filter: blur(5px); /* Adjust the value for more or less blur */
  pointer-events: none; /* Prevent interaction with the blurred elements */
  transition: filter 0.3s ease; /* Smooth transition for blur effect */
}
.sub-para{
  font-size: 13px !important;
}
.list-premium{
  font-size: 13px;
}



