:root {
  --primary-color: #000f32;
  --secondary-color: #062673;
  --text-color: #000000;
  --card-bg: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --light-color: #f0f5ff;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --transition-speed: 0.3s;
  --border-radius: 8px;
  --selected: green;
}

body {
  background: var(--light-color) !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

.header {
  background: var(--primary-color);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1001;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 9px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item>a {
  color: white;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
}

.nav-item>a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 0.375rem;
  min-width: 220px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.submenu-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 0.375rem;
  min-width: 220px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.nav-item:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #4b5563;
  padding: 0.625rem 1rem;
  display: block;
  text-decoration: none;
  font-size: 0.875rem;
}

.dropdown-content a:hover {
  background: #f3f4f6;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item>a {
    justify-content: space-between;
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .dropdown-content {
    position: static;
    background: transparent;
    box-shadow: none;
    margin-top: 0.5rem;
    width: 100%;
    border-radius: 0;
  }

  .dropdown-content a {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
  }

  .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* / Updated Banner Styles / */
.banner {
  height: 400px;
  background: linear-gradient(90deg,
      rgb(255 255 255 / 95%) 0%,
      rgb(228 222 242 / 80%) 100%),
    url("../img/architecture-3108075_640.jpg") center / cover;
  margin-top: 68px;
  /* / Height of header / */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

.banner-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.banner-content {
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1f2937;
}

.banner-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #6b7280;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
}

.primary-button {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.primary-button:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(107, 70, 193, 0.2);
}

.secondary-button {
  background: transparent;
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--primary-color);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.secondary-button:hover {
  background: rgba(107, 70, 193, 0.05);
  transform: translateY(-1px);
}

/* / Responsive Banner Styles / */
@media (max-width: 1024px) {
  .banner-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 350px;
  }

  .banner-container {
    padding: 2rem;
  }

  .banner-title {
    font-size: 1.75rem;
  }

  .banner-subtitle {
    font-size: 0.875rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 500px;
  }

  .banner-title {
    font-size: 1.5rem;
  }

  .banner-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .documents-grid {
    gap: 1rem;
  }

  .documents-list {
    padding: 0;
  }

  .documents-list li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
  }
}

/* tab container  */

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.featured-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.featured-heading h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.featured-heading p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tab {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #f5f5f5;
  color: #333;
  cursor: pointer;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab:hover {
  background: #e0e0e0;
}

.tab.active {
  background: var(--primary-color);
  color: white;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.card.visible {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.card-price {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 1rem;
}

.card-description {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-height: 4.8em;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.card.expanded .card-description {
  max-height: 500px;
}

.read-more {
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.read-more:hover {
  text-decoration: underline;
}

.apply-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  cursor: pointer;
  width: 100%;
  font-weight: 500;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tab {
    width: 100%;
    text-align: center;
  }

  .cards-container {
    grid-template-columns: 1fr;
  }
}

/* about  */

.header1 {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.header1 h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: slideDown 0.8s ease-out;
}

.header1 p {
  margin: 0 auto;
  animation: fadeIn 1s ease-out;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  fill: var(--primary-color);
  animation: bounce 2s infinite;
}

.service-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.body-content {
  margin-top: 70px;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .header1 h1 {
    font-size: 2rem;
  }

  .services-grid {
    gap: 1rem;
  }
}

.section-content {
  animation: aboutSlideIn 0.8s ease-out;
}

@keyframes aboutSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* hero section  */

.hero {
  color: var(--white);
  background: url('../image/why_startup_india_online.webp') center / cover;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  transform: rotate(-45deg);
  background-size: 20px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--light-color);
}

.hero p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.img {
  max-width: 100%;
  height: auto;
  display: block;
}
.feature {
  padding: 20px;
  border-left: 4px solid #1a73e8;
  background: #f1f6ff;
  border-radius: 4px;
}

.cta {
  margin-top: 40px;
  padding: 20px;
  color: black;
  text-align: center;
  border-radius: 6px;
  font-size: 18px;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  margin-top: 2rem;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-speed);
}

.cta-button:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.faq-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition-speed);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 500;
  transition: all var(--transition-speed);
}

.accordion-header:hover {
  background: var(--light-color);
}

.accordion-header::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform var(--transition-speed);
}

.accordion-content {
  max-height: 0;
  padding: 0 1.5rem;
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition-speed);
}

