
#hero-21 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}
#hero-21 .hero-overlay-21 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-21 .container {
  position: relative;
  z-index: 2;
}
#hero-21 .hero-content-wrapper-21 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-21 .hero-title-21 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-21 .hero-subtitle-21 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-21 .hero-cta-button-21 {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#hero-21 .hero-cta-button-21:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-21 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-21 .hero-title-21 {
    font-size: 2.5rem;
  }
  #hero-21 .hero-subtitle-21 {
    font-size: 1.1rem;
  }
}



#about-us-25 {
  padding: 60px 0;
  background-color: #333;
  color: #fff;
}
#about-us-25 .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #eee;
  text-align: center;
  margin-bottom: 20px;
}
#about-us-25 .section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 40px;
}
#about-us-25 .image-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
#about-us-25 .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1 / 1;
}
#about-us-25 .grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
#about-us-25 .grid-item:hover img {
  transform: scale(1.05);
}
#about-us-25 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px;
}
#about-us-25 .grid-item:hover .overlay {
  opacity: 1;
}
#about-us-25 .overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #eee;
}
#about-us-25 .overlay p {
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.5;
}



#features-14 {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f7fa, #80deea);
  text-align: left;
}
#features-14 .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#features-14 .section-title {
  font-size: 36px;
  color: #006064;
  font-weight: 700;
}
#features-14 .section-subtitle {
  font-size: 20px;
  color: #004d40;
}
#features-14 .feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#features-14 .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
#features-14 .feature-icon {
  font-size: 60px;
  color: #00838f;
  margin-bottom: 20px;
}
#features-14 .feature-title {
  font-size: 24px;
  color: #006064;
  margin-bottom: 10px;
  font-weight: 600;
}
#features-14 .feature-description {
  font-size: 16px;
  color: #424242;
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f4f6f9;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #555;
  margin-top: 8px;
}

/* === Grid & Perspective === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  perspective: 1000px;
  grid-template-columns: repeat(1,1fr);
}
@media (min-width: 576px) {
  .post-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 992px) {
  .post-grid { grid-template-columns: repeat(4,1fr); }
}

/* === Tilt Card === */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  will-change: transform;
  cursor: pointer;
}
.post-card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.post-card img {
  width: 100%;
  display: block;
}
.post-card .card-body {
  padding: 1rem;
}
.post-card .card-body h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.post-card .card-body p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.post-card .btn-readmore {
  font-size: 0.85rem;
  color: #fff;
  background-color: #007bff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.post-card .btn-readmore:hover {
  background-color: #0056b3;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#our-services-14 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}
#our-services-14 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-14 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
#our-services-14 .service-grid-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.075);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#our-services-14 .service-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#our-services-14 .service-icon i {
  font-size: 2.5rem;
  color: var(--bs-primary, #0d6efd);
  margin-bottom: 1rem;
}
#our-services-14 .service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.25rem;
}
#our-services-14 .service-tagline {
  font-size: 0.85rem;
  color: #6c757d;
}
#serviceDetailModal .modal-header {
}
#serviceDetailModal .modal-header .btn-close {
}
#serviceDetailModal .modal-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#serviceDetailModal .modal-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
#serviceDetailModal .modal-footer {
}



#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;
}



#why-choose-us-26 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #0d6efd;
  color: #ffffff;
}
#why-choose-us-26 .section-title-container {
  margin-bottom: 40px;
}
#why-choose-us-26 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
#why-choose-us-26 .section-main-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
#why-choose-us-26 .vision-statement-block {
  margin-bottom: 50px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}
#why-choose-us-26 .vision-image-container img {
  max-width: 100%;
  border-radius: 10px;
}
#why-choose-us-26 .vision-content .vision-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #ffc107;
  margin-bottom: 15px;
}
#why-choose-us-26 .vision-content .vision-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
#why-choose-us-26 .innovation-pillars-main-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}
#why-choose-us-26 .innovation-pillar-item {
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  height: 100%;
}
#why-choose-us-26 .pillar-icon {
  font-size: 2.8rem;
  color: #ffc107;
  margin-bottom: 15px;
  display: block;
}
#why-choose-us-26 .pillar-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
}
#why-choose-us-26 .pillar-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
#why-choose-us-26 .final-commitment-statement {
  margin-top: 40px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
@media (max-width: 991.98px) {
  #why-choose-us-26 .vision-image-container img {
    margin-bottom: 25px;
  }
  #why-choose-us-26 .vision-content,
  #why-choose-us-26 .innovation-pillar-item {
    text-align: center;
  }
}



#contact-12 {
  padding: 60px 0;
  background-color: #eef1f5;
  overflow: hidden;
}
#contact-12 .section-header {
  margin-bottom: 40px;
  text-align: center;
}
#contact-12 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3a4d6e;
  margin-bottom: 10px;
}
#contact-12 .section-description {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 750px;
  margin: 0 auto;
}
#contact-12 .contact-form-main {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
#contact-12 .form-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #3a4d6e;
}
#contact-12 .form-label {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #495057;
}
#contact-12 .form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 10px 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#contact-12 .form-control:focus {
  border-color: #6c8bc7;
  box-shadow: 0 0 0 0.25rem rgba(108, 139, 199, 0.25);
}
#contact-12 .btn-submit-contact {
  background-color: #5a7bb4;
  border: none;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
