/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  background: #f9f9fb;
  color: #1e293b;
}
.container {
  /* display: flex;
  min-height: 100vh; */
max-width: 1400px;
  margin: 0 auto;
}
/* ===== NAVBAR ===== */
.navbar-wrapper {
  background: #03165c;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

/* Logo */
.navbar-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0066ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-logo i {
  font-size: 1.8rem;
  color: #0066ff;
}

/* Menu */
.navbar-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.navbar-menu > li {
  position: relative;
}
.navbar-menu > li > a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.navbar-menu > li > a:hover {
  color: #efc343;
}
.navbar-menu > li > a i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Dropdown */
.navbar-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 200px;
  /* border-radius: 12px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  overflow: hidden;
  z-index: 999;
}
.navbar-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.navbar-dropdown a {
  display: block;
  padding: 12px 18px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}
.navbar-dropdown a:last-child {
  border-bottom: none;
}
.navbar-dropdown a:hover {
  background: #f0f7ff;
  color: #0066ff;
  padding-left: 22px;
}
.navbar-menu > li:hover .navbar-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 5px;
}
.navbar-menu > li:hover > a i {
  transform: rotate(180deg);
}

/* Right Side */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Notification Bell */
.notification-bell {
  position: relative;
  font-size: 1.4rem;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.notification-bell:hover {
  /* background: #f0f7ff; */
  color: #0066ff;
}
.notification-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-login {
  background: #efc343;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}
.navbar-login:hover {
  background: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.navbar-toggle {
  display: none;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: 0.3s;
}
.navbar-toggle:hover {
  background: #f0f0f0;
}

/* ===== NOTIFICATION RIGHT SIDEBAR ===== */
.notification-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.notification-sidebar.active {
  right: 0;
}

.notification-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fbff;
}
.notification-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
}
.notification-close {
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: 0.3s;
}
.notification-close:hover {
  background: #e6f0ff;
  color: #0066ff;
}

.notification-list {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}
.notification-item {
  padding: 16px 20px;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  gap: 12px;
  transition: background 0.2s ease;
}
.notification-item:hover {
  background: #f8fbff;
}
.notification-item.unread {
  background: #f0f7ff;
  border-left: 4px solid #0066ff;
}
.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.notification-icon.success {
  background: #10b981;
}
.notification-icon.warning {
  background: #f59e0b;
}
.notification-icon.info {
  background: #3b82f6;
}

.notification-content {
  flex: 1;
}
.notification-message {
  font-size: 0.95rem;
  color: #1e293b;
  margin-bottom: 4px;
  font-weight: 500;
}
.notification-time {
  font-size: 0.8rem;
  color: #94a3b8;
}

.notification-footer {
  padding: 16px 20px;
  text-align: center;
  border-top: 1px solid #eee;
  background: #f9f9fb;
}
.notification-view-all {
  color: #0066ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.notification-view-all:hover {
  text-decoration: underline;
}

/* Overlay */
.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}
.notification-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sidebar */
.navbar-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
  transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 9999;
  padding-top: 20px;
  overflow-y: auto;
}
.navbar-sidebar.active {
  left: 0;
}

.sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.sidebar-close {
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 8px;
  border-radius: 50%;
  transition: 0.3s;
}
.sidebar-close:hover {
  background: #f0f0f0;
  color: #333;
}

/* Menu List */
.sidebar-menu {
  list-style: none; /* <-- यही चाहिए था */
  padding: 0;
  margin: 0;
}