.accordion-item.active .accordion-header {
  background: var(--light-color);
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .container {
    padding: 2rem 1rem;
  }

  .body-content {
    margin-top: 0px;
  }

  .accordion-header {
    padding: 1rem;
  }
}

/* footer section  */

.footer {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  color: var(--white);
  padding: 3rem 0;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.footer-section ul li a:hover {
  color: var(--light-color);
}

.contact-info {
  margin-bottom: 0.8rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section {
    text-align: center;
  }
}

.top-bar {
  background: #9cbaff;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar p {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0; 
}

.top-bar .social-icons a {
  color: var(--secondary-color); 
  font-size: 18px;
  text-decoration: none;
}

.top-bar .social-icons a:hover {
  color: #000;
}


.container1 {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 9%;
}

/* Add new breadcrumb styles */
.breadcrumb-container {
  padding: 20px 30px;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--text-light);
  font-size: 14px;
}

.breadcrumb li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb li:not(:last-child):after {
  content: "›";
  margin-left: 8px;
  color: var(--text-light);
}

.breadcrumb li:last-child {
  color: var(--text-dark);
  font-weight: 500;
}

/* Add top margin to content wrapper to accommodate breadcrumbs */
.content-wrapper {
  margin-top: 0;
}

/* Responsive adjustments for breadcrumbs */
@media (max-width: 480px) {
  .breadcrumb {
    font-size: 13px;
  }

  .breadcrumb-container {
    padding: 15px 20px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
  }
}

/* Left Column */
.info-column {
  flex: 0 0 100%;
  background: var(--primary-color);
  padding: 30px;
  color: var(--white);
}

@media (min-width: 768px) {
  .info-column {
    flex: 0 0 33.333%;
  }
}

.radio-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.radio-section {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: var(--border-radius);
}

.radio-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
}

.radio-item label {
  font-size: 14px;
  color: var(--text-color);
}

@media (max-width: 767px) {
  .radio-sections-grid {
    grid-template-columns: 1fr;
  }
}

.info-column img {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.info-column h2 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #e0e0e0 !important;
}

.info-column p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Right Column */
.form-column {
  flex: 0 0 100%;
  padding: 30px;
}

@media (min-width: 768px) {
  .form-column {
    flex: 0 0 66.666%;
  }
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-speed);
}

.pricing-card.selected {
  border-color: var(--selected);
  background-color: var(--light-color);
}

.pricing-card h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.pricing-card p {
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.pricing-card .features {
  max-height: 100px;
  overflow-y: auto;
  margin-bottom: 10px;
  padding-right: 10px;
}

.pricing-card .features::-webkit-scrollbar {
  width: 4px;
}

.pricing-card .features::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 4px;
}

