:root {
  --primary-color: #A2C7E3;
  --secondary-color: #6c757d;
  --background-color: #f8f9fa;
  --font-secondary: #BC8E91;
  --font-primary: #EE5367;
  --modified-primary-color: #B3D1EA;
  --modified-font-primary: #F06D7F;
  --navbar-height: 10vh;
  --logo-max-height: 100%;
  --logo-padding-vertical: 8px;
  --gradient-primary-colors: linear-gradient(to right, rgba(162, 199, 227, 0.5), rgba(238, 83, 103, 0.5));
  --gradient-primary-colors-red__light: linear-gradient(to right, #FFFFFF, rgba(238, 83, 103, 0.5));
  --gradient-primary-colors-blue-light: linear-gradient(to right, #FFFFFF, rgba(162, 199, 227, 0.5));
  --feature-item-gradient: linear-gradient(to bottom right, rgba(255, 245, 235, 0.1),rgba(255, 245, 235, 0.2));



  --icon-color: #F06D85;
  --font-color: #333;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --test-bkg-body:linear-gradient(to right,#f0f9ff,#cbeffd);
}

h1 {
  color: #000;
  padding: 20px;
  font-size: 2em;
  text-align: center;
}


.btn_primary:hover {
  background-color: darken(var(--font-primary),10%);
}


.services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 20px;
}


.container {
  padding: 20px;
}

.intro-card {
  background-color: #fff; 
  border-radius: 15px; 
  padding: 25px; 
  margin: 0 auto 30px auto; 
  max-width: 800px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.125rem; 
  color: #555;
  line-height: 1.6;
  text-align: center;
  transition: all 0.5s ease-in-out; 
}

.intro-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(1.05); 
}

.intro-card p {
  margin: 0;
  padding: 0;
}

.intro-card::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background-color: #EE5367; 
  border-radius: 5px;
}




.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 1000px; 
  padding: 20px;
 
}

.grid > article {
  width: 90%;
  max-width: 320px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
  
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out, filter 0.5s ease-in-out;
  min-height: 300px; 
  z-index: 1;
  overflow: hidden;
  padding: 10px; 
}

.grid > article .card-image {
  padding: 15px;
}




.grid > article:hover {
  transform: scale(1.05); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 10; 
  cursor: default;
  
}



.grid > article img {
  width: 100%; 
  height: auto; 
  border-top-left-radius: 15px; 
  border-top-right-radius: 15px; 
  object-fit: cover;
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}



.grid > article:hover img {
  transform: scale(1.1); 
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}


.grid .text {
  padding: 10px;
  text-align: center;
  color: #808285;
  margin-bottom: 20px;
}

.grid h3 {
  font-size: 1.25rem;
  color: #5f5f5f;
  font-weight: bold;
  margin-bottom: 15px;
}


.grid .btn,.service-link {
  margin-top: 20px;
  background-image: var(--gradient-primary-colors-blue-light);
  border: 0;
  border-radius: 5px;
  color: #000;
  font-size: 15px;
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 150px; 
  max-width: 200px;
  transition: background-color 0.5s ease-in-out, transform 0.3s ease-in-out;
  cursor: pointer;
  font-weight: 700;
}


.grid .btn:hover {
  background: linear-gradient(to right, #FFFFFF, rgba(162, 199, 227, 0.5));
  transform: scale(1.1);
}







.tagline {
  text-align: center;
  color: #333;
 
  font-style: italic;
  padding: 8px;
}

.section-name {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.has-tagline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--primary-color);
}

.section-icon {
  font-size: 2rem;
  background: linear-gradient(to right,#a2c7e3,tomato);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  display: inline-block;
}

.section-name {
  color: #a2c7e3;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more-btn {
  display: inline-block;
  background-color: #a2c7e3;
  color: #333;
  padding: 10px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color .3s ease;
  font-weight: 700;
}

.learn-more-btn:hover {
  background: linear-gradient(to right,rgba(146,179,204,.5),rgba(238,83,103,.5));
}

.service-img {
  width: 90%;
  border-radius: 8px;
}

.hidden {
  display: none;
}


.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
}

.pricing-card {
  background-color: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,.06);
  transition: box-shadow .3s ease,transform .3s ease;
}

