
*{
font-family: "Roboto Serif", serif;
/* outline: 1px solid red; */
}
.Single-page-banner {
  position: relative;
  padding: 100px 20px 150px; /* enough bottom space for elements */
  text-align: center;
  background-color: #0A97BE;
}

.Single-page-banner h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
}
@media (max-width:486px) {
  .Single-page-banner h1{
    font-size: 32px !important;
  }
}
.Single-page-banner-footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.Single-page-banner-timestamp {
  font-size: 14px;
  color: white;
}

.Single-page-banner-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Single-page-banner-profile-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.Single-page-banner-profile-info {
  text-align: left;
}

.Single-page-banner-author-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.Single-page-banner-author-desc {
  margin: 0;
  font-size: 13px;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .Single-page-banner-footer {
    /* flex-direction: column-reverse; */
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .Single-page-banner-timestamp {
    margin-top: 10px;
  }

  .Single-page-banner-profile-info {
    text-align: center;
  }
}

 /* Sidebar Sticky Wrapper */
/* TOC Box Styling with Background Gradient */
.Single-page-toc-box {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border:1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #00aeef #f0f0f0;
  animation: fadeSlideIn 0.6s ease-in-out both;
}

/* Entry Animation */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Webkit Scrollbar */
.Single-page-toc-box::-webkit-scrollbar {
  width: 6px;
}
.Single-page-toc-box::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.Single-page-toc-box::-webkit-scrollbar-thumb {
  background-color: #00aeef;
  border-radius: 10px;
}

/* TOC Header */
.Single-page-toc-box h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  text-align: center;
}

/* List and Item */
.Single-page-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 8px solid #e0e0e0;
}

.Single-page-toc-list li {
  padding: 12px 8px 12px 20px;
  margin-bottom: 8px;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: slideInItem 0.4s ease forwards;
  animation-delay: calc(0.05s * var(--i)); /* Used with JS for stagger */
  opacity: 0;
}

/* TOC Item Animation */
@keyframes slideInItem {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Active Line Indicator */
.Single-page-toc-list li.active::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #00AEEF;
  border-radius: 12px;
}

/* TOC Links */
.Single-page-toc-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Arrow animation */
.Single-page-toc-list a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

/* Hover effect */
.Single-page-toc-list li:hover {
  background-color: rgba(0, 174, 239, 0.06);
  transform: translateX(4px);
}

/* Active item styling */
.Single-page-toc-list li.active a {
  color: #00AEEF;
}
.Single-page-toc-list li.active a::after {
  opacity: 1;
  transform: translateX(0);
}
/* Form Box */
.Single-page-contact-toggle {
  position: relative;
}

.Single-page-form-box {
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.Single-page-form-box h6{
  width: 70%;
}
.Single-page-form-box:hover {
  transform: translateY(-2px);
}

.Single-page-form-box-button{
    background-color: #00AEEF;
    color:white;
    padding:10px 20px;
    width: 60%;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: none;
}
.contact-help-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #00aeef;
  color: white;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
  transition: background 0.3s ease;
  font-size: 14px;
}

.contact-help-icon i {
  font-size: 16px;
}

.contact-help-icon:hover {
  background-color: #007ba6;
}

.btn-close {
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: #555;
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

/* Optional: animate toggle */
#contactFormBox,
#contactToggleBtn {
  transition: all 0.4s ease;
}

/* Blog Banner */
.Single-page-blog-banner img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Blog Content Headings */
.Single-page-blog-content{
    background-color: white;
    padding:20px
}
/* .wp-block-heading {
  scroll-margin-top: 140px;
  margin-block: 10px;
  font-size: 24px !important;
  /* font-weight: bold; */
  /* color: #111;
  transition: color 0.3s ease;
}*/
.Single-page-blog-content p {
  margin-bottom: 1.2rem;
  text-align: justify;
  line-height: 2;
} 
.Single-page-blog-content h2{
  scroll-margin-top: 140px;
  margin-block: 20px !important;
}
.Single-page-blog-content h2 strong{
   font-size: 25px !important;
  scroll-margin-top: 140px;
  margin-block: 20px !important;
  font-weight: 600 !important;
}
.Single-page-blog-content h3{
  font-size: 18px !important;
    margin-block: 20px !important;

}
.Single-page-blog-content h3 strong{
font-size: 20px !important;
  scroll-margin-top: 140px;
  font-weight: 600 !important;
}
.Single-page-form-box .form-control{
    background-color:#EDF2F7 ;
    font-size: 14px;
}

 .Single-page-blog-detail-page-container .row{
 margin-left: 0px !important;
    margin-right: 0px !important;
 }

 .wp-block-list li{
  line-height: 2.5 !important;
 }
  .wp-block-list li strong{
    font-weight: 500 !important;
  }
@media (max-width: 991.98px) {
    .sidebar-wrapper {
    position: static;
    top: unset;
    margin-bottom: 30px;
  }

  .toc-box,
  .form-box {
    border-radius: 6px;
  }


 .Single-page-blog-detail-page-container .row>*{
    padding-right:0px !important;
    padding-left:0px !important;
   
 }
  .Single-page-sidebar-wrapper {
    position: static !important;
    top: unset !important;
  }

  .Single-page-toc-box,
  .Single-page-form-box {
    max-height: none !important;
    overflow: visible !important;
    padding: 16px;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #e5e5e5;
    margin-bottom: 24px;
    display: none;
  }
  .Single-page-toc-box h6{
    text-align: center;
  }
.Single-page-blog-content{
    padding:20px;
}

  .contact-help-icon {
    display: none !important; /* optional: you can toggle it based on preference */
  }
}


.cta-banner {
  height: 300px;
background: linear-gradient(to right,#0A97BE,#087C9ED9);
position: relative;
width: 100%;
width: 95%;
margin: auto;
border-radius: 1rem;
}
.cta-banner a{
    text-decoration: none;
}
.cta-banner .container{
  z-index:10;
}
.cta-img2{
    position: absolute;
    height: 100%;
    width: 500px;
    left: 0;
    top: 0;
    z-index: 1;
}
.cta-img2 img{
    width: 100%;
    height: 100%;
}
.cta-img1{
    position: absolute;
    height: 100%;
    width: 500px;
    right: 0;
    bottom: 0;
    top:0;
    z-index: 2;
}
.cta-img1 img{
    width: 100%;
    height: 100%;
}

/* responsive */
@media (max-width:1024px) {
    .cta-banner {
  height: 250px;

}
   .cta-img1{
    width:400px;
}
  .cta-img2{
    width:400px;
}
}
@media (max-width:968px) {
   .cta-banner{
    height: 200px;
   }
   .cta-img1{
    width: 300px;
   }
   .cta-img2{
    width: 300px;
   }
}

@media (max-width:768px) {
   .cta-img1{
    width: 200px;
   }
   .cta-img2{
    width: 200px;
   }
   .cta-banner h4{
    font-size: 16px;
   }
   span{
    font-size: 14px;
   }
}