
.blog-page-wrapper {
    
    color: white;
    padding: 40px 20px;
}

.blog-container {
    max-width: 1300px; 
     margin: 0 auto;
    position: relative;
}


.blog-page-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.blog-text {
    /* width: 50%; */
    padding: 20px;
}

.blog-category {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    color: white;
    text-decoration: none;
}

.blog-title {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-description {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    line-height: 1.2;
}

.author-name {
    font-weight: bold;
    font-size: 14px;
}

.author-date {
    font-size: 12px;
    opacity: 0.8;
}

.blog-image {
    /* width: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-img {
    max-width: 325px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.page-container{
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}
.page-wrapper{
 
    padding: 0 200px;
    position: relative;
    z-index: 5;
    top: 20px;
  
}

.page-wrapper-position{
   display: flex;
    gap: 20px;
}

.toc-container {

    margin-top: 20px;

  }
  
  .toc {
    /* width: 320px; */
    max-height: 80vh;
    overflow-y: auto;
    background-color: #ffffff;
    border: 2px solid #e2e2e2;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    transition: 0.3s ease-in-out;
    top: 20px;
  }
  
  .toc h2 {
    font-size: 18px;
    font-weight: bold;
    color: #1f0202;
    margin-bottom: 10px;
  }
  .toc .scroll-to{
    font-size: 12px;
    color: #423030;
    margin-bottom: 10px;
  }
  .list {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .list ul {
    list-style-type: circle;
    padding-left: 20px;
  }
  
  .list li {
    font-size: 14px;
    color: #555555;
    margin-bottom: 8px;
  }
  
  .list li a {
    text-decoration: none;
    color: #555555;
    transition: color 0.3s ease;
  }
  
  .list li a:hover {
    color: #000000;
    font-weight: bold;
  }


.main-content{
  width: 540px;

}

  .feat-container{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .feature-con{
    width: 540px;
    background-color: #ffffff;
     padding: 20px;
    top: 20px;
   
  }
  .feature-con p{
    font-size: 16px;
    color: #46362e;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.4;
    padding-bottom: 5px;
  }
  .content-section{
    padding-bottom: 10px; 
  }
  .content-section h2, h3{
    font-size: 20px;
    color: #290e01;
    font-weight: 500;
    letter-spacing: 1px;
    padding-bottom: 5px;
   
  }
  .content-section p{
    font-size: 16px;
    color: #46362e;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.4;
    padding-bottom: 5px;
  }
  .blogger-section {
    max-width: 350px;
    width: 100%;
    background-color: #f3f4f6;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #291203;
    margin-bottom: 1rem;
  }
  
  .blog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .blog-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    color: #4b5563;
    transition: color 0.3s;
  }
  
  .blog-item img {
    width: 80px;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
  }
  
  .blog-item span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
  }
  
  .blog-item:hover {
    color: #111827;
  }

 
.contact-form {
    background:  #f3f4f6;;
    padding: 20px;
    border-radius: 8px;
    box-shadow:0 10px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
  }
  
  .contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  
  .form-row {
    display: flex;
    gap: 10px;
  }
  
  .form-group {
    position: relative;
    flex: 1;
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 40px 12px 15px; 
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 14px;
  }
  

.custom-phone-field {
    display: flex; 
    align-items: center; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
    padding: 5px; 
    gap: 10px; 
    background-color: #f9f9f9; 
  }
  .form-group #name, #email{
    width: 100%;
  }
  .custom-phone-field .icon {
    font-size: 18px; 
    color: #E83209; 
  }
  
  .custom-phone-field .country-code {
    border: none;
    outline: none;
    font-size: 12px;
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 4px;
    width: 21%;
    margin-left: 21px;
  }
  
  .custom-phone-field .phone-input {
    border: none; 
    outline: none; 
    flex: 1; 
    font-size: 14px; 
    padding: 5px 10px; 
    background-color: transparent; 
  }
  
  .custom-phone-field:hover {
    border-color: #020f2a; 
  }
  
  .custom-phone-field:focus-within {
    border-color: #E83209; 
  }
  
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: #E83209;
    padding-left: 30px; 
   
  }
  
  
  .form-group label {
    position: absolute;
    top: 8px;
    left: 34px;
    font-size: 14px; 
    color: #aaa; 
    transition: all 0.3s ease; 
    pointer-events: none; 
  }
  .form-group email{
    width: 0;
  }
  
  .form-group.active label {
    top: -8px; 
    left: 15px; 
    font-size: 12px; 
    color: #020f2a; 
  }
  
  
  textarea {
    resize: none;
    height: 100px;
  }
  
  button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #020f2a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #E83209;
  }
  
  /* Icon Styling */
 .form-icon {
    position: absolute;
    top: 18px;
    left: 10px;
    font-size: 12px;
    color: #E83209;
  }
  .main-container {
    display: grid;
    grid-template-columns: 250px 1fr 400px; 
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
    align-items: start;
  }
  
  
  aside {
    position: sticky;
    top: 2rem; 
  }
  
  
  .sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  @media screen and (max-width: 1100px) {
    .toc{
     width: 279px;
    } 
  }
  
  @media (max-width: 1024px) {
     .readcrumb-wrap-blog{
        height: 100vh;
     }
  
  }
        
  @media (max-width: 756px) {
    .main-container {
      grid-template-columns: 1fr; 
      gap: 1rem;
    }
  
    aside,
    .main-content,
    .sidebar-right {
      width: 100%;
    }
    .breadcrumb-wrap-blog{
     height: 80vh!important;
    }
    .blogger-section {
      max-width: 650px;
      /* width: 100%; */
      background-color: #f3f4f6;
      border-radius: 1rem;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin: 0 auto;
  }
    aside {
      position: relative;
      top: 0;
      margin-bottom: 1rem;
    }
  
    .main-content {
      margin-bottom: 1rem;
    }
  
    .sidebar-right {
      margin-bottom: 1rem;
    }
  }
  
  @media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }
  }

  
  