/* ===================== GLOBAL RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 100px;
    /* Space for fixed header */
    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;
    }
}

/*--------Header Vyapar-----------*/

.Vyapar-Pricing {
  text-align: center;
}

.Vyapar-Pricing {
  font-size: 2rem;
  font-weight: 700;
  color: #fc5d02;
  margin-bottom: 10px;
}

/* ===================== PRICING CARDS ===================== */
.pricing-header {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

select {
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plan {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.plan.popular {
  border: 2px solid #fc5d02;
  background: #fff6f2;
  position: relative;
}

.plan.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  right: 20px;
  background: #fc5d02;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.plan h3 {
  margin: 0;
  font-size: 22px;
  color: #222;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #fc5d02;
  margin: 12px 0;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
  margin-left: 10px;
}

.per-month {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  background: #fc5d02;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 16px;
  margin: 10px 0;
  transition: 0.3s;
}

.btn:hover {
  background: #e04e00;
}

.pricing-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-container ul li {
    position: relative;
    padding-left: 28px; /* tick ke liye jagah */
    margin-bottom: 10px;
    font-size: 15px;
}

.pricing-container ul li::before {
    content: "✔";          /* right tick symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;        /* green color */
    font-weight: bold;
}


/* ===================== 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 */
  }
}

/* ============ 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: #f97316;
    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: #f97316;
    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;
    }
}

/* ===================== 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 */
  }
}