@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Kumbh+Sans:wght,YOPQ@100..900,300&display=swap');
*{
  box-sizing:border-box;
  transition: all .3s linear;
  text-decoration:none;
  outline:none;
  border:none;
  margin:0;
  padding:0;
  list-style-type:none;
  font-family: "Jost", sans-serif;
  font-family: 'Kumbh Sans', sans-serif;
}

html {
  scroll-padding-top:10px;
  scroll-behavior:smooth;
  overflow-x:hidden;
  scroll-padding-top:10px;
}

a {
  color:var(--blackColor);
}
svg {
  display: block; 
}
body {
  background:var( --whiteColor);
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .hero-section {
    min-height: 50vh;
  }
}
@media (max-width:500px) {
.hero-section {
  height: 50vh;
  padding-bottom: 10px;
}
.hero-section::after {
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80px; 
}
}

/* buttons ends here */
.sub-heading {
  color:var(--blackColor);
  font-size:22px;
  padding:20px 0;
  text-align:center;
  font-weight:500;
}
@media (max-width:768px) {
  .sub-heading {  
    font-size:18px;
  }
}
.sub-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--blackColor);
  padding:10px 0;
  position: relative;
}

.testimonial-sub-title {
  color:var(--whiteColor);
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  padding:10px 0;
  position: relative;
}
.sub-title::after, .testimonial-sub-title::after {
  content:'';
  position: absolute;;
  width:10%;
  height:4px;
  background:#f58733;
  bottom:0;
  left:50%;
  transform: translateX(-50%);
}
.chat-toggle {
  position: fixed;
  right:20px;
  bottom: 16px;
  z-index:6000;
  font-size:17px;
  cursor:pointer;
  border-radius:50%;
  width:50px;
  height:50px;
  color: white;
  transition:.6s ease-in-out;
  background:black;
}

#top-button {
  position: fixed;
  display:flex;
  justify-content:center;
  align-items:center;
  right:80px;
  opacity:0;
  bottom:0px;
  z-index:1500;
  font-size:17px;
  cursor:pointer;
  border:3px solid #14213d;
  border-radius:50%;
  width:44px;
  height:44px;
  color: #14213d;
  transition:.6s ease-in-out;
  background:var(--limegrayColor);
} 
#top-button::before {
  position: absolute;
  content: '';
  left:0;
  bottom:0;
  height:0%;
  width:100%;
  border-radius:50%;
  background:linear-gradient(to right,  #000000 , #14213d );
  transition:.3s ease-in-out;
  z-index:-1;
  color:var(--whiteColor);
  opacity:0;
}
#top-button.active {
  opacity:1;
  bottom: 16px;
}
#top-button:hover::before {
  height:100%;
  opacity:1;
 }  
 #top-button:hover {
  color:var(--whiteColor);
  border:3px solid rgba(1, 124, 143,0);
 } 
.whatsapp-container {
  position:fixed;
  right:15px;
  display:flex;
  justify-content:center;
  align-items:center;
  bottom:70px;
  z-index:1500;
  background:green;
  border-radius:50%;
  padding:12px 14px;
}



