
#hero-3 {
  padding: 100px 0;
}
#hero-3 .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
}
#hero-3 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}
#hero-3 .hero-image {
  max-width: 100%;
  border-radius: 8px;
}



#about-us-10 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#about-us-10 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
#about-us-10 .carousel-item {
  text-align: center;
  padding: 40px;
}
#about-us-10 .carousel-item h4 {
  font-size: 1.75rem;
  color: #007bff;
  margin-bottom: 10px;
}
#about-us-10 .carousel-item p {
  font-size: 1rem;
  color: #555;
}



#features-7 {
  padding: 60px 0;
  background-color: #f1f3f5;
  text-align: center;
}
#features-7 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-7 .flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
  margin-bottom: 30px;
}
#features-7 .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
#features-7 .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
#features-7 .flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#features-7 .flip-card-front {
  background-color: #ffffff;
  color: #17a2b8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-back {
  background-color: #17a2b8;
  color: #ffffff;
  transform: rotateY(180deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
#features-7 .flip-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .flip-card-description {
  font-size: 14px;
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #fff;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #666;
  margin-top: 8px;
}

/* === Tabs Nav === */
.post-tabs {
  margin-bottom: 30px;
}
.post-tabs .nav-link {
  font-weight: 600;
  color: #555;
  border: none;
  border-bottom: 2px solid transparent;
}
.post-tabs .nav-link.active {
  color: #000;
  border-color: #007bff;
}

/* === Grid === */
.tab-content .post-grid {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .tab-content .post-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (min-width: 992px) {
  .tab-content .post-grid {
    grid-template-columns: repeat(3,1fr);
  }
}
.post-card {
  background: #f8f9fa;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-card img {
  width: 100%;
  display: block;
}
.post-card .card-body {
  padding: 1rem;
}
.post-card .card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.post-card .card-body p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}
.post-card .btn-readmore {
  font-size: 0.85rem;
}

/* === More Posts Button === */
.more-post-btn {
  text-align: center;
  margin-top: 40px;
}




#testimonials-19 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-19 .container {
  max-width: 1140px;
}
#testimonials-19 .section-header {
  margin-bottom: 50px;
  text-align: center;
}
#testimonials-19 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-19 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#testimonials-19 .pull-quote-card {
  background-color: var(--card-bg-color, #f8f9fa);
  padding: 35px 30px;
  border-radius: 10px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
#testimonials-19 .pull-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#testimonials-19 .pull-quote-card .quote-highlight {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
  line-height: 1.4;
  margin-bottom: 15px;
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
}
#testimonials-19 .pull-quote-card .quote-highlight::before,
#testimonials-19 .pull-quote-card .quote-highlight::after {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  line-height: 1;
  z-index: 1;
}
#testimonials-19 .pull-quote-card .quote-highlight::before {
  content: "\201C";
  top: -10px;
  left: -5px;
}
#testimonials-19 .pull-quote-card .quote-highlight::after {
  content: "\201D";
  bottom: -15px;
  right: -5px;
}
#testimonials-19 .pull-quote-card .client-name-indicator {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: auto;
  padding-top: 15px;
  font-weight: 500;
}
#testimonials-19 .modal-dialog {
  max-width: 650px;
}
#testimonials-19 .modal-content {
  border-radius: 8px;
  border: none;
}
#testimonials-19 .modal-header {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}
#testimonials-19 .modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
}
#testimonials-19 .modal-body {
  padding: 1.5rem;
  text-align: center;
}
#testimonials-19 .modal-client-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 3px solid #dee2e6;
}
#testimonials-19 .modal-full-message {
  font-size: 1.05rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: left;
}
#testimonials-19 .modal-client-details {
  text-align: right;
  font-size: 0.95rem;
  color: #6c757d;
}
#testimonials-19 .modal-client-details .name {
  display: block;
  font-weight: 600;
  color: #343a40;
}
#testimonials-19 .modal-client-details .position {
  display: block;
}
@media (max-width: 991.98px) {
  #testimonials-19 .pull-quote-card {
    min-height: 220px;
  }
  #testimonials-19 .pull-quote-card .quote-highlight {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  #testimonials-19 {
    padding: 50px 0;
  }
  #testimonials-19 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-19 .pull-quote-card {
    min-height: 200px;
    padding: 25px 20px;
  }
}



#call-to-action-23 {
  padding: 5rem 0;
  overflow: hidden;
}
.cta-form-content h2 {
  font-weight: 700;
  color: #312e81;
}
.cta-form-content p {
  color: #4f46e5;
  font-size: 1.1rem;
}
.cta-form-wrapper .input-group {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
}
.cta-form-wrapper .form-control {
  min-height: 3.5rem;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: #e0e7ff;
}
.cta-form-wrapper .form-control:focus {
  border-color: #a5b4fc;
  box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}
.cta-form-wrapper .btn {
  min-height: 3.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
  font-weight: 600;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cta-form-wrapper .btn:hover {
  background-color: #4338ca;
  border-color: #4338ca;
}
@media (max-width: 991.98px) {
  .cta-form-content {
    margin-bottom: 2rem;
    text-align: center;
  }
}



#faq-28 {
  padding: 80px 0;
  background-color: #fff;
}
#faq-28 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#faq-28 .top-questions-row {
  margin-bottom: 4rem;
}
#faq-28 .top-question-card {
  background-color: #e7f1ff;
  border: none;
  border-radius: 10px;
  padding: 1.8rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#faq-28 .top-question-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.1);
}
#faq-28 .top-question-card .top-question-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0a58ca;
  margin-bottom: 0.8rem;
}
#faq-28 .top-question-card .top-question-answer {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
}
#faq-28 .other-faqs-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #495057;
}
#faq-28 .accordion-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: 6px !important;
  overflow: hidden;
}
#faq-28 .accordion-button {
  font-weight: 500;
  color: #495057;
  background-color: #f8f9fa;
  padding: 1rem 1.25rem;
  border: none;
  box-shadow: none !important;
  text-align: left;
}
#faq-28 .accordion-button:not(.collapsed) {
  color: #0b5ed7;
  background-color: #f0f7ff;
}
#faq-28 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
  filter: brightness(0.6);
}
#faq-28 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b5ed7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
  filter: none;
}
#faq-28 .accordion-body {
  padding: 1.25rem 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
  border-top: 1px solid #eee;
}
#faq-28 .accordion-body p:last-child {
  margin-bottom: 0;
}



#overview-4 {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}
#overview-4 .overview-section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 2;
}
#overview-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
#overview-4 .overview-content-box {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#overview-4 .section-heading {
  color: #ffffff;
}
#overview-4 .lead {
  color: rgba(255, 255, 255, 0.9);
}
#overview-4 .highlights-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
#overview-4 .highlights-list li {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.1);
}
#overview-4 .highlights-list li i {
  margin-right: 0.5rem;
  color: var(--bs-warning);
}
#overview-4 .btn-primary {
}
#overview-4 .btn-primary:hover {
}
@media (max-width: 767.98px) {
  #overview-4 .overview-section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #overview-4 .highlights-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  #overview-4 .highlights-list li {
    width: fit-content;
  }
}


