
#hero-22 {
  overflow: hidden;
  background-color: #e9ecef;
}
#hero-22 .row {
  min-height: 70vh;
}
#hero-22 .hero-image-col-22 {
  background-size: cover;
  background-position: center;
  min-height: 350px;
}
#hero-22 .hero-text-col-22 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}
#hero-22 .hero-title-22 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-22 .hero-subtitle-22 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
#hero-22 .hero-cta-button-22 {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.25rem;
  text-decoration: none;
  border: none;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}
#hero-22 .hero-cta-button-22:hover {
  opacity: 0.85;
}
@media (min-width: 768px) {
  #hero-22 .hero-image-col-22 {
    min-height: 100%;
  }
}
@media (max-width: 991.98px) {
  #hero-22 .hero-text-col-22 {
    padding: 3rem 4rem;
  }
  #hero-22 .hero-title-22 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  #hero-22 .hero-text-col-22 {
    padding: 3rem 2rem;
    text-align: center;
  }
  #hero-22 .hero-cta-button-22 {
    align-self: center;
  }
  #hero-22 .hero-title-22 {
    font-size: 2.1rem;
  }
}



#why-choose-us-7 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#why-choose-us-7 .row {
  display: flex;
  gap: 30px;
  align-items: center;
}
#why-choose-us-7 .image-column {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}
#why-choose-us-7 .image-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#why-choose-us-7 .content-column {
  flex: 2;
}
#why-choose-us-7 .content-column h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
#why-choose-us-7 .reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#why-choose-us-7 .reason-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
#why-choose-us-7 .reason-list li i {
  font-size: 2rem;
  color: #28a745;
  margin-right: 15px;
}
#why-choose-us-7 .reason-list li .reason-content h5 {
  margin: 0;
  font-size: 1.2rem;
}
#why-choose-us-7 .reason-list li .reason-content p {
  margin: 0;
  color: #555;
}
@media (max-width: 768px) {
  #why-choose-us-7 .row {
    flex-direction: column;
  }
}



#customer-support-5 {
  text-align: center;
  background: #f8f9fa;
  padding: 80px 0;
}
#customer-support-5 .support-content {
  max-width: 800px;
  margin: 0 auto;
}
#customer-support-5 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}
#customer-support-5 p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}
#chatbot-container {
  max-width: 400px;
  margin: auto;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
#chat-header {
  background: #007bff;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: bold;
}
#chat-messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 15px;
  background: #f4f4f4;
}
.chat-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.chat-message.bot {
  justify-content: flex-start;
}
.chat-message.user {
  justify-content: flex-end;
}
.chat-bubble {
  padding: 10px 15px;
  border-radius: 15px;
  max-width: 80%;
}
.bot .chat-bubble {
  background: #007bff;
  color: white;
  text-align: left;
}
.user .chat-bubble {
  background: #e0e0e0;
  text-align: right;
}
#chat-input-container {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 10px;
  background: white;
}
#chat-input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  outline: none;
}
#chat-send {
  background: #007bff;
  border: none;
  color: white;
  padding: 10px 15px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
#chat-send:hover {
  background: #0056b3;
}



#testimonials-8 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1000px;
}
#testimonials-8 .flip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
#testimonials-8 .flip-card {
  position: relative;
  width: 300px;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
#testimonials-8 .flip-card:hover {
  transform: rotateY(180deg);
}
#testimonials-8 .flip-side {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#testimonials-8 .flip-front {
  background: #fff;
  text-align: center;
  padding: 20px;
}
#testimonials-8 .flip-front img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-8 .flip-front h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
#testimonials-8 .flip-front p {
  font-size: 1rem;
  font-style: italic;
  color: #333;
}
#testimonials-8 .flip-back {
  background: #f8f9fa;
  color: #333;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
}



#features-5 {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}
#features-5 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-5 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-5 .nav-tabs .nav-link {
  color: #17a2b8;
  border: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