#contact-12 .btn-submit-contact:hover {
  background-color: #4a689a;
  transform: translateY(-2px);
}
#contact-12 .contact-sidebar {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  height: 100%;
}
#contact-12 .sidebar-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #3a4d6e;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
#contact-12 .sidebar-image {
  display: block;
  max-width: 80px;
  height: auto;
  margin: 0 auto 20px auto;
  opacity: 0.8;
}
#contact-12 .sidebar-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-12 .sidebar-info-list li {
  display: flex;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #555;
}
#contact-12 .sidebar-info-list li i {
  flex-shrink: 0;
  width: 25px;
  margin-right: 10px;
  color: #5a7bb4;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 2px;
}
#contact-12 .sidebar-info-list li .info-label {
  font-weight: 500;
  margin-right: 5px;
}
#contact-12 .sidebar-info-list li .info-value {
  color: #6c757d;
}
#contact-12 .sidebar-info-list li .info-value a {
  color: #5a7bb4;
  text-decoration: none;
  transition: color 0.3s ease;
}
#contact-12 .sidebar-info-list li .info-value a:hover {
  color: #4a689a;
  text-decoration: underline;
}
#contact-12 .contact-alert {
  display: none;
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 4px;
}
#contact-12 .contact-alert.success {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}
#contact-12 .contact-alert.error {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}
@media (max-width: 991.98px) {
  #contact-12 .contact-sidebar {
    margin-top: 30px;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  #contact-12 {
    padding: 40px 0;
  }
  #contact-12 .section-title {
    font-size: 2rem;
  }
  #contact-12 .contact-form-main {
    padding: 25px;
  }
  #contact-12 .contact-sidebar {
    padding: 20px;
  }
  #contact-12 .btn-submit-contact {
    width: 100%;
  }
}



#counter-5 {
  position: relative;
  text-align: center;
  color: white;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#counter-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
#counter-5 .counter-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}
#counter-5 h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
#counter-5 p {
  font-size: 1.4rem;
  margin-bottom: 40px;
}
#counter-5 .counter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}
#counter-5 .counter-item {
  position: relative;
  width: 200px;
  height: 200px;
  text-align: center;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
#counter-5 .counter-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
#counter-5 .counter-item i {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 15px;
}
#counter-5 .counter-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  display: block;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}
#counter-5 .counter-title {
  font-size: 1.3rem;
  color: #ddd;
}



#faq-15 {
  padding: 80px 0;
  background-color: #f8f9fa;
}
#faq-15 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#faq-15 .faq-expand-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}
#faq-15 .faq-card-header button {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: #212529;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #eee;
  position: relative;
  transition: background-color 0.2s ease;
  box-shadow: none !important;
}
#faq-15 .faq-card-header button:hover {
  background-color: #f8f9fa;
}
#faq-15 .faq-card-header button:not(.collapsed) {
  color: #0d6efd;
  background-color: #f0f7ff;
  border-bottom-color: transparent;
}
#faq-15 .faq-card-header button::after {
  content: "\\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  font-size: 0.9em;
  color: #6c757d;
}
#faq-15 .faq-card-header button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  color: #0d6efd;
}
#faq-15 .faq-card-body-collapse .card-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
}
#faq-15 .faq-card-body-collapse .card-body p:last-child {
  margin-bottom: 0;
}



#cta-banner-10 {
  padding: 7rem 1rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  text-align: center;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #212529;
}
#cta-banner-10::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-color: rgba(0, 0, 0, 0.55);
}
#cta-banner-10 .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
#cta-banner-10 .cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
#cta-banner-10 .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#cta-banner-10 .cta-button .btn {
  padding: 1rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}
#cta-banner-10 .cta-button .btn:hover {
  transform: scale(1.05);
}
#cta-banner-10 .cta-button .btn i {
  margin-left: 0.6rem;
}
@media (max-width: 991.98px) {
  #cta-banner-10 {
    padding: 6rem 1rem;
  }
  #cta-banner-10 .cta-title {
    font-size: 2.5rem;
  }
  #cta-banner-10 .cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  #cta-banner-10 {
    padding: 5rem 1rem;
  }
  #cta-banner-10 .cta-title {
    font-size: 2.1rem;
  }
  #cta-banner-10 .cta-subtitle {
    font-size: 1rem;
  }
  #cta-banner-10 .cta-button .btn {
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
  }
}



#press-mentions-1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#press-mentions-1 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#press-mentions-1 .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 1rem;
}
#press-mentions-1 .section-subtitle {
  font-size: 1.2rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-weight: 500;
}
#press-mentions-1 .logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
#press-mentions-1 .logo-item {
  text-align: center;
}
#press-mentions-1 .logo-item a {
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-1 .logo-item a:hover {
  filter: grayscale(0%);
  opacity: 1;
}
#press-mentions-1 .logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 45px;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  #press-mentions-1 .logo-grid {
    gap: 1.5rem 2rem;
  }
  #press-mentions-1 .logo-item img {
    max-height: 40px;
  }
}
@media (max-width: 767.98px) {
  #press-mentions-1 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #press-mentions-1 .section-header {
    margin-bottom: 2rem;
  }
  #press-mentions-1 .logo-grid {
    gap: 1.5rem 1.5rem;
  }
  #press-mentions-1 .logo-item img {
    max-height: 35px;
  }
  #press-mentions-1 .logo-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 575.98px) {
  #press-mentions-1 .logo-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}


