
.intro-link{
  color: #ffffff;          /* Keeps it white */
    font-weight: 700;       /* Bold appearance */
    text-decoration: none;  /* Removes default underline */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Subtle custom underline */
    transition: all 0.3s ease-in-out;
}
.intro-link:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff; /* Brightens underline on hover */
    opacity: 0.8;
    text-decoration: none;
}

/* ==========================================
   Bootstrap Over-rides
========================================== */
/* Navbar text - force pure white */
.navbar-dark .navbar-nav .nav-link {
  color: #ffffff !important;
}

/* Hover */
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
}

/* Active page */
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
  font-weight: 600;
}



/* ==========================================
   CAPABILITIES – CARD LAYOUT ONLY
   (Bootstrap-safe, standalone)
========================================== */

/* Section spacing */
.capabilities-section {
  padding: clamp(1.5rem, 6vw, 6rem) 0;
}

/* Common section heading */
.section-heading {
  color: #f5f5f5;
  /*font-size: clamp(24px, 5vw, 38px);
  line-height: 1.25;*/
}
/* ------------------------------------------
   DESKTOP CARDS
------------------------------------------ */

.service-card-desktop {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0.5em;
  padding: 1em; /* FIX: single padding owner */
}

.service-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #000000;
}
.service-card-content h4{
  font-weight: 600;
  font-size: 1.15em;
}



/* Image ratio lock */
.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 1em;
  border-radius: 6px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Typography */
.service-heading {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.service-text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}

/* CTA */
.expertise-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0b0b0b;
  color: #ffffff;
  padding: 0.5rem 3.2rem 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* Arrow */
.expertise-card-link::after {
  content: "→";
  position: absolute;
  right: 1.2rem;
  font-size: 1.1rem;
  line-height: 1;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.expertise-card-link:hover {
  background: #000000;
  transform: translateY(-1px);
}

.expertise-card-link:hover::after {
  transform: translateX(3px);
}

/*Step-by-Step in company registeration*/



/* ------------------------------------------
   MOBILE CARDS
------------------------------------------ */

.service-card.mobile-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 1em; /* FIX: consistent mobile padding */
  transition: all 0.3s ease;
}

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

.service-card.mobile-card .service-card-image {
  margin-bottom: 0.75rem; /* FIX: consistent spacing */
}

.service-card.mobile-card .service-card-content {
  color: #000000;
}


/* Mobile Typography */
.service-card.mobile-card h5 {
  font-size: 1.1rem;
  font-weight: 500;
  /*margin-bottom: 0.4rem;*/
}

.service-card.mobile-card p {
  font-size: 0.9rem;
  font-weight: 300;
  /*line-height: 1.4;
  margin-bottom: 0.6rem;*/
}

/* ------------------------------------------
   ICON CARD SUPPORT (unchanged)
------------------------------------------ */

.service-card .service-icon {
  width: 60px;
  height: 60px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.service-card .service-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  max-width: 30px;
  max-height: 30px;
}


/* ==========================================
   WHY CHOOSE TARGOLEGAL
   (Isolated, Bootstrap-safe)
========================================== */

.why-choose-section {
  /*padding: clamp(1.5rem, 6vw, 6rem) 0;*/
  color: #ffffff;
}

.why-choose-section > .container > p {
  margin-bottom: 1.5em;
  font-size: 1.35em;
  max-width: 80em;
}

/* ------------------------------------------
   MOBILE CAROUSEL
------------------------------------------ */

#whyChooseCarousel {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
}

.why-choose-slide {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  padding-bottom: 20px;
}

.why-choose-card {
  border-radius: 15px;
  padding: 1.5em 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  /*border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;*/
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.1);
}

/* Icon */
.why-choose-card .why-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.why-choose-card .why-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Text */
.why-choose-card h5 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-choose-card p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* ------------------------------------------
   MOBILE ARROWS
------------------------------------------ */

.why-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 3;
  padding: 0;
}

.why-arrow-left { left: 4px; }
.why-arrow-right { right: 4px; }

.why-arrow:hover {
  color: #ff6b6b;
}

/* ------------------------------------------
   DOT INDICATORS
------------------------------------------ */

#whyChooseDots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  margin: 0 4px;
  background-color: #ddd;
  padding: 0;
}

#whyChooseDots button.active {
  background-color: #ff6b6b;
}

/* ------------------------------------------
   DESKTOP GRID
------------------------------------------ */

.why-choose-card-desktop {
  padding: 1em 0em;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  color: #ffffff;
}