#features-5 .nav-tabs .nav-link.active {
  background-color: #17a2b8;
  color: #ffffff;
  border-radius: 4px;
}
#features-5 .tab-content {
  margin-top: 30px;
}
#features-5 .feature-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
}
#features-5 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-5 .feature-icon {
  font-size: 40px;
  color: #17a2b8;
  margin-bottom: 20px;
}
#features-5 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-5 .feature-description {
  font-size: 14px;
  color: #6c757d;
}



#our-services-20 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#our-services-20 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-20 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
#our-services-20 .interactive-image-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
#our-services-20 .interactive-image-container img.background-image {
  display: block;
  width: 100%;
  height: auto;
}
#our-services-20 .hotspot {
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: rgba(13, 110, 253, 0.8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 2;
}
#our-services-20 .hotspot:hover {
  transform: translate(-50%, -50%) scale(1.2);
  background-color: rgba(13, 110, 253, 1);
}
#our-services-20 .hotspot::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.5);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.popover {
}
.popover-header {
}
.popover-body {
}



#awards-9 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#awards-9 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#awards-9 .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-9 .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-9 .recognition-list-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
}
#awards-9 .recognition-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#awards-9 .recognition-list-item {
  padding: 0.8rem 0;
  border-bottom: 1px dotted #e0e0e0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 1rem;
}
#awards-9 .recognition-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#awards-9 .recognition-list.decoration-checkmark li,
#awards-9 .recognition-list.decoration-bullet li {
  padding-left: 1.75rem;
  position: relative;
}
#awards-9 .recognition-list.decoration-checkmark li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.6em;
  color: var(--bs-primary);
  font-size: 0.9em;
}
#awards-9 .recognition-list.decoration-bullet li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0.25rem;
  top: 0.7em;
  color: var(--bs-primary);
  font-size: 0.6em;
  opacity: 0.7;
}
#awards-9 .item-name {
  flex: 1 1 40%;
  min-width: 250px;
  font-size: 1rem;
  font-weight: 600;
  color: #343a40;
}
#awards-9 .item-name a {
  color: inherit;
  text-decoration: none;
}
#awards-9 .item-name a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
#awards-9 .item-body {
  flex: 1 1 30%;
  min-width: 150px;
  font-size: 0.9rem;
  color: #495057;
}
#awards-9 .item-year {
  flex: 0 0 100px;
  font-size: 0.9rem;
  color: #6c757d;
  text-align: right;
}
@media (max-width: 767.98px) {
  #awards-9 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #awards-9 .section-title {
    font-size: 1.9rem;
  }
  #awards-9 .recognition-list-wrapper {
    padding: 1.5rem;
  }
  #awards-9 .recognition-list-item {
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 0;
    align-items: flex-start;
  }
  #awards-9 .recognition-list.decoration-checkmark li,
  #awards-9 .recognition-list.decoration-bullet li {
    padding-left: 0;
  }
  #awards-9 .recognition-list.decoration-checkmark li::before,
  #awards-9 .recognition-list.decoration-bullet li::before {
    display: none;
  }
  #awards-9 .item-name {
    min-width: unset;
    flex-basis: auto;
  }
  #awards-9 .item-body {
    min-width: unset;
    flex-basis: auto;
  }
  #awards-9 .item-year {
    text-align: left;
    flex-basis: auto;
  }
}



/* style.css for post-section-4 */
#post-section-4 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f8f9fa;
}

#post-section-4 .section-global-header {
    margin-bottom: 40px;
    text-align: center;
}

#post-section-4 .section-global-header .section-global-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 10px;
}

#post-section-4 .section-global-header .section-global-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Post Area */
#post-section-4 .featured-post-area .area-title,
#post-section-4 .sidebar-area .area-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff30;
    display: inline-block;
}

#post-section-4 .featured-post-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

#post-section-4 .featured-post-image-wrapper {
    max-height: 400px; /* Control height of featured image */
    overflow: hidden;
}

#post-section-4 .featured-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#post-section-4 .featured-post-card:hover .featured-post-image {
    transform: scale(1.03);
}

#post-section-4 .featured-post-content {
    padding: 25px;
}

#post-section-4 .featured-post-categories {
    margin-bottom: 10px;
}

