
/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: #fff7d5;
    border-radius: 15px;
    max-width: 100%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #6c5ce7;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #fd79a8);
    border-radius: 3px;
}

.section-subtitle {
    color: #636e72;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.title-decoration {
    width: 220px;
    height: 2px;
    background: linear-gradient(90deg, #6c5ce7, #fd79a8);
    margin: 15px auto 0;
    border-radius: 2px;
}

.steps-container {
    padding: 20px 0;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}

.step {
   min-width: 280px;
    max-width: 100%;
    display: block;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
}

.step-icon img {
    width: 400px;
    height: auto;
    max-width: 100%;
    margin-top: 35px;
    margin-bottom: 35px;
    border-radius:10%;
    transition: transform 0.3s ease;
}

.step-content {
    padding: 30px;
    background-color: transparent;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    width: 1000px;
    max-width: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: -55px auto 20px;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 600;
}

.title-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #fd79a8);
    margin: 0 auto 15px;
    border-radius: 3px;
}

.step p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    color: #6c5ce7;
}

.step-arrow svg {
    transform: rotate(90deg);
}

/* Hover Effects */
.step:hover .step-icon img {
    transform: scale(1.05);
}

.step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
    border-color: #6c5ce7;
}

.step:hover .title-divider {
    width: 70px;
}

/* Responsive */
@media (max-width: 992px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 90%;
    }
}
/* How It Works Section Ends */
/*Content Section*/
#ts {
    /* Basic Container */
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    padding: 20px;
    max-width:90%;
    position: relative;
    overflow: hidden;
    margin:0 auto;
  }
   
#ser{
    padding:20px 0 0 0;
}
    .search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

.search-form input[type="text"] {
  flex: 1;
  padding: 12px 18px;
  font-size: 16px;
  border: 0px solid var(--primary-color);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  outline: none;
  transition: border 0.3s ease;
}

.search-form input[type="text"]:focus {
  border-color: #007bff;
}

.search-form button {
  padding: 12px 20px;
  font-size: 16px;
  border: 0px solid #fff;
  background-color: var(--primary-color);
  color: white;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-left: none;
}

