* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #0f0f14;
    color: #ffffff;
    line-height: 1.6;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #161621;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #f7c873;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #f7c873;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background-image: url("images/herobgchakragyaan.png");
    background-size: cover;
    background-position: center;
  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* 👈 yaha adjust kar */
  }
  .hero-content {
    max-width: 700px;
    z-index: 2; 
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #f7c873;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn {
    background: #f7c873;
    color: #111;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #ffdb93;
  }
  
  .btn-outline {
    background: transparent;
    color: #f7c873;
    border: 2px solid #f7c873;
  }
  
  .btn-outline:hover {
    background: #f7c873;
    color: #111;
  }
  
  .btn-small {
    padding: 10px 18px;
  }
  
  .services,
  .packages,
  .contact {
    padding: 70px 30px;
    text-align: center;
  }
  
  .services h2,
  .packages h2,
  .contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #f7c873;
  }
  
  .card-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .card,
  .pricing-card {
    background: #1b1b2a;
    padding: 25px;
    border-radius: 14px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s;
  }
  
  .card:hover,
  .pricing-card:hover {
    transform: translateY(-6px);
  }
  
  .card h3,
  .pricing-card h3 {
    margin-bottom: 15px;
    color: #f7c873;
  }
  
  .price {
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0;
  }
  
  .pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .pricing-card ul li {
    margin: 8px 0;
    color: #ddd;
  }
  
  .featured {
    border: 2px solid #f7c873;
  }
  
  .contact p {
    margin-bottom: 20px;
    color: #ddd;
  }
  .logo img{
    width:120px;
    height:100px;
  }
  .auth-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #090b17, #15162b, #201634);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
  }
  
  .auth-container {
    width: 100%;
    max-width: 1100px;
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(20, 20, 35, 0.92);
    border: 1px solid rgba(247, 200, 115, 0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }
  
  .auth-left {
    padding: 50px 40px;
    background: linear-gradient(rgba(8, 10, 22, 0.75), rgba(8, 10, 22, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .auth-logo {
    width: 140px;
    margin-bottom: 20px;
    border-radius: 16px;
  }
  
  .auth-left h1 {
    font-size: 44px;
    color: #f7c873;
    margin-bottom: 10px;
  }
  
  .auth-left p {
    font-size: 20px;
    color: #7ac6ff;
    margin-bottom: 20px;
  }
  
  .auth-tagline {
    color: #ddd;
    font-size: 16px;
    max-width: 420px;
    line-height: 1.8;
  }
  
  .auth-right {
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .form-box {
    width: 100%;
    max-width: 420px;
  }
  
  .form-toggle {
    display: flex;
    background: #101224;
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 28px;
  }
  
  .toggle-btn {
    flex: 1;
    background: transparent;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .toggle-btn.active {
    background: #f7c873;
    color: #111;
  }
  
  .auth-form {
    display: none;
    animation: fadeIn 0.35s ease;
  }
  
  .auth-form.active-form {
    display: block;
  }
  
  .auth-form h2 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #f7c873;
  }
  
  .input-group {
    margin-bottom: 18px;
  }
  
  .input-group label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 14px;
  }
  
  .input-group input {
    width: 100%;
    padding: 14px 14px;
    border-radius: 10px;
    border: 1px solid #2d3152;
    background: #0d1020;
    color: #fff;
    outline: none;
    font-size: 15px;
  }
  
  .input-group input:focus {
    border-color: #f7c873;
    box-shadow: 0 0 0 3px rgba(247, 200, 115, 0.12);
  }
  
  .auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .remember-me {
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .forgot-link {
    color: #7ac6ff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .auth-btn {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    font-size: 16px;
  }
  
  .form-switch-text {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
    font-size: 14px;
  }
  
  .form-switch-text span {
    color: #f7c873;
    cursor: pointer;
    font-weight: bold;
  }
  
  .auth-message {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    min-height: 20px;
    color: #7affae;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 900px) {
    .auth-container {
      grid-template-columns: 1fr;
    }
  
    .auth-left {
      align-items: center;
      text-align: center;
      padding: 40px 25px 20px;
    }
  
    .auth-tagline {
      max-width: 100%;
    }
  
    .auth-right {
      padding: 20px 20px 35px;
    }
  }
  .booking-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #090b17, #12172d, #1c1430);
    color: #fff;
  }
  
  .booking-section {
    padding: 50px 20px;
  }
  
  .booking-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.2fr;
    gap: 30px;
    align-items: start;
  }
  
  .booking-left,
  .booking-right {
    background: rgba(20, 20, 35, 0.92);
    border: 1px solid rgba(247, 200, 115, 0.12);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }
  
  .booking-logo {
    width: 120px;
    border-radius: 16px;
    margin-bottom: 18px;
  }
  
  .booking-left h1 {
    font-size: 38px;
    color: #f7c873;
    margin-bottom: 12px;
  }
  
  .booking-left p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  
  .booking-info-card {
    background: #101224;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(122, 198, 255, 0.14);
  }
  
  .booking-info-card h3 {
    color: #7ac6ff;
    margin-bottom: 15px;
    font-size: 22px;
  }
  
  .booking-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .booking-info-card li {
    color: #ddd;
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
  }
  
  .booking-info-card li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #f7c873;
  }
  
  .booking-form h2 {
    color: #f7c873;
    font-size: 30px;
    margin-bottom: 25px;
  }
  
  .booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .booking-form .input-group {
    margin-bottom: 18px;
  }
  
  .booking-form label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 14px;
  }
  
  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid #2d3152;
    background: #0d1020;
    color: #fff;
    outline: none;
    font-size: 15px;
    resize: vertical;
  }
  
  .booking-form input:focus,
  .booking-form select:focus,
  .booking-form textarea:focus {
    border-color: #f7c873;
    box-shadow: 0 0 0 3px rgba(247, 200, 115, 0.12);
  }
  
  .booking-summary {
    background: #101224;
    border: 1px solid rgba(247, 200, 115, 0.12);
    border-radius: 16px;
    padding: 18px 20px;
    margin: 12px 0 20px;
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    color: #ddd;
  }
  
  .summary-row:last-child {
    margin-bottom: 0;
  }
  
  .summary-row strong {
    color: #f7c873;
  }
  
  .booking-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
  
  .booking-message {
    margin-top: 18px;
    min-height: 22px;
    text-align: center;
    color: #7affae;
    font-size: 14px;
  }
  
  @media (max-width: 1000px) {
    .booking-wrapper {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 700px) {
    .booking-grid {
      grid-template-columns: 1fr;
    }
  
    .booking-left h1 {
      font-size: 30px;
    }
  
    .booking-form h2 {
      font-size: 26px;
    }
  }
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 26px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
  }
  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
  .footer {
    text-align: center;
    padding: 20px;
    background: #161621;
    color: #bbb;
  }.kundli-section {
    min-height: 100vh;
    padding: 80px 20px;
    background:
      linear-gradient(rgba(15, 15, 20, 0.88), rgba(15, 15, 20, 0.92)),
      url("images/herobgchakragyaan.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .kundli-container {
    width: 100%;
    max-width: 1100px;
    text-align: center;
  }
  
  .kundli-container h1 {
    font-size: 42px;
    color: #f7c873;
    margin-bottom: 12px;
  }
  
  .kundli-container p {
    color: #ddd;
    font-size: 17px;
    margin-bottom: 40px;
  }
  
  .kundli-card {
    background: #1b1b2a;
    border: 1px solid rgba(247, 200, 115, 0.15);
    border-radius: 18px;
    padding: 40px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  }
  
  .kundli-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  
  .input-box {
    position: relative;
    text-align: left;
  }
  
  .input-box label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
  }
  
  .input-box input,
  .input-box select,
  .input-box textarea {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid #2d3152;
    background: #0d1020;
    color: #fff;
    outline: none;
    font-size: 15px;
  }
  
  .input-box input:focus,
  .input-box select:focus,
  .input-box textarea:focus {
    border-color: #f7c873;
    box-shadow: 0 0 0 3px rgba(247, 200, 115, 0.12);
  }
  
  .kundli-btn {
    margin-top: 28px;
    background: #f7c873;
    color: #111;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
  }
  
  .kundli-btn:hover {
    background: #ffdb93;
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .kundli-grid {
      grid-template-columns: 1fr;
    }
  
    .kundli-card {
      padding: 25px;
    }
  
    .kundli-container h1 {
      font-size: 32px;
    }
  }
  
  /* Floating input style */
  .input-box {
    position: relative;
  }
  
  .input-box input {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #2a2f55;
    background: transparent;
    color: white;
    font-size: 14px;
    outline: none;
  }
  
  .input-box {
    text-align: left;
  }
  
  .input-box label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
    position: static;
    transform: none;
  }
  
  .input-box input {
    width: 100%;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid #2d3152;
    background: #0d1020;
    color: #fff;
    outline: none;
    font-size: 15px;
  }
  
  .input-box input:focus {
    border-color: #f7c873;
    box-shadow: 0 0 10px rgba(247, 200, 115, 0.3);
  }
  
  /* Button */
  .kundli-btn {
    margin-top: 30px;
    padding: 14px 30px;
    background: linear-gradient(45deg, #f7c873, #ffdb93);
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .kundli-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(247, 200, 115, 0.6);
  }
  
  /* Mobile */
  @media (max-width: 700px) {
    .kundli-grid {
      grid-template-columns: 1fr;
    }
  }
  .card-link {
    text-decoration: none;
    color: inherit;
  }
  .card-link:hover .card {
    transform: translateY(-8px) scale(1.02);
    cursor: pointer;
  }
  
  .kundli-result {
    margin-top: 35px;
    background: #1b1b2a;
    border: 1px solid rgba(247, 200, 115, 0.15);
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  }
  
  .kundli-result h2 {
    text-align: center;
    color: #f7c873;
    margin-bottom: 24px;
    font-size: 30px;
  }
  
  .kundli-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
  }
  
  .result-card {
    background: #101224;
    border: 1px solid #2d3152;
    border-radius: 14px;
    padding: 18px;
    color: #ddd;
    text-align: center;
  }
  
  .result-card strong {
    color: #f7c873;
  }
  
  .result-detail-card {
    background: #101224;
    border: 1px solid #2d3152;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 16px;
  }
  
  .result-detail-card h3 {
    color: #f7c873;
    margin-bottom: 8px;
  }
  
  .result-detail-card p {
    color: #ddd;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .kundli-result-grid {
      grid-template-columns: 1fr;
    }
  }
  html {
    scroll-behavior: smooth;
  }