#post-section-4 .featured-post-category-badge {
    font-size: 0.8rem;
    padding: 0.3em 0.7em;
    margin-right: 6px;
    background-color: #6c757d;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
#post-section-4 .featured-post-category-badge:hover {
    background-color: #5a6268;
}

#post-section-4 .featured-post-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 12px;
    line-height: 1.3;
}

#post-section-4 .featured-post-title a {
    color: inherit;
    text-decoration: none;
}
#post-section-4 .featured-post-title a:hover {
    color: #007bff;
}

#post-section-4 .featured-post-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}
#post-section-4 .featured-post-meta .meta-icon {
    margin-right: 5px;
}

#post-section-4 .featured-post-excerpt {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
}

#post-section-4 .featured-post-readmore-btn {
    font-weight: 500;
    padding: 0.6rem 1.2rem;
}
#post-section-4 .featured-post-readmore-btn .btn-icon {
    margin-left: 7px;
}

/* Sidebar Area */
#post-section-4 .sidebar-area {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#post-section-4 .sidebar-post-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}
#post-section-4 .sidebar-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#post-section-4 .sidebar-post-thumbnail-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 65px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 15px;
}

#post-section-4 .sidebar-post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#post-section-4 .sidebar-post-content .sidebar-post-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}
#post-section-4 .sidebar-post-content .sidebar-post-title a {
    color: #343a40;
    text-decoration: none;
    transition: color 0.2s ease;
}
#post-section-4 .sidebar-post-content .sidebar-post-title a:hover {
    color: #007bff;
}

#post-section-4 .sidebar-post-meta {
    font-size: 0.8rem;
    color: #888;
}
#post-section-4 .sidebar-post-meta .meta-icon {
    margin-right: 4px;
}

#post-section-4 .sidebar-pagination-container {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}
/* Adjust Bootstrap pagination for smaller size in sidebar */
#post-section-4 .sidebar-pagination-container .pagination {
    font-size: 0.85rem;
}
#post-section-4 .sidebar-pagination-container .page-link {
    padding: 0.3rem 0.6rem;
}


/* Responsive */
@media (max-width: 991.98px) { /* Medium devices (tablets, less than 992px) */
    #post-section-4 .sidebar-area {
        margin-top: 30px;
    }
    #post-section-4 .featured-post-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) { /* Small devices (landscape phones, less than 768px) */
    #post-section-4 .section-global-header .section-global-title {
        font-size: 2rem;
    }
    #post-section-4 .featured-post-title {
        font-size: 1.4rem;
    }
     #post-section-4 .featured-post-image-wrapper {
        max-height: 300px;
    }
} 




#cta-banner-9 {
  padding: 4rem 1rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-radius: 0.375rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #198754;
  color: #ffffff;
}
#cta-banner-9 .container {
  max-width: 750px;
}
#cta-banner-9 .cta-title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
#cta-banner-9 .cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#cta-banner-9 .cta-form .input-group {
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 50rem;
  overflow: hidden;
}
#cta-banner-9 .cta-form .form-control {
  border-radius: 50rem 0 0 50rem !important;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
}
#cta-banner-9 .cta-form .form-control:focus {
  box-shadow: none;
  z-index: 3;
}
#cta-banner-9 .cta-form .btn {
  border-radius: 0 50rem 50rem 0 !important;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
}
#cta-banner-9 .cta-form .btn:hover {
}
#cta-banner-9 .cta-form .btn i {
  margin-right: 0.4rem;
}
#cta-banner-9 .privacy-text {
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  #cta-banner-9 {
    padding: 3rem 1rem;
  }
  #cta-banner-9 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-9 .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  #cta-banner-9 .cta-form .input-group {
    max-width: 90%;
  }
}
@media (max-width: 575.98px) {
  /*
     #cta-banner-9 .cta-form .input-group { flex-direction: column; border-radius: 0.375rem; gap: 0.5rem; background: none; box-shadow: none;}
     #cta-banner-9 .cta-form .form-control { border-radius: 0.25rem !important; }
     #cta-banner-9 .cta-form .btn { border-radius: 0.25rem !important; width: 100%; }
    */
}


