html {
  scroll-behavior: smooth;
}

/* ===================== GLOBAL RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 100px;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background-color: #fff;
  color: #000;
  scroll-behavior: smooth;
}

/* ===================== HEADER ===================== */
header {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(35deg, #ffffff, #ffffff, #fc5d02);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 10px rgba(115, 115, 115, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

section {
  scroll-margin-top: 100px;
  /* header ki height ke barabar */
}

/* ===================== LOGO ===================== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  object-fit: contain;
}

/* ===================== NAV LINKS ===================== */
.nav-links {
  display: flex;
  gap: 45px;
}

.nav-links a {
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #000;
}

/* ===== SUBMENU ===== */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to bottom right, #fff5e1, #ffffff);
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  min-width: 180px;
  z-index: 999;
}

.submenu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.submenu a:hover {
  background-color: #f97316;
  color: #fff;
  border-radius: 6px;
}

@media (min-width: 769px) {
  .has-submenu:hover .submenu {
    display: block;
  }
}

/* ===================== GLOBAL ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 120px; /* Fixed header space */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff9f5;
  color: #222;
  line-height: 1.5;
}

/* ===================== TOGGLE SECTION ===================== */
.toggle-buttons {
  margin: 40px auto 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 800px;
  
}

.Tally-pricing-heading,
.toggle-buttons {
  text-align: center;
}

.Tally-pricing-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #fc5d02;
  margin-bottom: 10px;
}

.toggle-buttons button {
  padding: 12px 25px;
  border: none;
  background: #ffe8d9;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.toggle-buttons button:hover {
  background: #ffd4b3;
}

.toggle-buttons button.active {
  background: #fc5d02;
  color: #fff;
}

.toggle-buttons p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin-top: 8px;
}

/* ===================== PRICING SECTION ===================== */
.pricing-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 30px auto;
  max-width: 1100px;
}

/* Plan Wrapper (hide/show) */
.plan-wrapper.hidden {
  display: none;
}

.pricing-section {
  display: flex;
}

.plan-wrapper {
  display: flex;
  flex-wrap: wrap; 
  gap: 25px;        
}

/* Pricing Card */
.card {
  background: #fff;
  padding: 28px;
  flex: 1 1 300px; /* responsive flex size */
  min-width: 280px; /* FIX - force minimum width */
  max-width: 320px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(252, 93, 2, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(252, 93, 2, 0.25);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.duration {
  font-size: 18px;
  color: #333;
}

.badge {
  background: #fc5d02;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0;
  color: #fc5d02;
}

.strike {
  text-decoration: line-through;
  font-size: 15px;
  color: #999;
  margin-right: 5px;
}

.tax {
  font-size: 12px;
  color: #666;
}

.effective {
  font-size: 14px;
  color: #fc5d02;
  margin: 8px 0;
  font-weight: 600;
}

.buy-btn {
  background: linear-gradient(45deg, #ff9d3d, #fc5d02);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 15px;
  border-radius: 8px;
  margin: 12px 0;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.buy-btn:hover {
  background: linear-gradient(45deg, #fc5d02, #d84d00);
  box-shadow: 0 5px 15px rgba(252, 93, 2, 0.35);
}

.highlights {
  background: #fff6e6;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  list-style: none;
}

.highlights li {
  margin: 6px 0;
  font-size: 14px;
}

.features-title {
  font-weight: 600;
  margin-top: 10px;
  font-size: 15px;
  color: #333;
}

.features {
  list-style: none;
  padding-left: 0;
}

.features li {
  margin: 6px 0;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fc5d02;
  font-weight: bold;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 480px) {
  .pricing-section {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
    max-width: 95%;
    padding: 22px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 25px); /* 2 cards per row */
    min-width: unset;
  }
}

@media (min-width: 769px) {
  .card {
    flex: 1 1 calc(33.33% - 25px); /* 3 cards per row */
    min-width: unset;
  }
}

/* ====== Footer ====== */
.site-footer {
  background: radial-gradient(1200px 600px at 70% -200px, rgba(252, 93, 2, 0.08), transparent 60%),
    #101216;
  color: #d6d8de;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 10px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: .3px;
}

.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  background: #fff;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.brand-tagline {
  margin: 10px 0 14px;
  color: #b9bcc6;
  line-height: 1.6;
  font-size: .95rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #cfd2da;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #ffd28f;
  transform: translateX(4px);
}

.contact-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.contact-list a {
  color: #d6d8de;
  text-decoration: none;
}

.contact-list a:hover {
  color: #ffd28f;
}

.ci {
  margin-right: 6px;
  filter: grayscale(20%);
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter input {
  flex: 1;
  background: #161a21;
  border: 1px solid #242934;
  color: #e6e8ee;
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.newsletter input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(252, 93, 2, .18);
}

.newsletter button {
  background: linear-gradient(90deg, #fc5d02, #ff7a2b);
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 93, 2, .35);
}

/* Socials */
.social-row {
  display: flex;
  gap: 10px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #161a21;
  border: 1px solid #242934;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.social svg {
  width: 18px;
  fill: #e6e8ee;
}

.social:hover {
  transform: translateY(-3px);
  background: #1b2130;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .35),
    0 0 0 2px rgba(252, 93, 2, .25) inset;
}

/* Bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 20px;
  padding: 14px 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #aeb3bf;
  font-size: .92rem;
}

.bottom-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.bottom-links a {
  color: #cfd2da;
  text-decoration: none;
}

.bottom-links a:hover {
  color: #ffd28f;
}

/* Responsive */
@media (max-width: 980px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===================== GST Line (Orange Theme) ===================== */

/* Modern GST Notice Styling */
.gst-notice-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    max-width: 85%;
}

.gst-divider {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fc5d02, transparent);
    margin: 0 20px;
    transition: all 0.3s ease;
}

.gst-notice {
    text-align: center;
    padding: 12px 30px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 3px 15px rgba(252, 93, 2, 0.15);
    border: 1px solid rgba(252, 93, 2, 0.2);
}

.gst-text {
    color: #fc5d02;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    position: relative;
    background: white;
    text-transform: uppercase;
}

/* Hover Animation */
.gst-notice-container:hover .gst-divider {
    background: linear-gradient(90deg, transparent, #e05200, transparent);
    height: 3px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    /* Hamburger */
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%; left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        padding: 12px 20px;
        font-weight: 600;
        font-size: 15px;
        color: #333;
        border-bottom: 1px solid #eee;
    }
    .nav-links a:hover { background: #a4151c; color: #fff; }
    .contact-container { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .footer-container { grid-template-columns: 1fr; gap: 22px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}


@media (max-width: 768px) {
  .has-submenu .submenu {
    position: static;   /* dropdown full width le */
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .has-submenu.active .submenu {
    display: block;
  }

  .submenu a {
    padding-left: 40px; /* thoda indent dikhane ke liye */
  }
}