.pricing-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  transform: translateY(-5px);
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
}

.pricing-card ul li {
  background-color: #fff;
  color: #333;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
}

.pricing-card .fa-check {
  color: #4bb543;
  margin-right: 10px;
}

.pricing-section {
 
  padding: 40px 20px;
  
  
  margin: auto;
  text-align: center;
}

.pricing-section,.testimonials-section,.why-us-section {
  text-align: center;
  padding: 40px 20px;
}


.pricing-card,.testimonial-card {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  margin: 20px;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
  width: calc(33% - 40px);
}

.pricing-section .pricing-card {
  margin: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
}

.pricing-section .silver {
  border: 2px solid silver;
}

.pricing-section .gold {
  border: 2px solid gold;
}

.pricing-section .platinum {
  border: 2px solid #e5e4e2;
}

.pricing-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-section li {
  padding: 10px;
  border-radius: 5px;
  background-color: #f7f7f7;
  margin-bottom: 10px;
  font-size: .95rem;
  color: #333;
  position: relative;
}

.pricing-section .fas.fa-check {
  color: var(--modified-primary-color);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.pricing-section li:not(:has(i)) {
  color: #000;
}

.pricing-section li:hover {
  background-color: #eaeaea;
  cursor: default;
}

.section-name {
  margin-bottom: 30px;
  color: var(--modified-primary-color);
}

.btn_primary {
  background-image: linear-gradient(to right,var(--modified-primary-color),#ffd6cc);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color .3s ease;
  text-decoration: none;
  font-weight: 700;
}

.btn_primary:hover {
  background-image: linear-gradient(to right,#ffd6cc,var(--modified-primary-color));
}

.why-us {
  
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  color: var(--font-primary);
  margin-bottom: 30px;
  padding: 1%;
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature-item {
  width: 30%;
  min-width: 250px;
  margin: 10px;
  padding: 20px;
  background: var(--feature-item-gradient);
  color: black;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



.feature-item i.icon {
  color: var(--icon-color);
}

.feature-item h3 {
  text-shadow: 1px 1px 2px rgba(0,0,0,.1);
}


.section-title {
  color: var(--font-primary);
  margin-bottom: 30px;
}






.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.testimonial {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonial-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.testimonial-author {
  color: #000;
  font-weight: 700;
}

.testimonial-text {
  color: #000;
  font-style: italic;
  margin: 15px 0 0;
  padding: 1.5px;
}

.testimonial-quote-icon {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.testimonial-source {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 1.5em;
}


.trustpilot-icon img {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.google-icon img {
  width: 24px; /* Slightly larger width */
  height: 24px; /* Slightly larger height */
  display: inline-block;
}
.yelp-icon i {
  color: #D32323; /* Yelp red */
}

.faq {

  padding: 40px 20px;
  text-align: left;
}

.section-title {
  text-align: center;
  color: var(--font-primary);
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}



.faq-item p {
  padding: 10px 0 0;
  line-height: 1.6;
}

.section-title {
  color: var(--font-primary);
  margin-bottom: 30px;
}

.btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color .3s ease;
}

.btn:hover {
  background-color: var(--modified-font-primary);
}

.faq,.resources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 20px;
}

.resources {
  background-image: var(--gradient-primary-colors-blue-light);
}

.faq-item,.resource-item {
  background-color: #fff;
  border: 1px solid var(--modified-primary-color);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

a {
  color: #333;
  transition: color .3s ease;
}

a:hover {
  color: #333;
}

.review-platforms {
  text-align: center;
  padding: 60px 20px;

  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-platforms .container {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-platforms h2 {
  color: var(--font-primary);
  margin-bottom: 20px;
}

.review-platforms p {
  margin-bottom: 30px;
  color: var(--secondary-color);
  text-align: center;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.platform-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.rounded-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: transform .3s ease;
}

.rounded-icon:hover {
  transform: scale(1.15);
}

.get-quote {
  text-align: center;
  padding: 40px;
  background-color: var(--primary-color);
  color: var(--font-primary);
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  background-image: linear-gradient(rgba(255,255,255,.8),rgba(255,255,255,.8)),url('../assests/images/Banner/quotebkg.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.get-quote .section-title,.get-quote p {
  text-shadow: 2px 2px 10px rgba(0,0,0,.5);
}

.get-quote .section-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.get-quote p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.get-quote .btn {
  background-color: var(--modified-primary-color);
  color: #305c78;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  transition: background-color .3s ease,color .3s ease;
}

.get-quote .btn:hover {
  background-color: var(--font-primary);
  color: #000;
  box-shadow: 0 4px 8px rgba(0,0,0,.2);
}

.get-quote .btn {
  background-image: var(--gradient-primary-colors-blue-light);
}

.get-quote .btn:hover {
  background-image: var(--gradient-primary-colors-red__light);
}

.faq a,.resources a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color .3s ease;
}

.faq a:hover,.resources a:hover a:hover {
  color: var(--modified-font-primary);
}

.gallery-section {

  padding: 40px 20px;
  text-align: center;
  margin: auto;
 
  border-radius: 8px;
}

.icon-wrapper.enhanced-icon {
  font-size: 4rem;
  color: var(--primary-color);
  background: #f0f8ff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}


.mb-2{
  margin-bottom: 10px;
}


.service-area {
  
  padding: 40px 20px;
  margin: auto;
  text-align: center;
  border-radius: 8px;
  
}

.icon-wrapper.enhanced-icon {
  font-size: 3rem;
  color: var(--primary-color);
  background: #fff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
}

.section-title {
  color: var(--font-primary);
  margin-bottom: 20px;
}

.service-area p {
  color: var(--secondary-color);
  background-color: rgba(255,255,255,.8);
  padding: 20px;
  border-radius: 8px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.05);
  margin: 0 auto;
  max-width: 800px;
}

.service-area-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
  transition: box-shadow .3s ease;
}

.service-card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,.15);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-color);
}

.service-card-content {
  padding: 15px;
  margin: .5%;
}

.service-card h3 {
  color: var(--font-primary);
}

.service-card p {
  color: var(--secondary-color);
  font-size: .95rem;
}

.service-link{
  background-image: linear-gradient(to right, #FFFFFF, #ff9999);
color: #333;
}



.service-link__container{
  margin: 5%;
}

.black-font {
  color: #333;
}

.bold {
  font-weight: 700;
}

.service-link:hover {
  
  transform: scale(1.1);
  
}


.moving-resources {
  padding: 60px 20px;
  margin: 60px 0;

}

.section-intro {
  text-align: center;
  margin-bottom: 30px;
}

.section-icon {
  font-size: 2.5rem;
  color: #0077b5;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
}

.section-line {
  width: 80px;
  height: 3px;
  background-color: #0077b5;
  margin: 0 auto 15px auto;
  border: none;
}


.resources-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.moving-resources {
  padding: 60px 20px;
  margin: 60px 0;
 
}

.section-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-icon {
  font-size: 2.5rem;
  color: #0077b5;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 0.8fr));
  gap: 20px;
  padding-inline: 5%;
}
.grid-container {
  columns: 5 200px;
  column-gap: 1.5rem;
  width: 90%;
  justify-self: center;
  margin: 0 auto;
  div {
    width: 150px;
    margin: 0 1.5rem 1.5rem 0;
    display: inline-block;
    width: 100%;
    border: solid 2px black;
    padding: 5px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    border-radius: 5px;
    transition: all .25s ease-in-out;
    &:hover img {
      filter: grayscale(0);
    }
    &:hover {
      border-color: coral;
    }
    img {
      width: 100%;
      filter: grayscale(100%);
      border-radius: 5px;
      transition: all .25s ease-in-out;
    }
    p {
      margin: 5px 0;
      padding: 0;
      text-align: center;
      font-style: italic;
    }
  }
}

.blog-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 80%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.blog-card__image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
}

.blog-card__content {
  flex-grow: 1;
   margin: 5px;
}

.tag {
  font-size: 0.9rem;
  font-weight: bold;
  background-color: crimson;
  color: #fff;
  border-radius: 12px;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.blog-card__description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  padding-block: 5px;
 
}

.blog-card__date {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 10px;
 
}

.blog-card__button {
  margin-top: 20px;
  background-color:crimson;
 
  
  border-radius: 5px;
  color: whitesmoke;
  font-size: 15px;
  padding: 10px 20px; 
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 150px; 
  max-width: 200px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  font-weight: 700;
}

.blog-card__button:hover {
  color: whitesmoke;
  transform: scale(1.1); 
}

.contact-info {
  display: flex;
  flex-flow: column;
}

.footer-container {
  display: flex;
  flex-flow: column wrap;
 
}

.footer-logo {
  align-self: center;
  flex-grow: 2;
}

.footer-content {
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  align-items: start;
  padding: 10px;
}

.footer-content a:hover{
  color: var(--font-primary);
}
.contact-info a,.nav-item,.review-link {
  text-decoration: none;
}

.nav-item {
  list-style: none;
}

.nav-links__footer {
  list-style: none;
  padding: 1px;
}

.footer-heading {
  color: #305c78;
}

.contact-time {
  padding: 0;
  margin: 0;
  font-size: 1em;
}

.feedback-section {
  margin-block: 5%;
  padding: 2%;
  background: var(--gradient-primary-colors-blue-light);
}

.feedback-section>h3 {
  text-align: center;
}

.review-options {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.footer-rights {
  justify-self: center;
  align-self: center;
  
}

.get-quote .section-title {
  color: #305c78;
}

.pricing_btn {
  width: 100%;
  align-self: center;
  border-radius: 0;
}

.wauto {
  width: auto;
}

.call-us-button {
  display: none;
}




@media (max-width:768px) {

  .tp-icon__platform-icons{
    width: 70px;
  }
  .call-us-button {
    background-image: linear-gradient(to right, #FFFFFF, rgba(162, 199, 227, 0.8)); /* White background */
    border: 2px solid #e0e0e0; /* Subtle outline for the button */
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: fixed;
    bottom: 20px;
    right: 20px;
  }
  
  .call-us-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .call-us-button i {
    color: lightcoral; /* White color for the icon */
    font-size: 24px; /* Bigger icon size */
    text-shadow: 1px 1px 2px rgba(240, 240, 240, 0.8), /* Light Coral shadow for the outline */
                 -1px -1px 2px rgba(240, 240, 240, 0.8), /* Adjusted to create contour effect */
                 1px -1px 2px rgba(240, 240, 240, 0.8),
                 -1px 1px 2px rgba(240, 240, 240, 0.8); /* Creates a subtle coral outline effect */
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%; /* Hidden initially */
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, #F8F9FA, #FFFFFF); /* Subtle gradient */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    border-right: 2px solid rgba(220, 220, 220, 0.8);
  }

  .nav-links.active {
    left: 0; /* Sidebar slides in */
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 245, 245, 0.8));

    border-left: 3px solid transparent; /* Indicator */
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.03);

  }

  .nav-links a:hover {
    background: linear-gradient(135deg, #ADD8E6, #F08080); /* Coral and blue hover */
    color: #fff;
    border-left: 3px solid #FF7F7F;
    transform: translateX(5px); /* Subtle slide */
  }

  .nav-links a::before {
    content: '\2022'; /* Unicode for a subtle dot */
    margin-right: 10px;
    font-size: 10px; /* Smaller size for a more refined look */
    color: rgba(0, 0, 0, 0.2); /* Lighter color for a subtler appearance */
    transition: color 0.3s ease-in-out;
  }
  

  .nav-links a:hover::before {
    color: #fff;
  }

  .nav-links::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ADD8E6, #F08080);
    border-radius: 10px;
  }

  .blog-card {
   
    justify-self: center;
    width: 90%;
  }


  .fa-question-circle:before {
    font-size: 1.5em;
  }


  .pricing-card,.testimonial-card {
    width: calc(50% - 40px);
  }

  .pricing-card {
    max-width: calc(50% - 20px);
  }

  .pricing-card ul li {
    font-size: .9em;
  }

  .container {
    padding: 10px 15px;
  }




  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  .grid > article {
    width: 90%;
    max-width: 320px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
   
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    padding: 10px 15px;
    height: auto; 
    display: flex;
    flex-direction: column;
    align-items: center; 
  }


  .grid > article:hover {
    transform: none; 
    box-shadow: none; 
  }

 
  .grid > article img {
    width: 100%;
    height: auto; 
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover; 
  }

 
  .grid > article:hover img {
    transform: scale(1.05); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
  }

  
  .grid .text {
    padding: 10px;
    text-align: center;
  }

  .grid h3 {
    font-size: 1.1rem;
    color: #5f5f5f;
    font-weight: bold;
    margin-bottom: 10px;
  }


  .grid .btn {
    font-size: 14px;
    padding: 8px 16px; 
   
    border: 0;
    border-radius: 5px;
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .grid .btn:hover {
   
    transform: scale(1.1);
  }

  .resources-grid {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    width: 100%;
    padding: 0;
  }


  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    width: 80%;
  }

  .footer-content {
    flex-flow: column;
    justify-content: center;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .stat-number {
    font-size: 1.75rem;
  }
}


@media (max-width:480px) {
  .pricing-card,.testimonial-card {
    width: 100%;
    margin: 20px 0;
  }

  .pricing-card {
    max-width: calc(100% - 20px);
  }


}

@media (max-width:430px) {
  .get-quote {
    padding: 10px;
  }
}

@media (min-width:768px) {
 .service-img {
    object-fit: contain;
  }

  .review-platforms .container {
    max-width: 800px;
  }

  .platform-icons a {
    width: 120px;
    height: 120px;
  }

  .rounded-icon {
    width: 100px;
    height: 100px;
  }
  .tp-icon__platform-icons{
    width: 90px;
  }
  .get-quote {
    padding: 60px;
  }

  .get-quote .section-title {
    font-size: 36px;
  }

  .get-quote p {
    font-size: 20px;
    margin-inline: 15%;
  }

  .get-quote .btn {
    padding: 15px 30px;
  }

  .stats-header-image {
    width: 50%;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  }

  .pricing-cards {
    margin-inline: 10%;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .faq-list {
    width: 75%;
    margin: auto;
    padding: 20px;
  }

  .faq-item {
    width: 75%;
    align-self: center;
    font-size: 1.1rem;
  }



}

.mt-25{
  margin-top: 2.5%;
}

.w100 {
  width: 100vw;
}

.pv-8 {
  padding-top: var(--logo-padding-vertical);
  padding-bottom: var(--logo-padding-vertical);
}

.pl-8 {
  padding-inline: 8px;
}


.center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

li {
  list-style-type: none;
}


.glendale-stats {
  background-color: #ffffff;
  padding: 3rem 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Section Intro Styling (Consistent) */
.icon-wrapper.enhanced-icon {
  text-align: center;
  margin-bottom: 1rem;
}

.section-icon {
  font-size: 2.5rem;
  color: #0085CA; /* Light Blue */
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 1rem;
}

.tagline {
  text-align: center;
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2rem;
}

/* Intro Card */
.intro-card {
  background: #f9f9f9;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
}

.intro-card p {
  font-size: 1.25rem;
  color: #555;
}

/* Stats Header Wrapper */
.stats-header-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

/* Image Styling */
.stats-header-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Card Styling */
.stat-card {
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stat-icon {
  font-size: 2.5rem;
  color: #f5f5f5; 
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  border-radius: 50%;
  padding: 10px;
  background-color: #f1f1f1; 
}

/* Icon Hover Effects */
.stat-icon:hover {
  color: #ffffff; 
  background-color: #FF6F61; 
  transform: scale(1.1); 
}


.stat-card .card-header .fas.fa-users {
  background-color: #007BFF;
}

.stat-card .card-header .fas.fa-briefcase {
  background-color: #4CAF50;
}

.stat-card .card-header .fas.fa-tree {
  background-color: #8BC34A; 
}

.stat-card .card-header .fas.fa-school {
  background-color: #FFC107; 
}

.stat-card .card-header .fas.fa-shopping-cart {
  background-color: #FF5722; 
}

.stat-card .card-header .fas.fa-utensils {
  background-color: #FF9800;
}


.stat-card .card-header .fas:hover {
  color: #ffffff; 
  transform: scale(1.1); 
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #333333;
}

.card-body {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.card-footer {
  text-align: left;
}

.stat-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  color: crimson;
  text-decoration: none;
  transition: color 0.3s ease;
}

.stat-link:hover {
  color: #E64B44;
}