/*----------Home Blog styling starts--------------- */
.home-blog-section {
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.home-blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin: 0;
  padding: 0 30px;
}
.home-blog-row .home-blog-card {
  height: fit-content;
  display: flex;
  flex-direction: column;
  background: white;
  color: #333;
  border-radius: 15px;
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.home-blog-row .home-blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #450920 0%, #ee9b00 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home-blog-row .home-blog-card:hover::before {
  opacity: 1;
}
.blog-image-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.blog-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home-blog-row .home-blog-card:hover .blog-image-container::after {
  opacity: 1;
}
.home-blog-row .home-blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.home-blog-row .home-blog-card:hover img {
  transform: scale(1.1);
}
.home-blog-row .home-blog-card:hover {
  box-shadow: 0 12px 40px rgba(69, 9, 32, 0.15);
  transform: translateY(-8px);
}
.blog-content-card {
  padding: 25px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-blog-row .home-blog-card h3 {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.home-blog-row .home-blog-card:hover h3 {
  color: #450920;
}
.home-blog-row .home-blog-card .poster {
  color: #ee9b00;
  font-size: 13px;
  margin: 0 0 10px 0;
  opacity: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.home-blog-row .home-blog-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px 0;
  font-weight: 400;
  flex: 1;
}
.home-blog-row .home-blog-card .blog-read-more-container {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
}
.home-blog-row .home-blog-card .blog-read-more {
  color: white;
  background: linear-gradient(135deg, #450920 0%, #2d5132 100%);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(69, 9, 32, 0.2);
}
.home-blog-row .home-blog-card .blog-read-more:hover {
  background: linear-gradient(135deg, #ee9b00 0%, #ffaa00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 155, 0, 0.4);
}
.more-blog-view-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.more-blog-view-container .blog-view-more {
  color: #450920;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 32px;
  border: 2px solid #450920;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.more-blog-view-container .blog-view-more:hover {
  background: #450920;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(69, 9, 32, 0.25);
}

 @media (min-width:600px) and (max-width:1024px) {
  .home-blog-row {
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
    margin:20px 0;
    padding:5px;
  }
}
@media (max-width:600px) {
  .home-blog-row {
    grid-template-columns:1fr;
    gap:10px;
    margin:20px 0;
    padding:5px;
  }
  .home-blog-row .home-blog-card img {
    height:30vh;
  }
  .home-blog-row .home-blog-card {
    height:fit-content;
    grid-template-columns:1fr;
    width:100%;
  }
  .blog-image-container {
    width:100%;
    height:100%;
  }
  .blog-content-card {
    padding:20px 10px;
  }
}

/*-------- testimonial starts --------------*/
.testimony-section {
  background-color: var(--formgrayColor);
  padding:20px 0;
  padding-bottom: 50px;
  background-attachment: fixed;
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  position: relative;
  overflow: hidden;
}

.testimony-section::after {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:rgba(0, 0, 0, 0.5);
}

.testimonial-header {
  padding:20px;
  padding-top:10px;
}

.testimonial-sub-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 500;
}

.testimonial-sub-heading {
  font-size:23px;
  color:var(--dimwhiteColor);
  font-weight:500;
  text-align:center;
  padding:20px 0;
}
.testimonial-left {
  display:flex;
  justify-content:center;
  margin-top:20px;
  margin-bottom:20px;
  width:100%;
}

.review-swiper-container {
  width:100%;
}
.testimony-wrap {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding:10px 20px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimony-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orangeColor), #e85d04);
}

.testimony-wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimony-body {
  text-align: center;
  margin-bottom: 12px;
}

.testimonial-words {
  font-size: 18px;
  line-height: 1.8;
  color: var(--grayColor);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.testimony-quote {
  font-size: 24px;
  color: var(--orangeColor);
  margin: 0 5px;
  opacity: 0.7;
}

.testimony-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.testimony-img-container img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(245, 130, 32, 0.3);
  transition: all 0.3s ease;
}

.testimony-wrap:hover .testimony-img-container img {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(245, 130, 32, 0.4);
}

.name {
  font-size: 18px;
  font-weight: 600;
  color: var(--darkgrayColor);
  margin: 0;
  text-transform: capitalize;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
}

.fa-star {
  color: var(--orangeColor);
  font-size: 16px;
  transition: all 0.2s ease;
}

.fa-star:hover {
  transform: scale(1.2);
}

/* Swiper Navigation */
.reviewSwiper .swiper-button-next,
.reviewSwiper .swiper-button-prev {
  color: var(--whiteColor);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.reviewSwiper .swiper-button-next:hover,
.reviewSwiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.reviewSwiper .swiper-button-next::after,
.reviewSwiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.reviewSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.reviewSwiper .swiper-pagination-bullet-active {
  background: var(--orangeColor);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimony-section {
    padding: 60px 0;
  }
  
  .testimonial-sub-heading {
    font-size: 32px;
  }
  
  .testimony-wrap {
    margin: 10px;
    padding: 30px 20px;
  }
  
  .testimonial-words {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .testimony-img-container img {
    width: 70px;
    height: 70px;
  }
  
  .reviewSwiper .swiper-button-next,
  .reviewSwiper .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonial-sub-heading {
    font-size: 28px;
  }
  
  .testimony-wrap {
    padding: 25px 15px;
  }
  
  .testimonial-words {
    font-size: 15px;
  }
}


/*Blogs list page styling */
.blogs-container {
  max-width: 1600px;
  margin: 20px auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.all_blogs_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 30px;
  margin-top: 30px;
}
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #450920 0%, #ee9b00 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-card:hover::before {
  opacity: 1;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(69, 9, 32, 0.15);
}

.post-image-container {
  overflow: hidden;
  position: relative;
  height: 220px;
  width: 100%;
}

.post-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-card:hover .post-image-container::after {
  opacity: 1;
}

.post-image-container .post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-card:hover .post-image-container .post-image {
  transform: scale(1.1);
}

.post-content {
  padding: 28px;
}

.post-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(69, 9, 32, 0.08) 0%, rgba(238, 155, 0, 0.08) 100%);
  color: #450920;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-right: 6px;
  transition: all 0.3s ease;
  border: 1px solid rgba(69, 9, 32, 0.1);
}

.post-tag:hover {
  background: #450920;
  color: white;
  transform: translateY(-2px);
}

.post-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 0;
  margin: 12px 0;
  line-height: 1.4;
  position: relative;
  transition: color 0.3s ease;
  display: block;
}

