.text {
  color: #fff;
}

/*----------------------------------------------------------------------------------------------------------------------------*/
/* Blog */
.post {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image Section */
.post-image {
  overflow: hidden;
}

.post-image img {
  width: 100%;
  object-fit: scale-down;
  transition: transform 0.4s ease;
  padding: 5px;
  border-radius: 10px;
}

.post:hover .post-image img {
  transform: scale(1.08);
}

/* Content Section */
.post-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title */
.post-title h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.post-title h4 a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s ease;
}

.post-title h4 a:hover {
  color: #ff5e14;
}

/* Read More Button */
.btn-link {
  font-weight: 600;
  color: #ff5e14;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  margin: 8px;
}

.btn-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff5e14;
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/*----------------------------------------------------------------------------------------------------------------------------*/
/* Testimonial Section */
/* .google-review-wrapper {
                  padding: 20px;
                  display: flex;
                  justify-content: center;
                } */

/* Default (Desktop Large) */
/* .google-review-card {
                  padding: 30px;
                  border-radius: 15px;
                } */

/* Large Devices (≤ 1200px) */
@media (max-width: 1200px) {
  .google-review-card {
    padding: 25px;
  }
}

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .google-review-card {
    padding: 22px;
  }

  .avatar-letter {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}

/* Small Tablets & Large Mobiles (≤ 768px) */
@media (max-width: 768px) {
  .google-review-card {
    padding: 20px;
  }

  .google-review-content {
    font-size: 15px;
  }

  .avatar-letter {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
  .google-review-card {
    padding: 18px;
  }

  .google-review-content {
    font-size: 14px;
  }

  .reviewer-name {
    font-size: 15px;
  }

  .avatar-letter {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

.google-review-card {
  width: 100%;
  max-width: 600px;
  /* Large Card */
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 58, 138, 0.08);
}

.google-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
  border-color: rgba(30, 58, 138, 0.15);
}

.google-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.avatar-letter {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  /* Professional Cyan to Teal */
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.reviewer-name {
  margin: 0;
  font-weight: 600;
}

.google-rating {
  color: #FFD700;
  /* Google Star Color */
  font-size: 18px;
}

.google-review-content {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/*----------------------------------------------------------------------------------------------------------------------------*/
/* Gallery Section */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #fff;
}

.gallery-actions i {
  font-size: 18px;
  margin: 8px;
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.gallery-actions i:hover {
  background: #e63671;
  color: #fff;
}

/* Popup */
.image-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.image-popup img {
  max-width: 90%;
  max-height: 90%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

/*----------------------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------------------------*/
/* Services */
/* Card Hover Effect */
.category-box {
  transition: all 0.4s ease;
}

.category-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Image Zoom Effect */
.transition-img {
  transition: transform 0.5s ease;
}

.category-box:hover .transition-img {
  transform: scale(1.08);
}

/* Title Hover */
.hover-primary:hover {
  color: #e63671 !important;
  transition: 0.3s ease;
}

/* Section Styling */
.category-section {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

/* Carousel spacing fix */
.modern-carousel .owl-stage {
  padding-bottom: 20px;
}

/*----------------------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------------------------*/
/* MAP Embed */
.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 30px;
}

.map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: 0.4s;
}

.map-box h4 {
  padding: 15px;
  font-size: 18px;
  background: #b8345f;
  color: #fff;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.map-box:hover {
  transform: translateY(-5px);
}

/*----------------------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------*/