html {
  scroll-behavior: smooth;
}

/* ===================== GLOBAL ===================== */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Segoe UI', Tahoma, sans-serif;
 }

body {
  margin: 0;
  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;
  }
}

/* ===================== BUSY - BUSY Plans & Pricing ===================== */

/* Section container */
.busy-pricing-section {
   padding: 80px 20px;
   background: #fffaf6;
   margin-top: 80px;
}

.pricing-container {
   max-width: 1300px;
   margin: 0 auto;
   text-align: center;
}

/* Heading */
.pricing-heading {
   font-size: 2.8rem;
   font-weight: 800;
   text-align: center; 
   background: linear-gradient(to right, #ff7a18, #ff5310);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 35px;
   position: relative;
   letter-spacing: 1px; /* Thoda spacing premium look ke liye */
}
.pricing-heading::after {
   content: "";
   display: block;
   width: 80px;
   height: 3px;
   background: linear-gradient(to right, #fc5d02, #f97316);
   margin: 12px auto 0;
   border-radius: 2px;
}

/* Category Buttons */
.pricing-category-buttons,
.sub-buttons,
.user-toggle {
   display: flex;
   justify-content: center;
   gap: 15px;
   margin-bottom: 25px;
   flex-wrap: wrap;
}

.category-btn,
.sub-btn {
   padding: 10px 25px;
   border: none;
   background: #ffe8df;
   color: #fc5d02;
   font-weight: 600;
   border-radius: 6px;
   cursor: pointer;
   transition: all 0.3s ease;
}

.category-btn:hover,
.sub-btn:hover {
   background: #fc5d02;
   color: #fff;
}

.category-btn.active,
.sub-btn.active {
   background: #f97316;
   color: #fff;
   box-shadow: 0 3px 8px rgba(249,115,22,0.4);
}

/* Subcategory Container */
.subcategory-container {
   background: white;
   padding: 12px 20px;
   border-radius: 12px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   width: 100%;
   box-shadow: 0 4px 15px rgba(249, 93, 2, 0.1);
   margin: 20px 0;
}

/* Pricing Cards */
.pricing-tables {
   display: flex;
   justify-content: center;
   gap: 25px;
   flex-wrap: wrap;
}

.pricing-card {
   flex: 1 1 30%;
   background: #fff;
   border-radius: 15px;
   padding: 25px;
   box-shadow: 0 6px 20px rgba(252, 93, 2, 0.15);
   min-width: 300px;
   transition: transform 0.3s ease;
}

.pricing-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 10px 25px rgba(252, 93, 2, 0.25);
}

/* Card Headings */
.pricing-card h2 {
   margin-bottom: 10px;
   font-weight: 700;
   font-size: 1.5rem;
}

.pricing-card h2.basic {
   color: #fc5d02;
}

.pricing-card h2.standard {
   color: #f97316;
   position: relative;
}

.pricing-card h2.standard::after {
   content: "Most Popular";
   font-size: 0.75rem;
   color: white;
   background-color: #f97316;
   padding: 3px 7px;
   border-radius: 4px;
   margin-left: 8px;
}

.pricing-card h2.enterprise {
   color: #cc4b00;
}

/* Price */
.pricing-price {
   font-weight: bold;
   font-size: 1.8rem;
   margin: 10px 0;
   color: #fc5d02;
}

/* Subtitle */
.pricing-subtitle {
   font-size: 0.95rem;
   margin-bottom: 15px;
   color: #555;
}

/* Demo Button */
.demo-btn {
   margin: 10px 0 15px;
   display: inline-block;
   background: linear-gradient(135deg, #fc5d02, #f97316);
   color: white;
   padding: 10px 20px;
   text-decoration: none;
   font-weight: 600;
   border-radius: 6px;
   transition: all 0.3s ease;
}

.demo-btn:hover {
   background: linear-gradient(135deg, #f97316, #fc5d02);
   box-shadow: 0 4px 12px rgba(249, 93, 2, 0.3);
}

/* Feature List */
.feature-group {
   text-align: left;
   margin-top: 15px;
}

.feature-group h4 {
   margin-bottom: 8px;
   color: #fc5d02;
   font-weight: 600;
}

.feature-group ul {
   padding-left: 20px;
}

.feature-group ul li {
   margin-bottom: 6px;
   transition: color 0.2s;
}

.feature-group ul li:hover {
   color: #f97316;
}


/* ================== MOBILE BUSY (Orange Theme) ================== */

/* Hide by default */
#mobile-section {
    display: none;
    padding: 30px 0;
}

/* Flex container for mobile layout */
.mobile-inner {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

/* Mobile left (screenshot) */
.mobile-left {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.mobile-left img.mobile-screenshot {
    max-width: 100%;
    border-radius: 12px;
}

/* Mobile right (pricing cards) */
.mobile-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 280px;
}

/* Individual mobile card */
.mobile-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(252, 93, 2, 0.15);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mobile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(252, 93, 2, 0.25);
}

.mobile-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fc5d02;
}

.mobile-card .price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fc5d02;
}

