
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100&family=Poppins:wght@200;500;600;700;800;900&display=swap');



/* section 2 css */

#duplicate-pan-section {
  margin-left: 50px;
  margin-bottom: 0px;

}

.duplicate-pan-container {
  max-width: 100%;
}

.duplicate-pan-title {
  font-size: 2rem;
  font-weight: 700;
  color: #256d3b;
  text-align: center;
  margin-bottom: 1rem; /* Reduced margin */
      padding: 0 45px !important;
}

.duplicate-pan-description {
  font-size: 1rem;
  color: #000000 !important;
  line-height: 1.8;
  text-align: justify;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding: 0 45px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .duplicate-pan-title {
    font-size: 1.5rem;
  }
  #duplicate-pan-section {

  margin-top:250px;
}


  .duplicate-pan-description {
    font-size: 1rem;
  }
}

  /* section 3  css */
  :root {
    --primary-green: #00703C;
    --text-dark: #333;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --card-bg: #fff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --border-radius: 12px;
  }

 

  #pan-documents-section {
    max-width: 100% !important ;
    margin: 10px auto;
   padding: 0 45px !important;
  }

  #documents-title {
    text-align: center;
    font-size: 33px;
    color: var(--primary-green);
    margin-bottom: 10px;
    margin-top:10px;
        padding: 0 45px !important;
  }

  .section-description {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 auto 40px;
    line-height: 1.6;
    width: 100%;
    text-align: justify;
        padding: 0 45px !important;
  }

  .document-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 0px 35px;
  }

  .document-card {
    background-color: var(--card-bg);
    padding: 20px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    
  }

  .document-card:hover {
    transform: translateY(-4px);
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .card-header img {
    width: 32px;
    height: 32px;
  }

  .card-header h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-dark);
  }

  .document-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
  }

  .section-note {
    text-align: right;
    font-size: 0.85rem;
    font-style: italic;
    color: #777;
    margin-top: 30px;
  }

  @media (max-width: 600px) {
    #documents-title {
      font-size: 1.6rem;
    }

    .document-card {
      padding: 16px 12px;
    }

    .card-header img {
      width: 28px;
      height: 28px;
    }

    .card-header h3 {
      font-size: 0.95rem;
    }
  }
  /* section4 css */
 /* section4 css */
.pan-process-section {
  width: 100%;
  margin: 0 0;
  display: flex;
  justify-content: space-between;
  background-color: #fafafa;
  padding: 20px 100px;
  flex-wrap: wrap;
  gap: 40px;
}

.pan-intro {
  width: 100%;
  padding: 0 15px 40px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  margin-top:10px;
}

.pan-info-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin: 0 auto;
  max-width: 1100px;
  text-align: left;
}

.icon-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  padding: 6px;
}

.process-content {
  flex: 1;
  min-width: 300px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-2px);
}

.icon-wrapper {
  margin-right: 16px;
  flex-shrink: 0;
}

.step-description {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.apply-card {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.apply-card img {
  max-width: 80%;
  height: 450px;
  border-radius: 12px;
}

/* CTA button (optional) */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #005fa3;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .pan-process-section {
    padding: 2px 30px;
    flex-direction: column;
    align-items: center;
  }

  .process-content,
  .apply-card {
    width: 100%;
  }

  .apply-card img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 22px;
  }

  .step-description {
    font-size: 14px;
  }

  .process-step {
    padding: 10px 12px;
  }

  .pan-info-text {
    font-size: 15px;
  }
}

  
  /* css for faqs */
  
  .faq-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #00703C;
    margin-bottom: 30px;
  }

  details {
    background: #ffffff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  details:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  }

  summary {
    font-size: 1.05rem;
    font-weight: 500;
    outline: none;
  }

  details[open] summary {
    color: #00703C;
  }

  details p {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .faq-section h2 {
      font-size: 1.5rem;
    }

    summary {
      font-size: 1rem;
    }
  }
   /* Wrapper for the yellow section with left and right dashed borders */
   #pan-top-banner {
      background-color: #4c9963;
      color: white;
      text-align: center;
      padding: 8px 10px;
      font-size: 14px;
    }

    .pan-service-wrapper {
      background-color: #fde25d;
      border-left: 2px dashed orange;
      border-right: 2px dashed orange;
    }

    .pan-service-container {
      display: flex;
      justify-content: space-around;
      padding: 20px 0;
    }

    .pan-service-box {
      text-align: center;
      flex: 1;
    }

    .pan-service-box:not(:last-child) {
      border-right: 2px dashed orange;
    }

    .pan-icon-img {
      width: 32px;
      height: 32px;
      margin-bottom: 6px;
    }

    .pan-label-text {
      font-size: 14px;
      font-weight: 500;
      color: #000;
      line-height: 1.3;
    }
    .pan-section-area {
  padding: 0;
}
@media (max-width: 768px) {
  .pan-service-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
    gap: 0;
    margin-top:280px!imporant;
  }

  .pan-service-box {
    flex: 0 0 auto;
    min-width: 120px;
    text-align: center;
    border-right: 2px dashed orange;
    padding: 0 10px;
  }

  .pan-service-box:last-child {
    border-right: none;
  }
   .pan-section-area {
 margin-top:250px;
}

  .pan-icon-img {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
  }

  .pan-label-text {
    font-size: 13px;
  }

  #pan-top-banner {
    font-size: 13px;
    padding: 6px 8px;
  }

  /* Optional: Hide scrollbar for a cleaner look */
  .pan-service-container::-webkit-scrollbar {
    display: none;
  }

  .pan-service-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }
}