.innerbannerbg img {
  object-position: 2% 61%;
}
.bloglist-section {
  overflow: visible !important;
}
.sidebar-widget-wrap {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}

.widget-header-title {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 20px;
}

/* Search Widget */
.search-input-wrapper {
  position: relative;
}

.search-input-field {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input-field:focus {
  border-color: rgba(var(--second-color), 1);
}

.search-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

/* Categories Widget */
.category-list-items {
  list-style: none;
}

.category-list-item {
  border-bottom: 1px solid #f0f0f0;
}

.category-list-item:last-child {
  border-bottom: none;
}

.category-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.category-item-link:hover .category-item-name {
  color: rgba(var(--second-color), 1);
}

.category-item-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.category-item-count {
  font-size: 14px;
  color: #999;
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 12px;
}

/* Related Posts Widget */
.related-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-post-card {
  display: flex;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background-color: rgba(246, 249, 255, 1);
  border-radius: 5px;
}

.related-post-thumbnail {
  width: 246px;
  height: 124px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.related-post-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #999;
}

.related-post-author {
  display: flex;
  align-items: center;
  gap: 5px;
}

.related-post-author-img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.related-post-date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sidebar-widget-box {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar-widget-wrap {
    max-width: 100%;
  }

  .sidebar-widget-box {
    padding: 20px;
  }

  .widget-header-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sidebar-widget-box {
    padding: 18px;
  }

  .related-post-thumbnail {
    width: 70px;
    height: 70px;
  }

  .related-post-title {
    font-size: 13px;
  }
}

/* /* <<<<<< ************* BLOG SECTION CSS START   **************** >>>>>> * */

.pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  justify-content: center;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f0f2f5;
  color: #666;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background: #e0e3e7;
  color: #333;
}

.pagination-btn.pagination-active {
  background: rgba(var(--main-color), 1);
  color: white;
}

.pagination-btn.pagination-active:hover {
  background: rgba(var(--main-color), 0.9);
}

.pagination-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f0f2f5;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pagination-arrow:hover {
  background: #e0e3e7;
  color: #333;
}

.pagination-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-arrow:disabled:hover {
  background: #f0f2f5;
  color: #666;
}

.pagination-arrow i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 480px) {
  .pagination-wrapper {
    gap: 6px;
    padding: 10px 12px;
  }

  .pagination-btn,
  .pagination-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .pagination-arrow i {
    font-size: 12px;
  }
}
.blog-card-item {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  margin-bottom: 24px;
  flex-direction: column;
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(var(--second-color), 1);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
}

.blog-card-date,
.blog-card-read-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-date i,
.blog-card-read-time i {
  color: rgba(var(--second-color), 1);
  font-size: 14px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 600;
  color: rgba(var(--black-color), 1);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 5px;
  border-top: 0px solid #eee;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card-author-img {
  width: 35px !important;
  height: 35px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(var(--second-color), 1);
}

.blog-card-author-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--black-color), 1);
}

.blog-card-read-more,
.blog-card-read-more:focus,
.blog-card-read-more:active,
.blog-card-read-more:visited {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(var(--second-color), 1);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
  box-shadow: none !important;
  border: 0;
  background-color: transparent;
}

.blog-card-read-more:hover {
  gap: 10px;
}