.mobile-card .demo-btn {
    display: inline-block;
    background-color: #fc5d02;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.mobile-card .demo-btn:hover {
    background-color: #e05200;
}


/* busy online section*/

/* ===== MODIFIED TOGGLE SECTIONS ===== */
.online-toggles {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 0;
}

.toggle-buttons {
    display: flex;
    gap: 20px;
}

.switch-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.switch-labels {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    gap: 15px;
    font-size: 14px;
    font-weight: bold;
}

/* ===== MAIN CONTAINER ===== */
.online-section {
    width: 100%;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===== TOGGLE CONTAINER ===== */
.toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: -100px;
}

/* ===== ACCESS/SQL BUTTON GROUP ===== */
.button-group {
    display: flex;
    gap: 30px;
    margin-left: 0;
}

.online-btn {
    padding: 12px 24px;
    border: none;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.online-btn.active {
    background: #ff6600;   /* ORANGE THEME */
    color: white;
    transform: translateY(-2px);
}

/* ===== PERIOD TOGGLE GROUP ===== */
.period-toggle-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.period-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* ===== TOGGLE SWITCH ===== */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff6600; /* ORANGE */
    transition: .4s;
    border-radius: 30px;
}

input:checked+.slider {
    background-color: #ff6600; /* ORANGE */
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.period-toggle-group {
    margin-top: 20px;
}

/* ===== CONTENT CARDS ===== */
.online-inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.online-left,
.online-right {
    flex: 1;
    min-width: 300px;
}

.online-features-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-right: 50px;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.online-features-card:hover {
    transform: scale(1.02);
}

.online-price-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-left: 50px;
}



.main-price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff6600; /* ORANGE PRICE */
}

.additional-price {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Mobile first (max 768px) */
@media (max-width: 768px) {

    /* Mobile Section */
    .mobile-inner {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .mobile-left, 
    .mobile-right {
        min-width: 100%;
        text-align: center;
    }

    .mobile-card {
        width: 100%;
    }

    /* Online Section */
    .toggle-container {
        margin-top: 0;
    }

    .online-inner {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .online-features-card,
    .online-price-card {
        margin: 0;
        width: 100%;
    }

    .online-price-card {
        max-width: 100%;
    }
}

/* ##############  Recom  ################# */

/* ===================== RECOM SECTION ===================== */
.recom-section {
  width: 100%;
  padding: 80px 20px;
  background: #fafafa;
  display: none; /* show via JS */
}

.recom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ==== Features ==== */
.recom-features {
  flex: 1;
  min-width: 320px;
}

.features-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(252, 93, 2, 0.15);
}

.features-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.features-card h3 {
  color: #fc5d02;
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(252, 93, 2, 0.25);
  display: inline-block;
}

.features-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.features-card li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
  color: #444;
}

.features-card li::before {
  content: "✔";
  color: #fc5d02;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ==== Pricing ==== */
.recom-pricing {
  flex: 1;
  min-width: 320px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.pricing-box {
  background: linear-gradient(145deg, #fff, #fef6f3);
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(252, 93, 2, 0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(252, 93, 2, 0.15);
  max-width: 320px;
}

.pricing-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(252, 93, 2, 0.25);
}

.pricing-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.pricing-box .price {
  font-size: 2rem;
  font-weight: bold;
  color: #fc5d02;
  margin-bottom: 20px;
}

.pricing-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 25px;
}

.pricing-box .demo-btn {
  display: inline-block;
  background: #fc5d02;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(252, 93, 2, 0.25);
}

.pricing-box .demo-btn:hover {
  background: #e05200;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(252, 93, 2, 0.3);
}

/* ================= RESPONSIVE (Mobile) ================= */
@media (max-width: 768px) {
  .recom-container {
    flex-direction: column;
    gap: 30px;
  }

  /* Features block full width */
  .recom-features {
    width: 100%;
    min-width: auto;
  }

  /* Pricing block full width with single column */
  .recom-pricing {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .pricing-box {
    max-width: 100%;
    width: 100%;
  }

  /* Cards padding thoda chhota ho jaye mobile pe */
  .features-card,
  .pricing-box {
    padding: 25px 20px;
  }

  .features-card h3 {
    font-size: 1.3rem;
  }

  .pricing-box .price {
    font-size: 1.6rem;
  }
}



/* ===================== 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;
}

/* ====== 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;
  }
}

/* Service Busy  */

.services {
  padding: 60px 20px;
  background: #fff7f0; /* light orange background */
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff6a00;
  font-weight: bold;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(255, 106, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.25);
}

.service-card h3 {
  font-size: 1.2rem;
  color: #e85d04;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.service-card ul li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
  color: #444;
}

.service-card ul li::before {
  content: "✔";
  color: #ff6a00;
  position: absolute;
  left: 0;
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #ff8c00, #ff6a00);
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: linear-gradient(45deg, #ff6a00, #e65100);
  box-shadow: 0 5px 12px rgba(255, 106, 0, 0.4);
}

/* ===================== 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 */
  }
}