.pricing-card .features li {
  font-size: 14px;
  list-style: none;
  margin-bottom: 8px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card .features li:before {
  content: "•";
  color: var(--secondary-color);
}

.pricing-card i {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: var(--selected);
  display: none;
}

.pricing-card.selected i {
  display: inline;
}

/* Form Styles */
.registration-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.registration-form h2 {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 24px;
}

.registration-form label {
  font-weight: 600;
  color: var(--text-dark);
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"],
.registration-form input[type="file"],
.registration-form input[type="date"],
textarea,
.registration-form select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: border-color var(--transition-speed);
}

.registration-form input[type="text"]:focus,
.registration-form input[type="email"]:focus,
.registration-form input[type="tel"]:focus,
.registration-form input[type="file"]:focus,
.registration-form input[type="date"]:focus,
textarea,
.registration-form select:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.registration-form button {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.registration-form button:hover {
  background-color: var(--primary-color);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.intro {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.section {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

h1,
h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-list,
.requirements-list {
  list-style: none;
}

.feature-list li,
.requirements-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before,
.requirements-list li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.registration-steps {
  list-style: none;
}

.registration-steps li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.registration-steps li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

a:hover {
  color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.documents-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.documents-image {
  width: 70%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.heading{
    color: white;
    font-size: xx-large;
}

.documents-image:hover {
  transform: scale(1.02);
}

.documents-list {
  list-style: none;
  padding: 1rem;
}

.documents-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  color: var(--text-dark);
}

.documents-list li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.documents-list li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.registration-fee {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.advantages-section .advantage-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  border-left: 4px solid var(--secondary-color);
}

.advantage-title {
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.advantage-title:before {
  content: "»";
  margin-right: 0.5rem;
  color: var(--secondary-color);
}

a {
  text-decoration: none;
}

.link_color{
  color: white;
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.advantages-grid {
  gap: 2rem;
  align-items: start;
}

.disadvantages-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.disadvantages-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.disadvantage-item {
  background-color: var(--white);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 0.25rem;
  border-left: 4px solid var(--accent-color);
  transition: transform var(--transition-speed);
}

.disadvantage-item:hover {
  transform: translateX(5px);
}

.disadvantage-title {
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.disadvantage-title:before {
  content: "»";
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .section {
    padding: 1.5rem;
  }

  .disadvantages-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .disadvantages-image {
    max-width: 100%;
    height: auto;
  }

  .disadvantage-item {
    padding: 0.75rem;
  }

  .disadvantage-title {
    font-size: 1rem;
  }

  .disadvantage-item p {
    font-size: 0.875rem;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .documents-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .documents-list {
    padding: 0.5rem;
  }

  .documents-list li {
    font-size: 0.95rem;
  }
}

.contact-section {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.social-links {
  margin-top: 1.5rem;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.faq-title {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.faq-item {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  font-weight: 500;
  background-color: var(--white);
  transition: background-color var(--transition-speed);
}

.faq-question:hover {
  background-color: var(--light-color);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform var(--transition-speed);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-speed);
  background-color: var(--white);
  color: var(--text-light);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.required {
  color: red !important;
  font-weight: 500px;
}

.form-box {
  box-shadow: var(--shadow);
  padding: 0rem !important;
  max-width: 1165px !important;
  background: var(--white) !important;
}

/* Heading Styling */
.llp_heading {
  font-size: 24px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 20px;
}

/* Paragraph Styling */
.llp_para {
  font-size: 16px;
  color: #141414;
  margin-bottom: 20px;
}

/* Table Styling */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.table-bordered th,
.table-bordered td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.table td {
  background-color: #fff;
}

.table-bordered th,
.table-bordered td {
  text-align: left;
  padding: 12px;
  border: 1px solid #ddd;
}

#aadhaar-docs {
  display: none;
  /* Ensure it's hidden by default */
  padding: 10px;
  width: 100%;
  max-width: 734px;
  /* Limit the max width for larger screens */
  border-radius: 8px;
  overflow-x: auto;
  /* Enable horizontal scrolling on smaller screens */
}

#aadhaar-docs table {
  width: 100%;
  border-collapse: collapse;
  /* Clean borders */
}

#aadhaar-docs th,
#aadhaar-docs td {
  padding: 10px;
  text-align: left;
  font-size: 14px;
  border: 1px solid #ddd;
}

#aadhaar-docs th {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  font-weight: bold;
}

#aadhaar-docs td {
  background-color: #fff;
}

#aadhaar-docs .btn {
  color: var(--secondary-color);
  font-weight: bold;
  background: none;
  border: none;
  float: right;
  cursor: pointer;
}

#aadhaar-docs .btn:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  #aadhaar-docs {
    padding: 5px;
  }

  #aadhaar-docs th,
  #aadhaar-docs td {
    font-size: 12px;
    padding: 8px;
  }
}

@media screen and (max-width: 480px) {

  #aadhaar-docs th,
  #aadhaar-docs td {
    font-size: 10px;
    padding: 5px;
  }
}

.container-about {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.container-about > h1, .container-about > h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.about-section, .services-section {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.company-info {
  text-align: center;
}

.contact-details {
  margin-top: 20px;
}

.contact-details p {
  margin: 10px 0;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.services-table th, 
.services-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.services-table thead {
  background-color: var(--primary-color);
  color: var(--white);
}

.services-table .price {
  text-align: right;
  color: var(--secondary-color);
  font-weight: bold;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  transition: background-color var(--transition-speed);
}

.scroll-top:hover {
  background-color: var(--secondary-color);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .container-about {
      width: 95%;
      padding: 10px;
  }

  .services-table {
      font-size: 14px;
  }

  .services-table th, 
  .services-table td {
      padding: 8px;
  }
}
.marquee-container {
    background-color: var(--light-color) !important;
    color: red;
    font-weight: bold;
    padding: 5px 0;
    position: relative; 
    z-index: 1;

}
.nav-links .dropdown-content,
.nav-links .submenu-content {
    position: absolute;  
    z-index: 999;        
}