.search-form button:hover {
  background-color: #0056b3;
}
@media (max-width: 768px) {
  .tabbed-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .tabbed-section h2 {
    font-size: 1.3rem;
  }
}
h2{
    font-family: "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .pdf-tools-heading, h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .pdf-tools-heading, h2 {
    font-size: 18px;
    line-height: 1.6;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
 .p-content {
    padding: 80px 40px;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius:15px;
    margin:50px auto;
   max-width:90%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-description {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.content-block {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.content-icon {
    font-size: 28px;
    color: var(--primary-color);
    background: rgba(74, 107, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-text p {
    color: var(--secondary-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.key-points {
    list-style: none;
    margin-top: 20px;
}

.key-points li {
    margin-bottom: 12px;
    text-align:left;
}

.key-points i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 0.9em;
}

/* Dark mode adjustments */
.dark-mode .content-icon {
    background: rgba(74, 107, 255, 0.2);
}

@media (max-width: 768px) {
    .content-block {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}
/*Content Section Ends Here*/

/* FAQ Styles */

  .faq-section {
    background: #ffedb3;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    margin-top:0px;
  }

  .faq-container {
    max-width: 800px;
    margin: auto;
  }

  .faq-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
  }

  .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background: #fff;
  }

  .faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: #fffbe9;
    color: #000000;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .faq-question:hover {
    background: #ffd92400;
  }

  .faq-answer {
    display: none;
    padding: 15px 20px;
    color: #444;
    background: #fdfdfd;
  }

  .faq-item.active .faq-answer {
    display: block;
  }
  /*Faq Style Ends*/
  
  
  /*Blog Archive Page Section Starts*/
  
  /* Blog Section Container */
.sp-blog-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Blog Title */
.sp-blog-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin:30px auto;
  color: #1e293b;
}

/* Grid container for blog posts */
.sp-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* 2 columns for medium screens */
@media (min-width: 568px) {
  .sp-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
}

/* 3 columns for large screens */
@media (min-width: 900px) {
  .sp-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Post Card */
.sp-post-card {
  display: none; /* Hidden by default */
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-top: 4px solid #d89f21;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-post-card.visible {
  display: flex; /* Show when made visible via JS */
}

.sp-post-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.08),
    0 0 0 4px rgba(8, 171, 177, 0.08);
}

/* Image Wrapper */
.sp-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.sp-post-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  border-radius: 12px 12px 0 0;
}

/* Post Content */
.sp-post-content {
  padding: 20px;
  background-color: #fffedd;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sp-post-content a{
    text-decoration: none;
}

.sp-post-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.sp-post-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.4;
}

.sp-post-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Read More Button */
.read-more {
  align-self: flex-start;
  padding: 10px 20px;
  background: linear-gradient(to right, #eecd74, #f1b419);
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.3s ease;
  width:121px;
  margin:0px auto;
}

.read-more:hover {
  background: linear-gradient(to right, #ecdcb1, #b4850f);
}

/* Load More Button */
.load-more-btn {
  display: block;
  margin: 40px auto 0;
  padding: 14px 40px;
  background-color: #4a5f5f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more-btn:hover {
  background-color: #161919;
}
  
  /*Blog Archive Page Section Ends*/
  
  /*Single Blog Section Starts*/
  /* === Layout Wrapper === */
.bl-contact-wrapper {
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px 20px;
}

/* === Featured Image === */
.bl-bl-featured-image-wrapper {
  width: 65%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin: 40px auto;
}

.bl-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.bl-images{
    width: 60%;
  height: auto;
  display: block;
  object-fit: cover;
  margin:0px auto;
}

/* === Main Content === */
.bl-p-content {
  padding: 30px;
  background-color: #ffedb3;
  border-top: 2px solid #745300;
  border-bottom: 1px solid #cccccc;
  border-radius: 15px;
}

/* === Section Header === */
.bl-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.bl-section-header h1 {
  font-size: 2.2rem;
  color: #654900;
  margin-bottom: 15px;
}

.bl-section-description {
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === Content Blocks === */
.bl-content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.bl-content-text{
    width: 100%;
}

.bl-content-text h2 {
  font-size: 1.6rem;
  margin:15px 0px;
  color: #1e293b;
}
.bl-content-text h3 {
  font-size: 1.3rem;
  margin:15px 0px;
  color: #1e293b;
}
.bl-content-text h4 {
  font-size: 1.1rem;
  margin:15px 0px;
  color: #1e293b;
}

.bl-content-text p {
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.bl-content-text p a {
  color: #0b007e;
  text-decoration: none;
  font-weight: bold;
}


/* === Bullet Points === */
.bl-key-points {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
}

.bl-key-points li {
  text-align: left;
  color: #1e293b;
  border:none !important;
}



.bl-arrow {
  color: #654900;
  font-size: 1.2em;
  margin-right: 6px;
  display: inline-block;
  transform: translateY(1px);
}


.bl-key-points li strong {
  word-break: break-word;      /* Break long words at any point */
  overflow-wrap: break-word;   /* Wrap overflow words */
  white-space: normal;          /* Allow wrapping */
}


/* === Table Wrapper === */
.bl-contact-table-wrapper {
  display: flex;
  justify-content: center;
  /*width: 100%;*/
  margin: 20px auto;
}

/* === Table Styling (Desktop) === */
.bl-contact-table {
  width: 90%;
  /*max-width: 800px;*/
  border-collapse: collapse;
  background: #fffef5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.95rem;
  text-align: center;
}

/* === Table Header === */
.bl-contact-table thead {
  background-color: #facb1c;
  color: #000;
  text-align: left;
}

.bl-contact-table thead th {
  padding: 14px 16px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

/* === Table Body === */
.bl-contact-table tbody tr:nth-child(even) {
  background-color: #fffef0;
}

.bl-contact-table tbody tr:nth-child(odd) {
  background-color: #ededed;
}

.bl-contact-table tbody tr:hover {
  background-color: #fff4d4;
}

.bl-contact-table tbody td {
  padding: 14px 16px;
  border-top: 1px solid #eee;
  color: #1e293b;
}

/* === Link Styling (if any inside) === */
.bl-contact-table a {
  color: #0b007e;
  text-decoration: none;
  font-weight: bold;
}

/* === Mobile Responsive Styling === */
@media (max-width: 520px) {
  .bl-contact-table thead {
    display: none;
  }

  .bl-contact-table,
  .bl-contact-table tbody,
  .bl-contact-table tr,
  .bl-contact-table td {
    display: block;
    width: 100%;
    background-color: #fffbe9;
  }

  .bl-contact-table tr {
    margin-bottom: 15px;
    background: #fffef5;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }

  .bl-contact-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    font-size: 0.9rem;
  }

  .bl-contact-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #654900;
    flex-basis: 50%;
    text-align: left;
    font-size: 0.85rem;
  }

  .bl-contact-table td:last-child {
    border-bottom: none;
  }

  /* Ensure mobile background stays consistent */
  .bl-contact-table tbody tr:nth-child(even),
  .bl-contact-table tbody tr:nth-child(odd) {
    background-color: #fffef5 !important;
  }

  .bl-contact-table tbody tr:hover {
    background-color: #fff4d4;
  }
}

 .p-content a, .bl-p-content a {
    color: #0b007e;
    text-decoration: none;
    font-weight: bold;
}
.b-text-underline{
    text-decoration: underline dashed brown;
    text-decoration-thickness: 2px;
}
 
