/* Blog Section */

.Blog-p-section {
  padding: 120px 5vw 0;
  background-color: none;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}


/* Blog grid: 2 per row */
.Blog-p-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px;
}

.Blog-p-card {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}

/* Image section */
.Blog-p-section .image-link-wrapper {
  flex: 1;
  max-width: 250px;
  max-height: 250px;
  display: block;
}

.Blog-p-section .image-wrapper {
  position: relative;
  height: 250px; /* Extra height compared to service card */
  width: 250px; /* Fixed width for consistency */
  overflow: hidden;
  background-color: #ddd;
}

.Blog-p-section .image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 15px 20px;
  background: #54d2ff59;
  text-align: right;
  border-top-left-radius: 8px;
  color: #fff;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.dots {
  font-size: 2rem;
  color: #fff;
}

/* Right-side blog content */
.Blog-p-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: flex-start;
}

.Blog-p-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 38px;
  color: #001a40;
  text-decoration: none;
  text-align: left;
  display: inline-block;
}

.Blog-p-title:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #001a4070;
}

.Blog-p-content h3 {
  width: 100%;
  text-align: left; /* ✅ Ensures the heading itself aligns left */
  margin: 0;         /* Optional: Clean up default margin if needed */
}

.meta {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #001a40b0;
  text-transform: uppercase;
}

.Blog-p-content .service-type {
  color: #001a40b0;
  text-decoration: none;
}

.Blog-p-content .service-type:hover {
  text-decoration: underline;
}

/* Responsive - stack cards on mobile */
@media (max-width: 768px) {
  .Blog-p-grid {
    grid-template-columns: 1fr;
  }

  .Blog-p-card {
    flex-direction: column;
    gap: 20px;
  }

  .Blog-p-content,
  .Blog-p-title,
  .Blog-p-title h3 {
    align-items: center; /* Center align text on mobile */
    text-align: center;
  }

  .image-link-wrapper {
    max-width: 100%;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  left: 2.5vh;
  width: 45px;
  height: 45px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  line-height: 45px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.whatsapp-float-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

/* Working Process */
.working-nextprocess {
  padding: 120px 5vw 0;
  background: none;
  text-align: center;
}

.working-nextprocess h1 {
  font-size: 37px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #001a40;
  line-height: 52px;
}

.working-nextprocess .subtitle1 {
  max-width: 950px;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #001a40b0;
  text-align: justify;
}

.working-nextprocess .subtitle2 {
  max-width: 950px;
  margin: 0 auto 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #001a40b0;
  text-align: justify;
}

.working-nextprocess .subtitle3 {
  max-width: 950px;
  margin: 40px auto 0;
  font-size: 25px;
  font-weight: 550;
  line-height: 38px;
  color: #001a40;
  text-align: justify;  
}

.working-nextprocess .subtitle4{
  max-width: 950px;
  margin: 0px auto 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  color: #001a40b0;
  text-align: justify;  
}

/* Wrapper for all steps */
.nextprocess-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 80px;
}

/* Single step layout */
.nextprocess-step {
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
}

/* Number column */
.processstep-number {
  min-width: 60px;
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
  color: #005dd6;
  position: relative;
  padding-right: 30px;
  text-align: left;
  display: flex;
}


/* Content column */
.processstep-content {
  align-items: center;
  position: relative;
  padding-left: 30px;
}

/* Add vertical border before content */
.processstep-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #acacac75;
}

.processstep-content h3 {
  font-size: 25px;
  font-weight: 550;
  line-height: 38px;
  color: #001a40;
  margin-bottom: 10px;
}

.processstep-content p {
  color: #001a40b0;
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nextprocess-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .process-wrapper {
    padding: 20px;
  }

  .processstep-number {
    padding-right: 0;
    margin-bottom: 10px;
    position: relative;
  }

  /* Horizontal line under number */
  .processstep-content::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: #acacac75;
  }


  .processstep-content {
    padding-left: 0;
  }

  .processstep-content h3 {
    margin-top: 20px;
  }
}


.Blog-V-section {
  padding: 80px 5vw 0;
  background-color: none;
  text-align: center;
}

/* Image section */
.Blog-V-section .image-link-wrapper {
  flex: 1;
  max-width: 250px;
  max-height: 250px;
  display: block;
}

.Blog-V-section .image-wrapper {
  position: relative;
  height: 250px; /* Extra height compared to service card */
  width: 250px; /* Fixed width for consistency */
  overflow: hidden;
  background-color: #ddd;
}

.Blog-V-section .image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.b-cta-section {
  padding: 80px 5vw 80px;
  background-color: none;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
    background-position: top center; /* pin SVG top on mobile */
    background-attachment: center ;
  }
}