/* ==========================================
   TESTIMONIAL CARDS - PRODUCTION REBUILD
   ========================================== */

 /* Card must stretch with column */
.testimonial-card {
  width: 100%;
}

/* Flex column with height context */
.testimonial-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Reserve consistent space for text */
.testimonial-text {
  min-height: 320px; /* tune this once */
}

/* Push author to same START line */
.testimonial-author {
  margin-top: auto;
}

/* Avatar */
.testimonial-avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

/* Text */
.testimonial-info h6 {
  margin: 0;
  font-weight: 600;
}

.testimonial-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #777;
}

/* ===========================
   DARK PARTNER STRIP
   =========================== */

.partner-strip-dark {
  background-color: #011226;
  color: #ffffff;
  overflow: hidden;
}

/* Headings & text */
.partner-strip-dark h2,
.partner-strip-dark p {
  color: #ffffff;
}

/* Marquee container */
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
}

/* Moving track */
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 25s linear infinite;
}



/* Logo item */
.logo-item {
  flex: 0 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔥 LOGO → WHITE */
.logo-item img {
  max-height: 40px;
  width: auto;
  opacity: 0.85;

  /* This makes logos white */
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

/* Hover clarity */
.logo-item img:hover {
  opacity: 1;
}

/* Animation */

/*Steps for Registering new style*/
.steps-container {
  max-width: 50em;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Vertical connecting line */
.steps-container::before {
  content: '';
  position: absolute;
  left: 5.5625em; /* "Step" text width (3em) + gap (1em) + half circle (1.5625em) */
  top: 1.5625em; /* Half of circle height to center of first circle */
  height: calc(100% - 3.125em); /* Total height minus one full circle height */
  width: 0.125em;
  background: rgba(255, 255, 255, 0.15);
  z-index: 0;
}

/* Individual Step Item */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.875em;
  margin-bottom: 4.5em;
  position: relative;
  z-index: 1;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item:hover .step-number {
  background-color: #ff5a5f;
  transform: scale(1.05);
}

/* Left Side - Step Label and Number */
.step-left {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1em;
  font-weight: 400;
  text-transform: capitalize;
  width: 3em; /* Fixed width for consistent alignment */
}

.step-number {
  width: 3.125em;
  height: 3.125em;
  background-color: #011226; /* Solid background to cover the line */
  border: 0.125em solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-size: 1.25em;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Right Side - Step Content */
.step-content {
  flex: 1;
  padding-top: 0.25em;
}

.step-content h3 {
  color: white;
  font-size: 1.375em;
  font-weight: 600;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.step-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375em;
  line-height: 1.6;
  margin: 0;
}
/*Step for registering new style ends here*/

/*Sticky Bar with Overview, importance of Registeration, Registration conditions*/
.info-section-wrapper {
  min-height: 100vh;
  padding: 60px 0;
  overflow: visible !important;
}

.info-section-wrapper .container {
  overflow: visible;
}

.info-section-wrapper .row {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
}

/* ============================================
   LEFT SIDEBAR NAVIGATION
   ============================================ */

.info-nav-sidebar {
  position: sticky;
  top: 111px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: calc(100vh - 131px);
  overflow-y: auto;
}

.info-nav-btn {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.info-nav-btn:hover {
  background-color: rgba(255, 90, 95, 0.15);
  border-color: #ff5a5f;
  color: white;
  box-shadow: 0 0 0 2px rgba(255,90,95,0.2);
}

.info-nav-btn.active {
  background-color: #ff5a5f;
  border-color: #ff5a5f;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

/* ============================================
   MAIN CONTENT SECTIONS
   ============================================ */

.info-content-section {
  margin-bottom: 80px;
  scroll-margin-top: 100px;
}

.info-content-section:last-child {
  margin-bottom: 0;
}

.section-indicator {
  width: 60px;
  height: 4px;
  background-color: #ff5a5f;
  border-radius: 2px;
  margin-bottom: 20px;
}

.info-section-title {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

.info-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-text strong {
  color: white;
  font-weight: 600;
}

/* ============================================
   SUBSECTIONS
   ============================================ */

.info-subsection {
  margin-top: 40px;
  margin-bottom: 40px;
}

.info-subsection-title {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.info-sub-heading {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.info-sub-list {
  list-style: none;
  padding-left: 0;
}

.info-sub-list li::before {
  color: #ff5a5f;
}

.info-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.info-list li:before {
  content: "•";
  color: #ff5a5f;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* For ordered lists */
ol.info-list {
  counter-reset: item;
  list-style: none;
}

ol.info-list li {
  counter-increment: item;
}

ol.info-list li:before {
  content: counter(item) ".";
  color: #ff5a5f;
  font-weight: 600;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
}

/* ============================================
   RIGHT SIDEBAR - RELATED ARTICLES
   ============================================ */

.related-articles-sidebar {
  position: sticky;
  top: 111px;
  align-self: flex-start;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  max-height: calc(100vh - 131px);
  overflow-y: auto;
}

.sidebar-title {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-link {
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.article-link:hover .article-title {
  color: #ff5a5f;
}

.article-title {
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.article-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin: 0;
}

/*From the existing pvt ltd company page. A css*/
/* Fix sticky sidebar */
#content-index {
  position: sticky;
  top: 120px; /* match your header height */
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

/* Optional: Smooth Scroll Highlight Active tab styles */
.nav-link.active-section {
  background-color: #ff5a5f !important;
  color: #fff !important;
  font-weight: 600;
}
/*Sticky Bar with Overview, importance of Registeration, Registration conditions*/

/*Style for the testimonial containers*/
.testimonial-slide {
  flex: 0 0 calc(25% - 1.125rem);
  display: flex;
}
.testimonial-card {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-text {
  color: #474747;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0 0 1.5rem 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff6b6b;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h6 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
}

.testimonial-info p {
  margin: 0;
  font-size: 0.75rem;
  color: #777;
  line-height: 1.4;
}

#testimonialCarousel {
  display: flex;
  align-items: stretch;
  transition: transform 0.5s ease;
}

/*Style for the testimonial containers ends here*/

/*Comparison table with PVT,LLP, OPC, Partnership, Sole Proprietorship style*/

.company-switch input {
  display:none;
}

/* TAB BUTTONS */

.company-tab-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.company-tab-buttons label {
  background:#02203c;
  color:white;
  padding:10px 18px;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
  transition:.3s;
}

.company-tab-buttons label:hover {
  background:#ff5a5f;
}

/* ACTIVE TAB */

#pvt:checked ~ .company-tab-buttons label[for="pvt"],
#llp:checked ~ .company-tab-buttons label[for="llp"],
#partnership:checked ~ .company-tab-buttons label[for="partnership"],
#opc:checked ~ .company-tab-buttons label[for="opc"],
#sole:checked ~ .company-tab-buttons label[for="sole"] {
  background:#ff5a5f;
}

/* PANELS */

.company-panel {
  display:none;
}

#pvt:checked ~ .company-content .pvt-panel,
#llp:checked ~ .company-content .llp-panel,
#partnership:checked ~ .company-content .partnership-panel,
#opc:checked ~ .company-content .opc-panel,
#sole:checked ~ .company-content .sole-panel {
  display:block;
}

/* TABLE */

.company-table {
  width:100%;
  border-collapse:separate;
  border-radius: 14px;
  color:white;
}

.company-table th {
  width:40%;
  text-align:left;
  padding:14px;
  background:#02203c;
}

.company-table td {
  padding:14px;
  background:#01203a;
}

.company-table tr {
  border-bottom:1px solid rgba(255,255,255,0.08);
}
/*Comparison table with PVT,LLP, OPC, Partnership, Sole Proprietorship style ends here*/

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*FAQ section style comes under here*/
  .faq-section {
      padding: 50px 0;
      background-color: #011226;
      color: #fff;
  }

  .faq-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 32px;
      font-weight:bolder;
  }

  .faq-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
  }

  .faq-item {
      margin-bottom: 30px;
      width:80%;
  }

  .faq-item h3 {
      margin-bottom: 15px;
      font-size: 18px;
      color: #fff;
  }

  .faq-item p {
      font-size: 14px;
      line-height: 1.6;
      color: #e0e0e0;
  }
/*FAQ section style ends here*/

/* Portrait / thin monitors */
@media (max-width: 1200px) {
  .testimonial-slide {
    flex: 0 0 33.333%;
  }
}

/* ------------------------------------------
   MOBILE / DESKTOP TOGGLE
------------------------------------------ */
@media (max-width: 1199px) and (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* Hide mobile cards on tablet+ */
@media (min-width: 768px) {
  .service-cards-mobile {
    display: none !important;
  }

    .why-choose-card-desktop h5 {
    font-size: 1.3rem;
    font-weight: 500;
  }

  .why-choose-card-desktop p {
    font-size: 15px;
    line-height: 1.6;
  }

  
  
}

/* Hide desktop grid on mobile */
@media (max-width: 767.98px) {
  .service-grid-desktop {
    display: none !important;
  }
  .why-choose-desktop {
    display: none !important;
  }

  .why-choose-section .container {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
  .service-card.mobile-card .service-card-content {
    display: flex;              /* ✅ keep flex */
    flex-direction: column;
    height: 100%;
  }

   .service-card.mobile-card {
    padding: 1em 0.5em;
    border-radius: 10px;
  }

  .service-card.mobile-card .service-card-image {
    margin-bottom: 0.75rem;   /* consistent spacing */
  }

  .service-card.mobile-card .expertise-card-link {
    font-size: 0.85rem;          /* ⬇ smaller text */
    margin-top: auto; 
    border-radius: 999px;
    
  } 
  /*Testimonial Containers*/
  .testimonial-slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
  /*Testimonial Containers ends here*/

/*--------------------------------------------------------------------------------------*/

/*Steps in Company Registration*/
  .steps-container::before {
    left: 1.5625em; /* Center of circle in mobile: half of 3.125em */
    top: 3.5em; /* Below "Step" label + circle */
    height: calc(100% - 7em); /* Adjusted for mobile layout */
  }
  
  .step-item {
    gap: 1em;
    margin-bottom: 3em;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .step-left {
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
    width: 3.125em; /* Fixed width equal to circle */
  }
  
  .step-label {
    /*font-size: 0.625em;
    width: auto;
    text-align: center;*/
    display: none;
  }
  
  .step-number {
    width: 3.125em;
    height: 3.125em;
    font-size: 1em;
    background-color: #011226; /* Solid background */
  }
  
  .step-content {
    flex: 1;
    padding-top: 0;
  }
  
  .step-content h5 {
    font-size: 1.125em;
    margin-bottom: 0.5em;
  }
  
  .step-content p {
    font-size: 0.875em;
    line-height: 1.5;
  }
/*Steps in Company Registration ends here*/
.dark-section {
  background: #011226;
  color: #fff;
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: #fff;
}

/* ===== LEFT NAVIGATION ===== */
.content-index {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-index .nav-link {
  background: #0c1c2e;
  color: #cfd8e3;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
  transition: 0.25s;
}

.content-index .nav-link:hover {
  background: #ff5a5f;
  color: #fff;
}

/* Active state used by your JS */
.nav-link.active-section {
  background: #ff5a5f !important;
  color: #fff !important;
  font-weight: 600;
}

/* ===== CONTENT ===== */
.content-section {
  margin-bottom: 70px;
  scroll-margin-top: 120px;
}

.content-section p {
  color: #d6deea;
  line-height: 1.7;
}

/* Accent line */
.content-section h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: #ff5a5f;
  margin-bottom: 14px;
  border-radius: 3px;
}

/* ===== RIGHT SIDEBAR ===== */
.related-articles-sidebar {
  position: sticky;
  top: 110px;
  background: #0c1c2e;
  border-radius: 14px;
  padding: 20px;
}

/*Sticky bar with Overview,Importance of Registration, Registration Conditions*/
 .info-section-wrapper {
    padding: 30px 0;
  }
  
  .info-nav-sidebar {
    gap: 6px;
  }
  
  .info-nav-btn {
    min-width: 130px;
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .section-indicator {
    width: 50px;
    height: 3px;
  }
  
  .info-section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .info-text {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .info-subsection-title {
    font-size: 20px;
  }
  
  .info-sub-heading {
    font-size: 16px;
  }
  
  .info-list li {
    font-size: 15px;
    padding-left: 20px;
  }
  
  .info-content-section {
    margin-bottom: 50px;
  }
/*Sticky bar with Overview,Importance of Registration, Registration Conditions*/

/*STICKY Nav mobile optimised*/

/*Sticky Nav mobilie optimised ends here*/

/*Comparison table mobile*/
  .company-table th,
  .company-table td{
    display:block;
    width:100%;
  }

  .company-table th{
    background:#011a30;
  }

  .company-table td{
    margin-bottom:15px;
  }
/*Comparison table mobile ends here*/

/*----------------------------------------------------------------------*/

/*FAQ mobile sections comes below here*/
  .faq-section .container {
      margin: 0 10px !important;
      max-width: calc(100% - 20px) !important;
    }
    
    .faq-grid {
      grid-template-columns: 1fr !important;
      gap: 15px !important;
    }
    
    .faq-item {
      width: 100% !important;
    }
/*FAQ mobile section ends here*/
/*--------------------------------------------------------------*/
}




/* Mobile tweaks */
@media (max-width: 576px) {
  .logo-item {
    padding: 0 24px;
  }

  .logo-item img {
    max-height: 32px;
  }
  
}