.sidebar-menu-item {
  border-bottom: 1px solid #f5f5f5;
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}
.sidebar-link:hover {
  background: #f0f7ff;
  color: #0066ff;
}
.sidebar-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Dropdown in Sidebar */
.navbar-sidebar .navbar-dropdown {
  background: #f8fbff;
  padding: 0;
  margin: 0;
  display: none;
  border-radius: 0;
  box-shadow: none;
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.navbar-sidebar .navbar-dropdown a {
  display: block;
  padding: 12px 20px 12px 50px; /* <-- इंडेंट सही */
  color: #444;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  border-bottom: none;
}
.navbar-sidebar .navbar-dropdown a:hover {
  background: #e6f0ff;
  color: #0066ff;
  padding-left: 54px;
}

/* Active State */
.sidebar-menu-item.active .navbar-dropdown {
  display: block;
}
.sidebar-menu-item.active .sidebar-link i {
  transform: rotate(180deg);
}
/* Responsive */
@media (max-width: 992px) {
  .navbar-menu,
  .navbar-right .navbar-login {
    display: none;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-container {
    padding: 12px 16px;
  }
  .notification-bell {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .navbar-logo {
    font-size: 1.4rem;
  }
  .navbar-logo i {
    font-size: 1.6rem;
  }

}
/* banner  */

/* ========== Banner Section ========== */

/* ========== Banner Section ========== */
.banner-section {
  background: #ffffff;
  padding: 30px 20px;
}
.banner-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* ===== Left Side Content ===== */
.banner-content {
  flex: 1;
  min-width: 320px;
}
.banner-badge {
  display: inline-block;
  background: #fff;
  color: #03165c;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}
.banner-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1c1f30;
  margin-bottom: 40px;
}
/* ===== Option Cards ===== */
.banner-options {
  display: flex;
  gap: 25px;
  /* flex-wrap: wrap; */
}
.banner-card {
  background: #f6f7ff;
  border-radius: 15px;
  padding: 30px 25px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border-top: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.banner-card:hover {
  transform: translateY(-8px);
  border-top: 5px solid #03165c;
  box-shadow: 0 8px 25px rgba(106, 93, 252, 0.2);
  background: linear-gradient(180deg, #ffffff 60%, #f5f3ff 100%);
}

.banner-top-text {
  color: #000000;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}
.banner-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.banner-card-sub {font-size: 14px; color: #666; margin-bottom: 20px;}
.banner-btn { background: #efc343; color: #fff; border: none; border-radius: 8px; padding: 10px 24px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; font-size: 14px;}
.banner-btn:hover {
  background: #efc343;
  transform: translateY(-2px);
}

/* ===== Right Image Section ===== */
.banner-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-image img {
  max-width: 90%;
  height: auto;
}
/* ===== Bottom Stats ===== */
.banner-stats {
  max-width: 1000px;
  margin: 0px auto 0;
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 35px;
}

.banner-stats p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.banner-platforms {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.banner-platforms i {
  font-size: 26px;
  color: #1666f9;
}

.banner-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.banner-num-item {
  text-align: center;
}

.banner-num-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #efc343;
  margin-bottom: 8px;
}

.banner-num-item p {
  font-size: 15px;
  color: #555;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .banner-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .banner-heading {
    font-size: 34px;
  }

  .banner-options {
    justify-content: center;
    flex-direction: column;
  }

  .banner-image img {
    max-width: 70%;
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .banner-heading {
    font-size: 28px;
  }

  .banner-card {
    padding: 25px 20px;
  }

  .banner-num-item h3 {
    font-size: 20px;
  }
}
/* Financial Services Section */
.financial-services-wrapper {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.financial-services-container {
  max-width: 1240px;
  margin: 0 auto;
}

.financial-services-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #03165c;                 /* Dark Navy */
  margin-bottom: 16px;
  line-height: 1.2;
}

.financial-services-subheading {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
  font-weight: 400;
}

.financial-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-items: center;
}

.financial-services-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #f0f0f0;
}

.financial-services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #efc343;          /* Accent Orange on hover */
}

.financial-services-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #efc343, #ffe0b3); /* Orange to light orange */
  box-shadow: 0 4px 12px rgba(193, 99, 1, 0.15);
  transition: all 0.3s ease;
}

.financial-services-card:nth-child(2) .financial-services-icon-wrapper {
  background: linear-gradient(135deg, #efc343, #b2ebf2); /* Orange to cyan */
  box-shadow: 0 4px 12px rgba(193, 99, 1, 0.15);
}

.financial-services-card:nth-child(3) .financial-services-icon-wrapper {
  background: linear-gradient(135deg, #efc343, #bbdefb); /* Orange to light blue */
  box-shadow: 0 4px 12px rgba(193, 99, 1, 0.15);
}

.financial-services-card:nth-child(4) .financial-services-icon-wrapper {
  background: linear-gradient(135deg, #efc343, #e1bee7); /* Orange to light purple */
  box-shadow: 0 4px 12px rgba(193, 99, 1, 0.15);
}

.financial-services-icon {
  font-size: 28px;
  color: #03165c;                 /* Dark Navy */
}

.financial-services-card:nth-child(2) .financial-services-icon {
  color: #03165c;
}
.financial-services-card:nth-child(3) .financial-services-icon {
  color: #03165c;
}
.financial-services-card:nth-child(4) .financial-services-icon {
  color: #03165c;
}

.financial-services-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #03165c;                 /* Dark Navy */
  margin-bottom: 12px;
}

.financial-services-description {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 48px;
}

.financial-services-link {
  color: #03165c;                 /* Dark Navy */
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.financial-services-link:hover {
  color: #efc343;                 /* Accent Orange on hover */
  gap: 10px;
}

.financial-services-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.financial-services-link:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .financial-services-heading {
    font-size: 1.8rem;
  }
  .financial-services-subheading {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .financial-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .financial-services-card {
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .financial-services-wrapper {
    padding: 60px 16px;
  }
  .financial-services-heading {
    font-size: 1.6rem;
  }
}

/* investore section css  */

/* Investor Section */
.investor-section-wrapper {
  padding: 100px 20px;
  background: #f9f9f9;
}

.investor-section-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.investor-content {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
}

.investor-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.investor-subheading {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Stats Grid - 2 Columns, Alternating */
.investor-stats {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.stat-card {
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

/* Alternate alignment */
.stat-card:nth-child(odd) {
  justify-self: end;
  text-align: right;
  flex-direction: row-reverse;
}

.stat-card:nth-child(even) {
  justify-self: start;
  text-align: left;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

/* Icon Colors */
.stat-icon.invoices {
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
}
.stat-icon.investors {
  background: linear-gradient(135deg, #4dd0e1, #26c6da);
}
.stat-icon.businesses {
  background: linear-gradient(135deg, #ba68c8, #ab47bc);
}
.stat-icon.returns {
  background: linear-gradient(135deg, #7e57c2, #5e35b1);
}
.stat-icon.trade {
  background: linear-gradient(135deg, #ff8a65, #ff7043);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-number .plus {
  font-size: 1.4rem;
  color: #43a047;
  font-weight: 600;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  margin-top: 4px;
}

/* Rupee Icon at Bottom */
.rupee-center {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 20px;
}

.rupee-center .stat-icon {
  background: linear-gradient(135deg, #66bb6a, #43a047);
}

/* Responsive */
@media (max-width: 992px) {
  .investor-section-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .investor-content {
    max-width: 100%;
  }
  .investor-heading {
    font-size: 2.2rem;
  }
  .investor-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-card {
    justify-self: center !important;
    text-align: center !important;
    flex-direction: row;
  }
  .stat-card:nth-child(odd),
  .stat-card:nth-child(even) {
    flex-direction: row;
    text-align: center;
  }
  .stat-card:nth-child(odd) .stat-number,
  .stat-card:nth-child(even) .stat-number {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .investor-section-wrapper {
    padding: 60px 16px;
  }
  .investor-heading {
    font-size: 1.9rem;
  }
  .stat-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }
  .stat-number {
    font-size: 1.6rem;
    justify-content: center;
  }
}
/* FAQ Section */
.faq-wrapper {
  padding: 100px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #03165c;                 /* Dark Navy */
  margin-bottom: 16px;
}

.faq-subheading {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #efc343;          /* Accent Orange on hover */
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #03165c;                 /* Dark Navy */
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #efc343;                 /* Accent on hover */
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff4e6;           /* Light orange tint */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #03165c;                 /* Dark Navy */
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: #efc343;            /* Accent Orange */
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fffaf0;           /* Very light orange tint */
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 24px;
}

.faq-answer a {
  color: #efc343;                 /* Accent Orange */
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 18px 20px;
  }
  .faq-answer {
    font-size: 0.94rem;
  }
  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .faq-wrapper {
    padding: 70px 16px;
  }
  .faq-heading {
    font-size: 1.8rem;
  }
  .faq-question {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .faq-icon {
    order: -1;
  }
}
/* footer section  */
/* Footer */
.footer-wrapper {
  background: #03165c;
  color: #b0c4de;
  padding: 60px 20px 40px;
  font-size: 14px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-logo i {
  font-size: 1.8rem;
  color: #ffffff;
}

.footer-social {
  margin-bottom: 30px;
}

.footer-social p {
  margin-bottom: 12px;
  font-weight: 500;
  color: #e0e7ff;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  background: #efc343;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 3;
  min-width: 300px;
}

.footer-column {
  flex: 1;
  min-width: 160px;
}

.footer-column h4 {
  color: #efc343;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #ffffff;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #b0c4de;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: #f9f9f9;
}

/* Bottom Line */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #2c3e50;
  text-align: center;
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-links {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-wrapper {
    padding: 50px 16px 30px;
  }
  .footer-logo {
    font-size: 1.3rem;
  }
  .footer-column h4 {
    font-size: 0.95rem;
  }
  .footer-social-icons a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* detail form  */
/* Form Container */
/* ---------------------- Form Container ---------------------- */
.customer-form-wrapper {
  max-width: 900px;
  margin: 25px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e7ff;
}

.customer-form-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 32px;
}

.customer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 0px 10px;
}

.customer-form-group {
  position: relative;
  margin-bottom: 20px;
}
.customer-file-preview img {
  max-width: 100px;
  max-height: 100px;
  margin: 10px 10px 0 0;
  border-radius: 8px;
  object-fit: cover;
}

/* अगर preview container को grid/row में दिखाना चाहें */
.customer-file-preview {
  display: flex;
  flex-wrap: wrap;
}
.customer-form-group.full-width {
  grid-column: 1 / -1;
}

.customer-form-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.95rem;
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.customer-form-input,
.customer-form-select,
.customer-form-textarea {
  width: 100%;
  padding: 16px;
  border: 1.5px solid #d0d7de;
  border-radius: 12px;
  font-size: 1rem;
  background: #fafbff;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.customer-form-input:focus,
.customer-form-select:focus,
.customer-form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.customer-form-input:focus + .customer-form-label,
.customer-form-input:not(:placeholder-shown) + .customer-form-label,
.customer-form-select:focus + .customer-form-label,
.customer-form-textarea:focus + .customer-form-label,
.customer-form-textarea:not(:placeholder-shown) + .customer-form-label {
  top: -10px;
  left: 12px;
  font-size: 0.75rem;
  color: #3b82f6;
  background: #ffffff;
  padding: 0 6px;
  font-weight: 600;
}

/* ---------------------- Vendor Select with + Button ---------------------- */
.vendor-select-group {
  position: relative;
}

.vendor-select-input {
  width: 100%;
  padding: 16px 45px 16px 16px;
  border: 1.5px solid #d0d7de;
  border-radius: 12px;
  font-size: 1rem;
  background: #fafbff;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.vendor-select-input:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.vendor-add-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 6px 9px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.vendor-add-btn:hover {
  background: #1d4ed8;
}

/* Vendor dropdown suggestions */
.vendor-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  max-height: 180px;
  overflow-y: auto;
  display: none;
}

.vendor-dropdown div {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.95rem;
}

.vendor-dropdown div:hover {
  background: #e5f0ff;
}

/* ---------------------- Vendor Popup ---------------------- */
.vendor-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.vendor-popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.vendor-popup-content h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e40af;
}

.vendor-popup-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1.5px solid #d0d7de;
  border-radius: 8px;
}

.vendor-popup-content button {
  width: 100%;
  padding: 12px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.vendor-popup-content button:hover {
  background: #1d4ed8;
}

.vendor-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #555;
}

/* Submit Button */
.customer-submit-btn {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.customer-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .customer-form-grid {
    grid-template-columns: 1fr;
  }
}

/* gst services */

/* GST Service Section */
.gst-service-wrapper {
  padding: 80px 20px;
  background: #ffffff;
}

.gst-service-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ========== Left Side ========== */
.gst-service-content {
  flex: 1;
  min-width: 300px;
}

.gst-service-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 12px;
}

.gst-service-subheading {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
}

.gst-service-features {
  list-style: none;
  margin-bottom: 24px;
}

.gst-service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #333;
}

.gst-service-features li i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.gst-service-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.gst-service-stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.gst-service-capterra {
  background: #0d3b66;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gst-service-capterra i {
  font-size: 0.9rem;
}

.gst-service-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gst-service-btn-primary {
  background: #3b82f6;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.gst-service-btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.gst-service-btn-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.gst-service-btn-link:hover {
  color: #1d4ed8;
  gap: 10px;
}

.gst-service-btn-link i {
  transition: transform 0.3s ease;
}

.gst-service-btn-link:hover i {
  transform: translateX(4px);
}

/* ========== Right Side Video ========== */
.gst-service-video-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #000;
  position: relative;
  aspect-ratio: 16/9;
}

.gst-service-video-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .gst-service-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .gst-service-heading {
    font-size: 2rem;
  }

  .gst-service-cta {
    justify-content: center;
  }

  .gst-service-video-wrapper {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .gst-service-wrapper {
    padding: 60px 16px;
  }

  .gst-service-heading {
    font-size: 1.8rem;
  }

  .gst-service-btn-primary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* gst distributer  */
/* Service Distributor Section */
.service-distributor-wrapper {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.service-distributor-container {
  max-width: 1240px;
  margin: 0 auto;
}

.service-distributor-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-distributor-subheading {
  font-size: 1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.service-distributor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-distributor-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-distributor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.service-distributor-icon-wrapper {
  width: 70px;
  height: 70px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-distributor-card:hover .service-distributor-icon-wrapper {
  background: #e0e7ff;
  transform: scale(1.1);
}

.service-distributor-icon {
  font-size: 1.8rem;
  color: #64748b;
}

.service-distributor-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.service-distributor-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .service-distributor-heading {
    font-size: 2.2rem;
  }
  .service-distributor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-distributor-card {
    padding: 28px 20px;
  }
}

@media (max-width: 576px) {
  .service-distributor-wrapper {
    padding: 70px 16px;
  }
  .service-distributor-heading {
    font-size: 1.9rem;
  }
  .service-distributor-subheading {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .service-distributor-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  .service-distributor-icon {
    font-size: 1.5rem;
  }
  .service-distributor-card-title {
    font-size: 1.15rem;
  }
}

/* order page  */
/* ===== MAIN LAYOUT ===== */
.order-container {
  display: flex;
  min-height: 100vh;
}
/* ====================== SIDEBAR & NAVIGATION ====================== */

/* -------------------------------------------------
   HAMBURGER (always visible)
   ------------------------------------------------- */
 /* HAMBURGER - Always visible */
    /* .order-hamburger {
      position:fixed;
      top:100px;
      left:0;
      z-index:101;
      font-size:1.5rem;
      padding:8px 10px;
      background:#4b4b4b;
      color:#fff;
      box-shadow:0 2px 8px rgba(0,0,0,.1);
      cursor:pointer;
      border-radius:0 8px 8px 0;
      display:block;
      transition: left 0.3s ease;
    } */

       .order-hamburger {
    position: fixed;
    top: 140px;
    left: 0;
    z-index: 101;
    font-size: 1.5rem;
    padding: 8px 10px;
    background: #03165c;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    display: block;
    transition: left 0.3s
ease;
    writing-mode: vertical-rl;
}


    /* SIDEBAR */
    .order-sidebar {
      width:370px;
      height:100vh;
      position:fixed;
      left:0;
      top:0;
      z-index:100;
      background:#fff;
      box-shadow:2px 0 12px rgba(0,0,0,.08);
      transform:translateX(-100%);
      transition:transform .3s ease;
      overflow-y:auto;
      padding:80px 20px 20px;
    }
    .order-sidebar.active { transform:translateX(0); }

    .order-sidebar-title {
      font-size:1.5rem;
      margin-bottom:2rem;
      text-align:center;
      color:#1e293b;
      font-weight:600;
      margin-top: 30px;
    }
/* Main Nav Links */
.order-nav-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 16px;font-weight:500;
  border-radius:8px;text-decoration:none;transition:all .3s ease;
  color:#1e293b;position:relative;
}
.order-nav-link:hover,
.order-nav-link.active{
  background:#e2e8f0;color:#1e293b;font-weight:600;
}
.order-nav-link.active{
  background:#6366f1;color:#fff !important;
}
.order-nav-link.active i{
  color:#fff;
}

/* Dropdown Arrow */
.order-nav-link i{
  font-size:0.8rem;transition:transform .3s ease;color:#64748b;
}

/* Dropdown Container */
.order-nav-dropdown{
  margin-bottom:8px;
}
.order-nav-dropdown > a{
  position:relative;
}

/* Submenu */
.order-submenu{
  margin-top:6px;padding-left:28px;
  max-height:0;overflow:hidden;
  transition:max-height .3s ease, opacity .3s ease;
  opacity:0;
}
.order-submenu.open{
  max-height:500px; /* enough for all items */
  opacity:1;
}
.order-submenu.open li{
  list-style: none;
}
/* Submenu Links */
.order-subnav-link{
  display:block;padding:9px 14px;font-size:0.9rem;
  color:#64748b;border-radius:6px;transition:all .2s ease;
  position:relative;
  text-decoration: none;
}
.order-subnav-link::before{
  content:"";position:absolute;left:0;top:50%;width:3px;height:0;
  background:#6366f1;transform:translateY(-50%);transition:height .2s ease;
}
.order-subnav-link:hover{
  background:#f1f5f9;color:#1e293b;padding-left:18px;
}
.order-subnav-link:hover::before{
  height:16px;
}

/* Active Submenu Item */
.order-subnav-link.active{
  color:#6366f1;font-weight:600;
}
.order-subnav-link.active::before{
  height:16px;
}

/* -------------------------------------------------
   OVERLAY (for mobile)
   ------------------------------------------------- */
.order-overlay{
  position:fixed;top:0;left:0;width:100%;height:100%;
  /* background:rgba(0,0,0,.5); */
  z-index:99;
  opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.order-overlay.active{opacity:1;pointer-events:auto;}

/* -------------------------------------------------
   CONTENT AREA – ALWAYS FULL WIDTH
   ------------------------------------------------- */
.order-content{
  transition:margin-left .3s ease;
  margin-left:0;
  width:100%;
  /* min-height:100vh; */
  padding:20px;
}
.order-sidebar.active ~ .order-content{
  margin-left:370px;
}


/* Mobile Responsive */
@media (max-width: 992px) {
  .order-sidebar {
    width: 280px;
    transform: translateX(-100%);
  }
  .order-sidebar.active {
    transform: translateX(0);
  }
  .order-content {
    margin-left: 0;
    padding: 20px;
  }
  .order-hamburger,
  .order-overlay {
    display: block;
  }
}
.order-tab-list > li {
  margin-bottom: 12px; /* ← Gap between main items */
  list-style: none;
}
/* Fade In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.itr-form-wrapper {
    max-width: 986px;
    margin: 39px auto;
    background: #ffffff;
    padding: 45px 61px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e7ff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
}
/* ===== RESPONSIVE TABLE WRAPPER ===== */
.order-table-container {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e7ff;
  margin-bottom: 30px;
}

.order-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 16px 16px;
}

.order-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #3b82f6;
  color: white;
  overflow: scroll;
}
.order-table-title {
  font-size: 1.4rem;
  font-weight: 600;
}
.order-table-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-search-input {
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  width: 220px;
  outline: none;
}
.order-search-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.order-rows-per-page {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
}
.order-rows-select {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  background: rgb(255 255 255 / 80%);
  color: #000000;
  font-size: 0.85rem;
}

/* ----- Photo container ----- */
.order-photo-container {
  display: flex;
  gap: 6px;
  /* flex-wrap: wrap; */
  align-items: center;
  cursor: pointer;
}
.order-photo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}
.order-photo-more {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

/* ----- Modal photos ----- */
.modal-photos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.modal-photos img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
}
.order-photo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.order-list-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}
.order-list-table th {
  background: #f8fafc;
  padding: 4px 2px;
  text-align: left;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}
.order-list-table td {
  padding: 16px 12px;
  border: 1px solid #e2e8f0;
  font-size: 0.94rem;
  color: #475569;
  vertical-align: middle;
}
.order-list-table tr:hover {
  background: #f8faff;
}

.order-list-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  min-width: 80px;
}
.order-list-status.pending {
  background: #fef3c7;
  color: #d97706;
}
.order-list-status.in-progress {
  background: #dbeafe;
  color: #2563eb;
}
.order-list-status.completed {
  background: #d1fae5;
  color: #059669;
}

/* Photo Column */
.order-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

/* Action Buttons */
.order-action-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.order-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.order-view-btn {
  background: #3b82f6;
  color: white;
}
.order-view-btn:hover {
  background: #2563eb;
}
.order-download-btn {
  background: #10b981;
  color: white;
}
.order-download-btn:hover {
  background: #059669;
}

/* Pagination */
.order-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 8px;
  background: #f8fafc;
}
.order-page-btn {
  padding: 8px 12px;
  border: 1px solid #cbd5e1;
  background: white;
  color: #475569;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  min-width: 36px;
}
.order-page-btn.active,
.order-page-btn:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}
.order-page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Modal */
.order-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.order-modal.active {
  display: flex;
}
.order-modal-content {
  background: white;
  max-width: 700px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.order-modal-header {
  background: #3b82f6;
  color: white;
  padding: 18px 24px;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.order-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.order-modal-body {
  padding: 28px 24px;
}
.order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.order-detail-row {
  display: flex;
  flex-direction: column;
}
.order-detail-label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.order-detail-value {
  color: #475569;
  font-size: 1rem;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 992px) {
  .order-hamburger,
  .order-overlay {
    display: block;
  }
  .order-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    z-index: 999;
    transition: left 0.4s ease;
    padding-top: 60px;
  }
  .order-sidebar.active {
    left: 0;
    z-index: 99;
  }
  .order-content {
    padding-top: 70px;
  }
  .order-container {
    flex-direction: column;
  }
  .order-table-controls {
    /* flex-direction: column; */
    align-items: flex-end;
  }
  .order-search-input {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .order-table-header {
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #3b82f6;
  color: white;
}
  .order-content {
    padding: 20px;
  }
  .order-detail-grid {
    grid-template-columns: 1fr;
  }
  .order-action-buttons {
    flex-direction: column;
    gap: 6px;
  }
}

/* ITR Cards */
.order-filing-section {
  text-align: center;
  padding: 60px 20px;
  /* max-width: 1400px; */
  margin: 0 auto;
}

.order-filing-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}
.order-filing-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1500px) {
  .order-filing-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.order-filing-card {
  width: 260px;
  height: 220px;
  perspective: 1000px;
  margin: auto;
}
.order-filing-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.order-filing-card:hover .order-filing-card-inner {
  transform: rotateY(180deg);
}
.order-filing-card-front,
.order-filing-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #eee;
  cursor: pointer;
}
.order-filing-card-front img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.order-filing-card-front p {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  margin: 0;
}
.order-filing-card-back {
  background: #efc343;
  color: white;
  transform: rotateY(180deg);
  font-size: 14px;
  padding: 25px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .order-filing-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .order-content {
    padding: 20px;
  }
  .order-filing-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .order-filing-card {
    width: 180px;
    height: 180px;
  }
  .order-filing-card-front p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .order-filing-card-container {
    grid-template-columns: 1fr;
  }
  .order-filing-card {
    width: 200px;
    height: 200px;
  }
  .order-list-table {
    font-size: 0.85rem;
  }
  .order-list-table th,
  .order-list-table td {
    padding: 10px 8px;
  }
  .order-list-photo {
    width: 32px;
    height: 32px;
  }
}

/* footbar style  */
.footbar-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  z-index: 1000;
  border-top: 1px solid #444;
}

/* Each item */
.footbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  text-align: center;
  color: #ccc;
  cursor: pointer;
  text-decoration: none; /* underline hatane ke liye */
  flex: 1; /* har item equal width le */
}

.footbar-item i {
  font-size: 20px;
  margin-bottom: 3px;
  color: #fff;
}

/* Hover/Active effect */
.footbar-item:hover,
.footbar-item:active {
  color: #fff;
  background: #333;
}

/* Show only on mobile */
@media (min-width: 768px) {
  .footbar-footer {
    display: none;
  }
}


/* audit */
   /* ---------------------- Form Container ---------------------- */
    .audit-wrapper {
      max-width: 950px;
      margin: 40px auto;
      background: #ffffff;
      padding: 45px 50px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e7ff;
      width: 100%;
    }

    .audit-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e40af;
      margin-bottom: 40px;
    }

    .audit-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 12px;
    }

    .audit-group {
      position: relative;
      width: 100%;
    }

    .audit-group.full-width {
      grid-column: 1 / -1;
    }

    .audit-label {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.95rem;
      color: #666;
      pointer-events: none;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .audit-input,
    .audit-textarea,
    .audit-select {
      width: 100%;
      padding: 16px;
      border: 1.5px solid #d0d7de;
      border-radius: 12px;
      font-size: 1rem;
      background: #fafbff;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }

    .audit-input:focus,
    .audit-textarea:focus,
    .audit-select:focus {
      outline: none;
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .audit-input:focus + .audit-label,
    .audit-input:not(:placeholder-shown) + .audit-label,
    .audit-select:focus + .audit-label,
    .audit-select:not([value=""]) + .audit-label,
    .audit-textarea:focus + .audit-label,
    .audit-textarea:not(:placeholder-shown) + .audit-label {
      top: -10px;
      left: 12px;
      font-size: 0.75rem;
      color: #3b82f6;
      background: #ffffff;
      padding: 0 6px;
      font-weight: 600;
    }

    /* File Upload Preview */
    .audit-file-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .audit-file-preview img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #d0d7de;
    }

    /* Submit Button */
    .audit-submit {
      display: block;
      width: 100%;
      background: #1e40af;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 35px;
    }

    .audit-submit:hover {
      background: #1d4ed8;
      box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .audit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* TDS  */
        /* ---------------------- Form Container ---------------------- */
    .tds-form-wrapper {
      max-width: 950px;
      margin: 40px auto;
      background: #ffffff;
      padding: 45px 50px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e7ff;
      width: 100%;
    }

    .tds-form-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e40af;
      margin-bottom: 40px;
    }

    /* ---------------------- Grid Layout ---------------------- */
    .tds-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 12px;
    }

    .tds-form-group {
      position: relative;
      width: 100%;
    }

    .tds-form-group.full-width {
      grid-column: 1 / -1;
    }

    /* ---------------------- Labels & Inputs ---------------------- */
    .tds-form-label {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.95rem;
      color: #666;
      pointer-events: none;
      transition: all 0.3s ease;
      font-weight: 500;
      background-color: transparent;
    }

    .tds-form-input,
    .tds-form-textarea {
      width: 100%;
      padding: 16px;
      border: 1.5px solid #d0d7de;
      border-radius: 12px;
      font-size: 1rem;
      background: #fafbff;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }

    .tds-form-input:focus,
    .tds-form-textarea:focus {
      outline: none;
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .tds-form-input:focus + .tds-form-label,
    .tds-form-input:not(:placeholder-shown) + .tds-form-label,
    .tds-form-textarea:focus + .tds-form-label,
    .tds-form-textarea:not(:placeholder-shown) + .tds-form-label {
      top: -10px;
      left: 12px;
      font-size: 0.75rem;
      color: #3b82f6;
      background: #ffffff;
      padding: 0 6px;
      font-weight: 600;
    }

    /* ---------------------- File Upload Preview ---------------------- */
    .tds-form-file-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .tds-form-file-preview img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #d0d7de;
    }

    /* ---------------------- Submit Button ---------------------- */
    .tds-form-submit {
      display: block;
      width: 100%;
      background: #1e40af;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 35px;
    }

    .tds-form-submit:hover {
      background: #1d4ed8;
      box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
    }

    /* ---------------------- Responsive ---------------------- */
    @media (max-width: 768px) {
      .tds-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* udyam  */
     /* ---------------------- Form Container ---------------------- */
    .udyam-registration-wrapper {
      max-width: 950px;
      margin: 40px auto;
      background: #ffffff;
      padding: 45px 50px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e7ff;
      width: 100%;
    }

    .udyam-registration-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e40af;
      margin-bottom: 40px;
    }

    .udyam-registration-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 12px;
    }

    .udyam-registration-group {
      position: relative;
      width: 100%;
    }

    .udyam-registration-group.full-width {
      grid-column: 1 / -1;
    }

    /* Labels and Inputs */
    .udyam-registration-label {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.95rem;
      color: #666;
      pointer-events: none;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .udyam-registration-input,
    .udyam-registration-textarea,
    .udyam-registration-select {
      width: 100%;
      padding: 16px;
      border: 1.5px solid #d0d7de;
      border-radius: 12px;
      font-size: 1rem;
      background: #fafbff;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }

    .udyam-registration-input:focus,
    .udyam-registration-textarea:focus,
    .udyam-registration-select:focus {
      outline: none;
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .udyam-registration-input:focus + .udyam-registration-label,
    .udyam-registration-input:not(:placeholder-shown)
      + .udyam-registration-label,
    .udyam-registration-select:focus + .udyam-registration-label,
    .udyam-registration-select:not([value=""]) + .udyam-registration-label,
    .udyam-registration-textarea:focus + .udyam-registration-label,
    .udyam-registration-textarea:not(:placeholder-shown)
      + .udyam-registration-label {
      top: -10px;
      left: 12px;
      font-size: 0.75rem;
      color: #3b82f6;
      background: #ffffff;
      padding: 0 6px;
      font-weight: 600;
    }

    /* File Upload Preview */
    .udyam-registration-file-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .udyam-registration-file-preview img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #d0d7de;
    }

    /* Submit Button */
    .udyam-registration-submit {
      display: block;
      width: 100%;
      background: #1e40af;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 35px;
    }

    .udyam-registration-submit:hover {
      background: #1d4ed8;
      box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .udyam-registration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* accounting */
     /* ---------------------- Form Container ---------------------- */
    .accounting-wrapper {
      max-width: 950px;
      margin: 40px auto;
      background: #ffffff;
      padding: 45px 50px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e7ff;
      width: 100%;
    }

    .accounting-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e40af;
      margin-bottom: 40px;
    }

    /* ---------------------- Grid Layout ---------------------- */
    .accounting-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 12px;
    }

    .accounting-group {
      position: relative;
      width: 100%;
    }

    .accounting-group.full-width {
      grid-column: 1 / -1;
    }

    /* ---------------------- Labels & Inputs ---------------------- */
    .accounting-label {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.95rem;
      color: #666;
      pointer-events: none;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .accounting-input,
    .accounting-textarea,
    .accounting-select {
      width: 100%;
      padding: 16px;
      border: 1.5px solid #d0d7de;
      border-radius: 12px;
      font-size: 1rem;
      background: #fafbff;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }

    .accounting-input:focus,
    .accounting-textarea:focus,
    .accounting-select:focus {
      outline: none;
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .accounting-input:focus + .accounting-label,
    .accounting-input:not(:placeholder-shown) + .accounting-label,
    .accounting-select:focus + .accounting-label,
    .accounting-select:not([value=""]) + .accounting-label,
    .accounting-textarea:focus + .accounting-label,
    .accounting-textarea:not(:placeholder-shown) + .accounting-label {
      top: -10px;
      left: 12px;
      font-size: 0.75rem;
      color: #3b82f6;
      background: #ffffff;
      padding: 0 6px;
      font-weight: 600;
    }

    /* ---------------------- File Upload Preview ---------------------- */
    .accounting-file-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .accounting-file-preview img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #d0d7de;
    }

    /* ---------------------- Submit Button ---------------------- */
    .accounting-submit {
      display: block;
      width: 100%;
      background: #1e40af;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 35px;
    }

    .accounting-submit:hover {
      background: #1d4ed8;
      box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
    }

    /* ---------------------- Responsive ---------------------- */
    @media (max-width: 768px) {
      .accounting-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* company reg  */
      /* ---------------------- Form Container ---------------------- */
    .companyregistration-wrapper {
      max-width: 950px;
      margin: 40px auto;
      background: #ffffff;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e7ff;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      width: 100%;
    }

    .companyregistration-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e40af;
      margin-bottom: 40px;
    }

    .companyregistration-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 12px;
    }

    .companyregistration-group {
      position: relative;
      margin-bottom: 20px;
    }

    .companyregistration-group.full-width {
      grid-column: 1 / -1;
    }

    .companyregistration-label {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.95rem;
      color: #666;
      pointer-events: none;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .companyregistration-input,
    .companyregistration-select,
    .companyregistration-textarea {
      width: 100%;
      padding: 16px;
      border: 1.5px solid #d0d7de;
      border-radius: 12px;
      font-size: 1rem;
      background: #fafbff;
      transition: all 0.3s ease;
      color: #1a1a1a;
    }

    .companyregistration-input:focus,
    .companyregistration-select:focus,
    .companyregistration-textarea:focus {
      outline: none;
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .companyregistration-input:focus + .companyregistration-label,
    .companyregistration-input:not(:placeholder-shown) + .companyregistration-label,
    .companyregistration-select:focus + .companyregistration-label,
    .companyregistration-select:not([value=""]) + .companyregistration-label,
    .companyregistration-textarea:focus + .companyregistration-label,
    .companyregistration-textarea:not(:placeholder-shown) + .companyregistration-label {
      top: -10px;
      left: 12px;
      font-size: 0.75rem;
      color: #3b82f6;
      background: #ffffff;
      padding: 0 6px;
      font-weight: 600;
    }

    /* File Upload Preview */
    .companyregistration-file-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .companyregistration-file-preview img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #d0d7de;
    }

    /* Submit Button */
    .companyregistration-submit {
      display: block;
      width: 100%;
      background: #1e40af;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 30px;
    }

    .companyregistration-submit:hover {
      background: #1d4ed8;
      box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .companyregistration-grid {
        grid-template-columns: 1fr;
      }
    }

    /* gst reg  */
        /* ---------------------- Form Container ---------------------- */
    .gstregistration-wrapper {
      max-width: 950px;
      margin: 40px auto;
      background: #ffffff;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e7ff;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      width: 100%;
    }

    .gstregistration-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e40af;
      margin-bottom: 40px;
    }

    .gstregistration-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 12px;
    }

    .gstregistration-group {
      position: relative;
      margin-bottom: 20px;
    }

    .gstregistration-group.full-width {
      grid-column: 1 / -1;
    }

    .gstregistration-label {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.95rem;
      color: #666;
      pointer-events: none;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .gstregistration-input,
    .gstregistration-select,
    .gstregistration-textarea {
      width: 100%;
      padding: 16px;
      border: 1.5px solid #d0d7de;
      border-radius: 12px;
      font-size: 1rem;
      background: #fafbff;
      transition: all 0.3s ease;
      color: #1a1a1a;
    }

    .gstregistration-input:focus,
    .gstregistration-select:focus,
    .gstregistration-textarea:focus {
      outline: none;
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .gstregistration-input:focus + .gstregistration-label,
    .gstregistration-input:not(:placeholder-shown) + .gstregistration-label,
    .gstregistration-select:focus + .gstregistration-label,
    .gstregistration-select:not([value=""]) + .gstregistration-label,
    .gstregistration-textarea:focus + .gstregistration-label,
    .gstregistration-textarea:not(:placeholder-shown) + .gstregistration-label {
      top: -10px;
      left: 12px;
      font-size: 0.75rem;
      color: #3b82f6;
      background: #ffffff;
      padding: 0 6px;
      font-weight: 600;
    }

    /* File Upload Preview */
    .gstregistration-file-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .gstregistration-file-preview img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #d0d7de;
    }

    /* Submit Button */
    .gstregistration-submit {
      display: block;
      width: 100%;
      background: #1e40af;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 30px;
    }

    .gstregistration-submit:hover {
      background: #1d4ed8;
      box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .gstregistration-grid {
        grid-template-columns: 1fr;
      }
    }

    /* gst return  */
        /* ---------------------- Form Container ---------------------- */
    .gst-form-wrapper {
      max-width: 950px;
      margin: 40px auto;
      background: #ffffff;
      padding: 45px 50px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e7ff;
      width: 100%;
    }

    .gst-form-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e40af;
      margin-bottom: 40px;
    }

    /* ---------------------- Grid Layout ---------------------- */
    .gst-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap:10px 12px;
    }

    .gst-form-group {
      position: relative;
      width: 100%;
    }

    .gst-form-group.full-width {
      grid-column: 1 / -1;
    }

    /* ---------------------- Labels & Inputs ---------------------- */
    .gst-form-label {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.95rem;
      color: #666;
      pointer-events: none;
      transition: all 0.3s ease;
      font-weight: 500;
      background-color: transparent;
    }

    .gst-form-input,
    .gst-form-textarea,
    .gst-form-select {
      width: 100%;
      padding: 16px;
      border: 1.5px solid #d0d7de;
      border-radius: 12px;
      font-size: 1rem;
      background: #fafbff;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }

    .gst-form-input:focus,
    .gst-form-textarea:focus,
    .gst-form-select:focus {
      outline: none;
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .gst-form-input:focus + .gst-form-label,
    .gst-form-input:not(:placeholder-shown) + .gst-form-label,
    .gst-form-textarea:focus + .gst-form-label,
    .gst-form-textarea:not(:placeholder-shown) + .gst-form-label,
    .gst-form-select:focus + .gst-form-label,
    .gst-form-select:not([value=""]) + .gst-form-label {
      top: -10px;
      left: 12px;
      font-size: 0.75rem;
      color: #3b82f6;
      background: #ffffff;
      padding: 0 6px;
      font-weight: 600;
    }

    /* ---------------------- File Upload Preview ---------------------- */
    .gst-form-file-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .gst-form-file-preview img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #d0d7de;
    }

    /* ---------------------- Submit Button ---------------------- */
    .gst-form-submit {
      display: block;
      width: 100%;
      background: #1e40af;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 35px;
    }

    .gst-form-submit:hover {
      background: #1d4ed8;
      box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
    }

    /* ---------------------- Responsive ---------------------- */
    @media (max-width: 768px) {
      .gst-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* projext report */
        /* ---------------------- Form Container ---------------------- */
    .project-report-wrapper {
      max-width: 950px;
      margin: 40px auto;
      background: #ffffff;
      padding: 45px 50px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e0e7ff;
      width: 100%;
    }
    .project-report-heading {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #1e40af;
      margin-bottom: 40px;
    }
    /* ---------------------- Grid Layout ---------------------- */
    .project-report-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 12px;
    }

    .project-report-group {
      position: relative;
      width: 100%;
    }

    .project-report-group.full-width {
      grid-column: 1 / -1;
    }

    /* ---------------------- Labels & Inputs ---------------------- */
    .project-report-label {
      position: absolute;
      top: 16px;
      left: 16px;
      font-size: 0.95rem;
      color: #666;
      pointer-events: none;
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .project-report-input,
    .project-report-textarea {
      width: 100%;
      padding: 16px;
      border: 1.5px solid #d0d7de;
      border-radius: 12px;
      font-size: 1rem;
      background: #fafbff;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }

    .project-report-input:focus,
    .project-report-textarea:focus {
      outline: none;
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .project-report-input:focus + .project-report-label,
    .project-report-input:not(:placeholder-shown) + .project-report-label,
    .project-report-textarea:focus + .project-report-label,
    .project-report-textarea:not(:placeholder-shown) + .project-report-label {
      top: -10px;
      left: 12px;
      font-size: 0.75rem;
      color: #3b82f6;
      background: #ffffff;
      padding: 0 6px;
      font-weight: 600;
    }

    /* ---------------------- File Upload Preview ---------------------- */
    .project-report-file-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .project-report-file-preview img {
      max-width: 100px;
      max-height: 100px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid #d0d7de;
    }

    /* ---------------------- Submit Button ---------------------- */
    .project-report-submit {
      display: block;
      width: 100%;
      background: #1e40af;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      margin-top: 35px;
    }

    .project-report-submit:hover {
      background: #1d4ed8;
      box-shadow: 0 6px 15px rgba(29, 78, 216, 0.3);
    }

    /* ---------------------- Responsive ---------------------- */
    @media (max-width: 768px) {
      .project-report-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }


    /* Section background */
.order-filing-section {
  text-align: center;
  padding: 60px 20px;
  margin: 0 auto;
 background: linear-gradient(
  135deg,
  #021044 0%,
  #0a2a8a 25%,
  #4c72fc 50%,
  #0a2a8a 75%,
  #021044 100%
);
/* filter: drop-shadow(0 0 10px #021044); */

}


.order-filing-container {
  text-align: center;
  padding: 60px 20px;
  /* max-width: 1400px; */
  margin: 0 auto;
}

/* Title */
.order-filing-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
   color: white;
}

/* Card grid */
.order-filing-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}

/* Wrapper for nth-child */
.order-filing-card-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Card Base */
.order-filing-card {
  width: 260px;
  height: 220px;
  perspective: 1000px;
  margin: auto;
}

.order-filing-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.order-filing-card:hover .order-filing-card-inner {
  transform: rotateY(180deg);
}

/* Faces */
.order-filing-card-front,
.order-filing-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.order-filing-card-front img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  mix-blend-mode: multiply;
  opacity: 0.85;

}

/* DIFFERENT COLORS USING nth-child on WRAPPER */
.order-filing-card-wrapper:nth-child(1) .order-filing-card-front {
  background: #a5da99;
}
.order-filing-card-wrapper:nth-child(2) .order-filing-card-front {
  background: #ffc46a;
}
.order-filing-card-wrapper:nth-child(3) .order-filing-card-front {
  background: #bda4ff;
}
.order-filing-card-wrapper:nth-child(4) .order-filing-card-front {
  background: #ff8f7b;
}
.order-filing-card-wrapper:nth-child(5) .order-filing-card-front {
  background: #8ccae8;
}
.order-filing-card-wrapper:nth-child(6) .order-filing-card-front {
  background: #ffe066;
}
.order-filing-card-wrapper:nth-child(7) .order-filing-card-front {
  background: #f4b400;
}
.order-filing-card-wrapper:nth-child(8) .order-filing-card-front {
  background: #8fcab2;
}

/* Back Card */
.order-filing-card-back {
  background: #e0b12d;
  color: #fff;
  transform: rotateY(180deg);
  font-size: 14px;
  padding: 25px;
}

/* Responsive */
@media (max-width: 1500px) {
  .order-filing-card-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .order-filing-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .order-filing-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .order-filing-card {
    width: 180px;
    height: 180px;
  }
  .order-filing-card-front p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
   .order-filing-card-container {
    grid-template-columns:repeat(2, 1fr);
  }
  .order-filing-card {
    width: 150px;
    height: 150px;
  }

}

/* New  */

  /* become a partner */
      /* SECTION WRAPPER */
.become-a-partner-section {
  width: 100%;
  background: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

/* MAIN CONTAINER */
.become-a-partner-container {
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT CONTENT */
.become-a-partner-content {
  flex: 1;
  padding-right: 40px;
}

.become-a-partner-subheading {
  color: #2a2a2a;
  font-size: 18px;
  margin-bottom: 8px;
}

.become-a-partner-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

/* LIST */
.become-a-partner-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.become-a-partner-list li {
  font-size: 17px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #333;
}

.become-a-partner-list i {
  color: var(--primary-blue);;
  margin-right: 10px;
  font-size: 18px;
}

/* BUTTONS */
.become-a-partner-buttons {
  display: flex;
  gap: 15px;
}

.become-a-partner-btn {
  padding: 10px 22px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.become-a-partner-btn.outline {
  border: 2px solid var(--primary-blue);;
  color: var(--primary-blue);;
}

.become-a-partner-btn.fill {
  background: var(--primary-blue);;
  color: #ffffff;
}

/* RIGHT IMAGE */
.become-a-partner-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.become-a-partner-image img {
  width: 95%;
  max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .become-a-partner-container {
    flex-direction: column;
    text-align: left;
  }

  .become-a-partner-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .become-a-partner-image {
    justify-content: center;
  }
}


/* wnquiry popup  */
/* Floating Button */
.enquiry-floating-btn {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    background: #03165c;
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 9999;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.enquiry-floating-btn i {
    writing-mode: horizontal-tb;
    font-size: 18px;
}

/* Overlay */
.enquiry-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 9998;
}

/* Popup */
.enquiry-popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 750px;
    transform: translate(-50%, -50%);
    background: #fff;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 9999;
    animation: enquiry-fade-in 0.3s ease;
}

@keyframes enquiry-fade-in {
    from { opacity: 0; transform: translate(-50%, -48%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

/* Close (X) button */
.enquiry-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #000;
    color: #fff;
    width: 28px;
    height: 28px;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
}

.enquiry-close-btn i {
    pointer-events: none;
}

/* Left side */
.enquiry-popup-left {
    background: #212733;
    padding: 25px;
    width: 50%;
    color: #fff;
}

.enquiry-popup-top-text {
    color: #e1e1e1;
    font-size: 14px;
}

.enquiry-popup-heading {
    font-size: 24px;
    font-weight: 700;
}

.enquiry-popup-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Inputs */
.enquiry-input-box {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.enquiry-input-box i {
    margin-right: 10px;
    color: #000;
}

.enquiry-input-box input,
.enquiry-input-box select,
.enquiry-input-box textarea {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

/* Submit Btn */
.enquiry-submit-btn {
    background: #1bb34a;
    width: 100%;
    border: none;
    padding: 12px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
}

/* Right side */
.enquiry-popup-right {
    width: 50%;
    position: relative;
    background: #00a23f;
}

.enquiry-popup-right img {
    width: 100%;
    /* height: 63%; */
    object-fit: cover;
}

.enquiry-contact-box {
    background: #00a23f;
    padding: 20px;
    color: #fff;
    height: 37%;
}

.enquiry-phone {
    font-size: 22px;
}

.enquiry-email {
    font-size: 16px;
}

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

    .enquiry-popup-box {
        width: 95%;
        height: auto;
        flex-direction: column;
    }

    .enquiry-popup-left,
    .enquiry-popup-right {
        width: 100%;
    }

    .enquiry-popup-right img {
        height: 260px;
    }

    .enquiry-contact-box {
        padding: 15px;
        text-align: center;
    }

    .enquiry-close-btn {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .enquiry-popup-left {
        padding: 20px;
    }

    .enquiry-popup-heading {
        font-size: 20px;
    }

    .enquiry-popup-box {
        border-radius: 0;
    }

    .enquiry-floating-btn {
        font-size: 13px;
        padding: 8px 10px;
    }

    .enquiry-close-btn {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}


/* privacy policy  */
.policy-container {
      max-width: 1200px;
      margin: 40px auto;
      background: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .policy-header {
      text-align: center;
      margin-bottom: 40px;
      border-bottom: 3px solid #001d5a;
      padding-bottom: 15px;
    }
    .policy-header h1 {
      color: #001d5a;
      font-size: 2.2rem;
      margin: 0;
    }
    .policy-section {
      margin-bottom: 35px;
    }
    .policy-section h2 {
      color: #001d5a;
      font-size: 1.5rem;
      border-left: 5px solid #efc343;
      padding-left: 15px;
      margin-bottom: 15px;
    }
    .policy-section h3 {
      color: #222;
      font-size: 1.25rem;
      margin-top: 25px;
    }
    .policy-list {
      padding-left: 20px;
    }
    .policy-list li {
      margin-bottom: 8px;
    }
    .policy-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    .policy-table th, .policy-table td {
      border: 1px solid #ddd;
      padding: 12px;
      text-align: left;
    }
    .policy-table th {
      background-color: #001d5a;
      color: white;
    }
    .policy-footer-note {
      background: #e7f3ff;
      padding: 20px;
      border-radius: 8px;
      font-style: italic;
      margin-top: 50px;
      text-align: center;
      border: 1px solid #0066cc;
    }
    @media (max-width: 768px) {
      .policy-container {
        padding: 20px;
        margin: 20px;
      }
      .policy-header h1 {
        font-size: 1.8rem;
      }
    }

    /* terms and condition  */
    .terms-container {
      max-width: 1200px;
      margin: 40px auto;
      background: var(--section-bg);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 29, 90, 0.1);
      border: 1px solid #e2e8f0;
    }

    .terms-header {
      background: linear-gradient(135deg, var(--primary-blue), #003380);
      color: white;
      padding: 50px 30px;
      text-align: center;
    }

    .terms-header h1 {
      font-size: 2.6rem;
      margin: 0 0 10px 0;
      font-weight: 700;
      color: #1e293b;
    }

    .terms-header .terms-subtitle {
      font-size: 1.1rem;
      opacity: 0.95;
      margin-top: 10px;
      color: #1e293b;
    }

    .terms-last-updated {
      background: var(--primary-gold);
      color: var(--primary-blue);
      display: inline-block;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 600;
      margin-top: 15px;
      font-size: 0.95rem;
    }

    .terms-content {
      padding: 50px 60px;
    }

    .terms-section {
      margin-bottom: 45px;
    }

    .terms-section h2 {
      color: var(--primary-blue);
      font-size: 1.55rem;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 3px solid var(--primary-gold);
      display: inline-block;
      font-weight: 700;
    }

    .terms-list {
      padding-left: 22px;
      margin: 15px 0;
    }

    .terms-list li {
      margin-bottom: 12px;
      position: relative;
    }

    .terms-list li::marker {
      color: var(--primary-gold);
      font-weight: bold;
    }

    .terms-highlight {
      background: #fff8e6;
      border-left: 5px solid var(--primary-gold);
      padding: 18px;
      border-radius: 0 8px 8px 0;
      margin: 20px 0;
      font-weight: 500;
    }

    .terms-footer-note {
      background: linear-gradient(135deg, var(--primary-blue), #003380);
      color: white;
      text-align: center;
      padding: 30px;
      font-size: 1.1rem;
      font-weight: 500;
      background: #03165c;
    }

    @media (max-width: 768px) {
      .terms-content {
        padding: 30px 25px;
      }
      .terms-header {
        padding: 40px 20px;
      }
      .terms-header h1 {
        font-size: 2rem;
      }
    }

    /* disclamer  */
    .disclaimer-container {
      max-width: 1200px; 
      margin: 40px auto;
      background: var(--section-bg);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 29, 90, 0.12);
      border: 1px solid #e2e8f0;
    }

    .disclaimer-header {
      background: linear-gradient(135deg, var(--primary-blue), #003380);
      color: white;
      padding: 50px 30px;
      text-align: center;
    }

    .disclaimer-header h1 {
      font-size: 2.6rem;
      margin: 0 0 12px 0;
      font-weight: 700;
    }

    .disclaimer-header .disclaimer-subtitle {
      font-size: 1.15rem;
      opacity: 0.95;
      margin-top: 10px;
    }

    .disclaimer-last-updated {
      background: var(--primary-gold);
      color: var(--primary-blue);
      display: inline-block;
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 700;
      margin-top: 18px;
      font-size: 1rem;
    }

    .disclaimer-content {
      padding: 50px 60px;
    }

    .disclaimer-section {
      margin-bottom: 45px;
    }

    .disclaimer-section h2 {
      color: var(--primary-blue);
      font-size: 1.55rem;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 4px solid var(--primary-gold);
      display: inline-block;
      font-weight: 700;
    }

    .disclaimer-list {
      padding-left: 22px;
      margin: 18px 0;
    }

    .disclaimer-list li {
      margin-bottom: 14px;
      position: relative;
    }

    .disclaimer-list li::marker {
      color: var(--primary-gold);
      font-weight: bold;
    }

    .disclaimer-warning-box {
      background: var(--warning-bg);
      border-left: 6px solid var(--primary-gold);
      padding: 20px;
      border-radius: 0 10px 10px 0;
      margin: 25px 0;
      font-weight: 500;
      box-shadow: 0 4px 15px rgba(239, 195, 67, 0.15);
    }

    .disclaimer-footer-summary {
      background: linear-gradient(135deg, var(--primary-blue), #003380);
      color: white;
      text-align: center;
      padding: 35px 30px;
      font-size: 1.15rem;
      line-height: 1.6;
      font-weight: 500;
    }

    .disclaimer-footer-summary strong {
      color: var(--primary-gold);
    }

    @media (max-width: 768px) {
      .disclaimer-content {
        padding: 35px 25px;
      }
      .disclaimer-header {
        padding: 40px 20px;
      }
      .disclaimer-header h1 {
        font-size: 2.1rem;
      }
    }

    /* refund policy  */
    .refund-container {
      max-width: 1200px;
      margin: 40px auto;
      background: var(--section-bg);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 29, 90, 0.12);
      border: 1px solid #e2e8f0;
    }

    .refund-header {
      background: linear-gradient(135deg, var(--primary-blue), #003380);
      color: white;
      padding: 50px 30px;
      text-align: center;
    }

    .refund-header h1 {
      font-size: 2.6rem;
      margin: 0 0 12px 0;
      font-weight: 700;
    }

    .refund-header .refund-subtitle {
      font-size: 1.15rem;
      opacity: 0.95;
      margin-top: 10px;
    }

    .refund-last-updated {
      background: var(--primary-gold);
      color: var(--primary-blue);
      display: inline-block;
      padding: 10px 26px;
      border-radius: 50px;
      font-weight: 700;
      margin-top: 18px;
      font-size: 1rem;
    }

    .refund-content {
      padding: 50px 60px;
    }

    .refund-section {
      margin-bottom: 48px;
    }

    .refund-section h2 {
      color: var(--primary-blue);
      font-size: 1.55rem;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 4px solid var(--primary-gold);
      display: inline-block;
      font-weight: 700;
    }

    .refund-list {
      padding-left: 22px;
      margin: 18px 0;
    }

    .refund-list li {
      margin-bottom: 14px;
    }

    .refund-list li::marker {
      color: var(--primary-gold);
      font-weight: bold;
    }

    .refund-alert-box {
      background: var(--alert-bg);
      border-left: 6px solid var(--primary-gold);
      padding: 20px 22px;
      border-radius: 0 10px 10px 0;
      margin: 25px 0;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(239, 195, 67, 0.18);
    }

    .refund-footer-summary {
      background: linear-gradient(135deg, var(--primary-blue), #003380);
      color: white;
      text-align: center;
      padding: 38px 30px;
      font-size: 1.18rem;
      line-height: 1.7;
      font-weight: 500;
    }

    .refund-footer-summary strong {
      color: var(--primary-gold);
    }

    @media (max-width: 768px) {
      .refund-content {
        padding: 35px 25px;
      }
      .refund-header {
        padding: 40px 20px;
      }
      .refund-header h1 {
        font-size: 2.1rem;
      }
    }

     /* ligin sidebar  */
.toggle-btn{
      color: #fff;
    font-size: 24px;
    justify-content: center;
    align-items: center;
}

/* Sidebar container */
.profile-sidebar-box{
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0,0,0,0.2);
  padding: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Active sidebar */
.profile-sidebar-active {
  transform: translateX(0);
}

/* Header with Close */
.profile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.profile-sidebar-header h3 {
  font-size: 22px;
  margin: 0;
  font-weight: bold;
  color: #333;
}

.profile-sidebar-header .profile-sidebar-close {
  font-size: 24px;
  cursor: pointer;
  color:  #03165c;
  transition: color 0.2s;
}

.profile-sidebar-header .profile-sidebar-close:hover {
  color: #03165c;
}

/* Body Links / 1 Column */
.profile-sidebar-body {
  display: flex;
  flex-direction: column;
  gap: 15px; /* space between items */
  margin-bottom: 20px;
}

.profile-sidebar-body a {
  padding: 12px 15px;
  background: #f8f8f8;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.profile-sidebar-body a:hover {
  background: #eaeaea;
  transform: translateX(3px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer / Logout */
.profile-sidebar-footer .profile-sidebar-btn-logout {
  width: 100%;
  padding: 12px;
  background: #03165c;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

.profile-sidebar-footer .profile-sidebar-btn-logout:hover {
  background: #041387;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