.post-title:hover {
  color: #450920;
}

.post-title::after {
  display: none;
}

.post-excerpt {
  padding: 0;
  margin: 12px 0;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.blog-post-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 13px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #f0f0f0;
  background: #f8f9fa;
  padding: 2px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .author-avatar {
  transform: scale(1.1);
}
/*Blogs Sidebar */
.blogs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 140px;
  height: fit-content;
}

.sidebar-section {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sidebar-section:hover {
  box-shadow: 0 8px 30px rgba(69, 9, 32, 0.12);
}

.section-title {
  font-size: 19px;
  color: #1a1a1a;
  margin-bottom: 22px;
  font-weight: 800;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.section-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #450920 0%, #ee9b00 100%);
}

.section-title::after {
  display: none;
}

.blogs-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blogs-search-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
}

.blogs-search-input:focus {
  border-color: #450920;
  box-shadow: 0 0 0 3px rgba(69, 9, 32, 0.1);
}

.search-button {
  padding: 14px 20px;
  background: linear-gradient(135deg, #450920 0%, #2d5132 100%);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(69, 9, 32, 0.2);
}

.search-button:hover {
  background: linear-gradient(135deg, #ee9b00 0%, #ffaa00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 155, 0, 0.4);
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-post-item-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.recent-post-item-container:hover {
  background: #f8f9fa;
}

.related-blog-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.recent-post-item-container:hover .related-blog-image {
  transform: scale(1.05);
}

.blogs_categories_list {
  max-height:200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.all_tags-list {
  display: flex;
  flex-wrap: wrap;
  gap:5px;
} 

.recent-post-item {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  flex: 1;
}

.recent-post-item span {
  display: none;
}

.recent-post-item:hover {
  color: #450920;
}
.search_query_title {
  font-size:22px;
  font-weight:500;
  color:#232323;
  padding:10px 0;
}
.search_query_title>span {
  color:var(--orangeColor);
}
.search_results_count {
  font-size:17px;
  color:#232323;
  font-weight:400;
}
.search_results_count>span {
  color:#000000;
  font-weight:500;
}
.no_blogs_found {
  display:flex; 
  justify-content: center; 
  align-items: center; 
  min-height:50vh;
}
.no_blogs_found .no_blogs_text {
  color:#2d3436;
  font-size:18px;
}

@media (max-width: 768px) {
  .blogs-container {
    grid-template-columns: 1fr;
    padding:8px;
    padding-bottom:20px;
  }

  .post-image-container {
    height: 200px;
  }
  .post-content {
    padding: 10px;
  }
  
  .post-image-container .post-image {
   object-fit: cover;
  }
}


/*Blog detail page */
.blog-detail-section {
  max-width: 1400px;
  margin: 30px auto;
  width: 100%;
  padding: 40px 30px;
  margin-top: 0;
  line-height: 1.8;
  color: #333;
  min-height: 100vh;
}

.blog_details_grid {
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 40px;
  justify-content: center;
  padding-top: 20px;
}

.blog-detail {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-detail .blog_detail_title {
  color: #1a1a1a;
  font-size: 36px;
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
  transition: all 0.4s ease;
}

.blog-detail .blog_detail_title::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 80px;
  left: 0;
  bottom: -12px;
  background: linear-gradient(90deg, #450920 0%, #ee9b00 100%);
  border-radius: 25px;
  transition: width 0.4s ease;
}

.blog-detail .blog_detail_title:hover::after {
  width: 150px;
}

.blog-detail .blog_detail_title::before {
  display: none;
}

.post-meta .dot {
  color: #ee9b00;
  font-size: 16px;
}

.blog-cover-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 450px;
  padding: 0;
  margin: 30px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-cover-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-detail:hover .blog-cover-image-container img {
  transform: scale(1.05);
}

.blog-content img {
 width:100%;
 height:auto;
 object-fit: cover;
}
  .comments_container {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
  }
  
  .comments_container h4 {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0;
    margin: 0 0 25px 0;
    position: relative;
  }
  
  .comments_container h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #450920 0%, #ee9b00 100%);
    border-radius: 25px;
  }
  
  .comments_container .blog-comment {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #450920;
    transition: all 0.3s ease;
  }
  
  .comments_container .blog-comment:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
  }
  
  .comments_container .no-blog-comments-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #999;
    font-style: italic;
  }
  .blog_comment_form {
    margin-top: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
  }
  
  .blog_comment_form .form-group {
    display: flex;
    gap: 15px;
  }
  
  .blog_comment_form input {
    width: 100%;
    border: 2px solid #e0e0e0;
    background: white;
    padding: 14px 18px;
    color: #333;
    font-size: 15px;
    margin: 10px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .blog_comment_form textarea {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    background: white;
    padding: 14px 18px;
    color: #333;
    font-size: 15px;
    margin: 10px 0;
    resize: vertical;
    height: 120px;
    transition: all 0.3s ease;
  }
  
  .blog_comment_form input::placeholder,
  .blog_comment_form textarea::placeholder {
    color: #999;
  }
  
  .blog_comment_form input:focus,
  .blog_comment_form textarea:focus {
    border-color: #450920;
    box-shadow: 0 0 0 3px rgba(69, 9, 32, 0.1);
    outline: none;
  }
  
  .blog_comment_form .blog_comment_btn {
    width: auto;
    min-width: 180px;
    border: none;
    background: linear-gradient(135deg, #450920 0%, #2d5132 100%);
    color: white;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(69, 9, 32, 0.3);
    margin-top: 10px;
  }
  
  .blog_comment_form .blog_comment_btn:hover {
    background: linear-gradient(135deg, #ee9b00 0%, #ffaa00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 155, 0, 0.4);
  }
@media (max-width:600px) {
  .blog_comment_form .blog_comment_btn {
    width:100%;
  }
}
@media (max-width:430px) {
  .blog-cover-image-container {
    margin-top:20px;
    height: 200px;
    padding:0;
  }
  .blog-cover-image-container img {
   border-radius:2px;
  }
}
@media screen and (max-width:768px) {
  .blog_details_grid {
    grid-template-columns: 1fr;
}
.blog-detail-section {
    padding:8px;
    padding-top:30;
}
.blog-detail {
    padding:10px;
}
}

/* CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #0f4c5c, #347d8f);
  padding: 60px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,25 50,50 T100,50 V100 H0 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  animation: wave 15s infinite linear;
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.contact-cta .contact-container {
  max-width:900px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-cta h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-phone {
  background: #ff6b35;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cta-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  color: white;
}
@media (max-width:500px) {
  .cta-phone {
    padding: 20px 25px;
    font-size: 1rem;
    gap: 5px;
  }
}
/* CTA Section */
.services-cta {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  padding: 40px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,100 100,80 100,100" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: wave 10s infinite ease-in-out;
}

@keyframes wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}

.services-cta h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.services-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-btn {
  background: white;
  color: #ff6b35;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #ff6b35;
}


/* Blog post container styles */
.blog-content {
  margin:10px auto;
  line-height:30px;
  padding:20px 0;
}

/* Headings */
.blog-content h1 {
  color: #003C7E;
  font-size: 28px;
  margin: 22px 0;
  font-weight: 600;
  line-height: 30px;
}
.blog-content h1:hover {
  color: #fe7029;
}
.blog-content h2 {
  font-size: 24px;
  color: #14213d;
  margin: 22px 0;
  font-weight: 400;
}

.blog-content h3 {
  font-size: 1.65rem;
  color: #000000;
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}

.blog-content h4 {
  font-size: 1.5rem;
  color: #4a4a4a;
  margin: 1.5rem 0 1rem;
  font-weight: 400;
}

/* Paragraphs */
.blog-content p {
  margin: 1.2rem 0;
  color: #444;
  line-height: 1.8;
}

/* Links */
.blog-content a {
  color: #fe7029;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.blog-content a:hover {
  border-bottom-color: #fe7029;
}

/* Lists */
.blog-content ul,
.blog-content ol {
  margin:16px 0;
  padding-left: 24px;
}

.blog-content li {
  list-style-type: disc;
  margin: 6px 0;
  color: #444;
}

/* Images */
.blog-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Blockquotes */
.blog-content blockquote {
  padding: 1rem 2rem;
  border-left: 4px solid #fe7029;
  background: #f8f9fa;
  font-style: italic;
  color: #555;
}
.blog-content blockquote>p {
  background: #f8f9fa;
}

/* Code blocks */
.blog-content pre {
  background: #f6f8fa;
  background:#2d1052;
  padding: 1rem;
  border-radius: 4px;
  max-width: 100%;
  width:100%;
  font-size: 16px;
  white-space: pre-wrap; /* Allows wrapping of text inside <pre> */
  word-wrap: break-word; /* Break long words if needed */
  overflow-x: scroll;
  margin: 1.5rem auto;
  box-sizing: border-box;
}
.blog-content code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  font-weight:700;
  color:white;
  color: #ffcc00;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  overflow-x: auto;
}

/* Tables */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.blog-content th,
.blog-content td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  text-align: left;
}

.blog-content th {
  background: #f8f9fa;
  font-weight: 600;
}

/* Figure and captions */
.blog-content figure {
  margin: 2rem 0;
}

.blog-content figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Horizontal rule */
.blog-content hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #dee2e6;
}

/* Custom classes for alignment */
.blog-content .text-left {
  text-align: left;
}

.blog-content .text-center {
  text-align: center;
}

.blog-content .text-right {
  text-align: right;
}

/* Meta information styling */
.post-meta {
  margin-top:15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #636e72;
  font-size: 14px;
}

.author-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.detailed_blog_tags .post-tag {
  display: inline-block;
  padding: 1px 20px;
  background: #f3f3f3;
  color: #fe7029;
  border-radius: 15px;
  font-size: 13px;
  margin-bottom: 16px;
}


/* Responsive design */
@media (max-width: 768px) {
  .blog-content {
      padding: 20px 0;
  }

  .blog-content h1 {
      font-size: 2rem;
  }

  .blog-content h2 {
      font-size: 1.75rem;
  }

  .blog-content h3 {
      font-size: 1.5rem;
  }

  .blog-content h4 {
      font-size: 1.25rem;
  }

  .blog-content img {
      margin: 1.5rem auto;
  }

  .post-meta {
      flex-wrap: wrap;
      gap: 0.5rem;
  }
  .blog-content pre {
      padding: 0.5rem;
      max-width: 100%;
      font-size: 13px;
      overflow-x: scroll;
      margin: 1.5rem auto;
  }
}
