body{
 
      
      
      
      /* background-image: url("image.png.png");*/
      background :radial-gradient(
          1200px 800px at 85% 60%,
          rgba(191, 106, 73, 0.45) 0%,
          rgba(122, 73, 191, 0.25) 35%,
          rgba(122, 73, 191, 0.12) 55%,
          rgba(122, 73, 191, 0) 70%
        ),
        radial-gradient(
          600px 600px at 10% 10%,
          rgba(255, 140, 90, 0.12) 0%,
          rgba(255, 140, 90, 0) 60%
        ),
        linear-gradient(
          180deg,
          #05030a 0%,
          #0a0614 40%,
          #120a22 100%
        );


}




  /* NAVBAR */
    .navbar { 
      position: absolute;
      top: 0;
      width: 93%;
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
    }

    .logo {
      font-size: 1.3rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo span {
      color: #ff9f6e;
    }

.home {

    color: #ffffff;
}



 nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 0;
  
 /* background: linear-gradient(90deg, #420454,#0e081d);*/
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

nav button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  transition: 0.3s;
}

nav ul:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  color: black;
  border-radius: 8px;
  display: none;
  animation: fadeIn 0.3s ease;
}

nav ul:hover .dropdown {
  display: block;
}

/* Dropdown items */
.dropdown li {
  padding: 10px 15px;
}

.dropdown li:hover {
  background: #efefef;
}

.dropdown a {
  text-decoration: none;
  font-size: 18px;
  color: black;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

    .btn-signup {
      /*background: #ffffff;*/
      color: #ffffff;
      padding: 0.5rem 1rem;
      border-radius: 0.6rem;
      font-weight: 50;
    }

    .btn-primary,
.btn-secondary {
    color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}


.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0b0b12;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-actions a {
    text-align: center;
  }
}




    .top-section {
    text-align: center;
    padding: 120px 20px;
}

.top-section h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f9f1f1;
}

.top-section p {
    font-size: 18px;
    color: #f9f1f1;
    max-width: 700px;
    margin: auto;
}

/* Pricing Title Section */
.pricing-title {
    text-align: center;
    padding: 80px 20px;
}

.pricing-title h2 {
    font-size: 50px;
    font-weight: 700;
    color: #efefef;
}
.pricing-title p{
    font-size: 18px;
    color: #f9f1f1;
    max-width: 700px;
    margin: auto;

}


.pricing-toggle {
    text-align: center;
}

.toggle {
    background: #d3d3d3;
    border-radius: 40px;
    display: inline-flex;
    overflow: hidden;
}

.toggle button {
    border: none;
    background: transparent;
    padding: 12px 40px;
    font-size: 20px;
    cursor: pointer;
    transition: .3s;
}

.toggle button.active {
    background: #000;
    color: #fff;
}

/* Content Style */
.tab-content {
    display: none;
    margin-top: 30px;
}

.tab-content.active {
    display: block;
}


/* Pricing Box Layout */
.pricing-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Single card style */
.pricing-card {
    background: #111;
    border-radius: 16px;
    padding: 35px;
    width: 300px;
    color: #fff;
    transition: .3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #fff;
}

/* Titles */
.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.pricing-card .sub {
    opacity: .7;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Price */
.price {
    font-size: 45px;
    margin-bottom: 20px;
}
.price span {
    font-size: 16px;
    opacity: .7;
}

/* Button */
.btn {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: .3s;
}
.btn:hover {
    opacity: .8;
}

/* Features */
.features {
    list-style: none;
    padding: 0;
}
.features li {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
}
.features li::before {
    content: "✔";
    color: #5efc8d;
}

/* Hidden before scroll view */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

/* When in view */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.plans-section{
    padding:80px 20px;
    text-align:center;
}

/* Heading */
.plans-heading{
  color: #efefef;
    font-size:3.5rem;
    font-weight:700;
    margin-bottom:15px;
}

.plans-heading span{
    background:linear-gradient(to right, #8f6dfc, #d88d67);
    -webkit-background-clip:text;
    color:transparent;
}

.plans-description{
  color: #efefef;
    font-size:1.1rem;
    opacity:0.7;
    margin-bottom:60px;
}

.user-table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.user-table td{
    padding: 8px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

.user-table input{
    width: 70px;
    padding: 6px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #aaa;
}
.user-table input:focus{
    border-color: #4a4aff;
}



footer {
    background: #0d0d1a;
    color: #fff;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-col p {
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #b4b4ff;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social a {
    display: block;
    margin: 6px 0;
    color: #b4b4ff;
    text-decoration: none;
    transition: .3s;
}

.social a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #2a2a3e;
    padding-top: 15px;
    color: #ccc;
}
.pricing-box {
    background: #111;
    padding: 25px;
    width: 260px;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    font-family: sans-serif;
}

.subtext { color: #bbb; margin-top: -10px; }

.plan-price { font-size: 35px; margin: 15px 0; }
.plan-price span { font-size: 17px; color: #888; }

.plan-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.plan-features li { margin: 8px 0; color: #ddd; }

/* -------- checkbox button -------- */

.select-btn {
    display: inline-block;
    cursor: pointer;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
    margin-top: 10px;
}

.select-btn input { display: none; }

/* When checked → button turns colored like selected */
.select-btn input:checked + span {
    background: #0f8cff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
}

/* Keep span block-like */
.select-btn span {
    display: inline-block;
}
  






.total-price{
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #333;         /* You can change color */
}
.total-price span{
    font-weight: bold;
    color: #007bff;      /* Color for the number */
}


.submit-btn{
    display:block;
    margin:15px auto;
    padding:10px 22px;
    background:#4a72ff;
    color:#fff;
    font-size:16px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#3651d6;
}

.result-msg{
    text-align:center;
    margin-top:10px;
    font-size:18px;
    font-weight:600;
    color:#1aa31a;
}