.blog-card-read-more i {
  font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-card-image {
    height: 200px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-content {
    padding: 16px;
  }

  .blog-card-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .blog-card-image {
    height: 180px;
  }

  .blog-card-title {
    font-size: 16px;
  }

  .blog-card-description {
    font-size: 13px;
  }
}
/* /* <<<<<< ************* BLOG SECTION CSS END   **************** >>>>>> * */

/* /* <<<<<< ************* BLOG Details SECTION CSS start   **************** >>>>>> * */

.post-detail-container {
  margin: 0 auto;
  background: white;
  overflow: hidden;
}

.post-featured-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content-wrapper {
  padding: 30px 0px;
}
.post-content-wrapper h3 {
  font-size: 24px;
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 10px;
}
.post-content-wrapper h4 {
  font-size: 20px;
  color: #1a1a2e;
  font-weight: 600;
  margin-bottom: 10px;
}
.post-meta-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-author-info img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.post-author-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.post-date-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.post-date-badge i {
  color: rgba(var(--second-color), 1);
}

.post-category-badge {
  background: rgba(var(--second-color), 1);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.post-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-intro-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.post-body-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

.post-bullet-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.post-bullet-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.post-bullet-item::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: rgba(var(--second-color), 1);
  font-size: 12px;
}

.post-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.post-gallery-image {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.post-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-conclusion-text {
  font-size: 16px;
  color: #444;
  margin-top: 25px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .post-featured-image {
    height: 280px;
  }

  .post-content-wrapper {
    padding: 25px 25px;
  }

  .post-main-title {
    font-size: 26px;
  }

  .post-intro-text,
  .post-body-text,
  .post-conclusion-text {
    font-size: 15px;
  }

  .post-image-gallery {
    grid-template-columns: 1fr;
  }

  .post-gallery-image {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .post-featured-image {
    height: 240px;
  }

  .post-content-wrapper {
    padding: 20px 18px;
  }

  .post-main-title {
    font-size: 22px;
  }

  .post-meta-header {
    gap: 10px;
  }

  .post-gallery-image {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .bloglist-section .mainrowsec {
    flex-direction: column-reverse;
  }
  .sidebar-widget-wrap {
    margin-top: 24px;
  }
}
@media (max-width: 991px) {
  .post-content-wrapper {
    padding: 20px 20px;
  }
  .post-featured-image {
    height: 216px;
  }
  .post-meta-header {
    gap: 13px;
  }
  .post-main-title {
    font-size: 23px;
    margin-bottom: 11px;
    line-height: normal;
  }
  .post-intro-text {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  .post-body-text {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .post-bullet-item {
    padding-left: 23px;
    font-size: 13px;
    line-height: 19px;
  }
  .post-conclusion-text {
    font-size: 14px;
    margin-top: 17px;
    line-height: 1.5;
  }
  .sidebar-widget-box {
    padding: 13px;
  }
}
@media (max-width: 580px) {
  .post-main-title {
    font-size: 18px;
  }
}
/* /* <<<<<< ************* BLOG Details SECTION CSS end   **************** >>>>>> * */
.pagibox {
  text-align: center;
  margin-top: 20px;
}
.pagibox small {
  font-size: 12px;
  color: #292929;
  margin-bottom: 10px;
}

.blogtitle-head {
  margin-bottom: 30px;
}
.blogtitle-heading {
  font-size: 40px;
  font-weight: 500;
  color: #14183e;
}

.section-heading-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e0e0e0;
}

.feather-icon-decoration {
  width: 80px;
  height: 80px;
}

.main-section-title-heading {
  font-size: 2.2rem;
  font-weight: 400;
  color: #063771;
  margin: 0;
}

.author-profile-content-box {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.author-profile-image-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-photo-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details-text-section {
  flex: 1;
}

.post-content-wrapper .author-full-name-title {
  font-size: 30px;
  font-weight: 700;
  color: #e05316;
  margin-bottom: 15px;
}

.author-biography-paragraph {
  font-size: 18px;
  line-height: 26px;
  color: #343434;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-heading-wrapper {
    gap: 12px;
  }

  .feather-icon-decoration {
    width: 38px;
    height: 38px;
  }

  .main-section-title-heading {
    font-size: 1.9rem;
  }

  .author-profile-content-box {
    flex-direction: column;
    gap: 20px;
  }

  .author-profile-image-wrapper {
    width: 120px;
    height: 120px;
  }

  .author-full-name-title {
    font-size: 1.6rem;
  }

  .author-biography-paragraph {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .main-section-title-heading {
    font-size: 1.6rem;
  }

  .author-profile-image-wrapper {
    width: 100px;
    height: 100px;
  }

  .author-full-name-title {
    font-size: 1.4rem;
  }

  .author-biography-paragraph {
    font-size: 0.95rem;
  }
}
.replay-formsec {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.smalltextsec-box {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.replay-form {
  margin-top: 20px;
}
.submitformbtn {
  background-color: #f2873b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.replay-form input,
.replay-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #d5e6f5;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
  resize: vertical;
  background-color: #f4f8fb;
  box-shadow: none;
}
.replay-form label {
  font-size: 14px;
  color: #000;
  margin-bottom: 9px;
}
.replay-form input:focus,
.replay-form input:hover,
.replay-form textarea:focus,
.replay-form textarea:hover {
  outline: none;
  box-shadow: none;
}
.contact-info-cta-container {
  width: 100%;
  background: rgba(167, 201, 255, 0.26);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0px 3px 99px 0px rgba(0, 0, 0, 0.03);
}

.cta-main-heading-text {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 24px;
  margin-bottom: 15px;
}

.cta-subheading-description {
  font-size: 14px;
  color: #757575;
  margin-bottom: 28px;
  line-height: 1.6;
}

.phone-number-display-box {
  background: #ffffff00;
  border: 1px solid #000;
  border-radius: 0%;
  padding: 18px 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 29px;
}

.phone-number-display-box:hover {
  border-color: #1a252f;
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.15);
  /* transform: translateY(-2px); */
}

.contact-phone-number-text {
  font-size: 25px;
  font-weight: 500;
  color: #000000;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info-cta-container {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .cta-main-heading-text {
    font-size: 1.7rem;
  }

  .cta-subheading-description {
    font-size: 1rem;
  }

  .phone-number-display-box {
    padding: 18px 25px;
  }

  .contact-phone-number-text {
    font-size: 1.9rem;
  }
}

@media (max-width: 576px) {
  .contact-info-cta-container {
    padding: 35px 25px;
    border-radius: 16px;
  }

  .cta-main-heading-text {
    font-size: 1.5rem;
  }

  .cta-subheading-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .phone-number-display-box {
    padding: 16px 20px;
  }

  .contact-phone-number-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 400px) {
  .cta-main-heading-text {
    font-size: 1.3rem;
  }

  .contact-phone-number-text {
    font-size: 1.4rem;
  }
}
