
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#hero-15 {
  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;
  overflow: hidden;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-15::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-15 .container {
  position: relative;
  z-index: 2;
}
#hero-15 .hero-content-wrapper-15 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
#hero-15 .hero-title-15,
#hero-15 .hero-subtitle-15,
#hero-15 .hero-cta-button-15 {
  opacity: 0;
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#hero-15 .hero-title-15 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation-delay: 0.2s;
}
#hero-15 .hero-subtitle-15 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation-delay: 0.4s;
}
#hero-15 .hero-cta-button-15 {
  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;
  background-color: #0d6efd;
  color: #ffffff;
  animation-delay: 0.6s;
}
#hero-15 .hero-cta-button-15:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767.98px) {
  #hero-15 {
    min-height: 60vh;
    padding: 4rem 0;
  }
  #hero-15 .hero-title-15 {
    font-size: 2.5rem;
  }
  #hero-15 .hero-subtitle-15 {
    font-size: 1.1rem;
  }
}



#about-us-11 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#about-us-11 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#about-us-11 .awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
#about-us-11 .award-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#about-us-11 .award-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
}
#about-us-11 .award-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #007bff;
}
#about-us-11 .award-card p {
  font-size: 0.95rem;
  color: #555;
}
#about-us-11 .statistics {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
#about-us-11 .stat {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}
#about-us-11 .stat-label {
  font-size: 1rem;
  color: #555;
}



#our-services-11 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}
#our-services-11 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-11 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#our-services-11 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#our-services-11 .service-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#our-services-11 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#our-services-11 .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#our-services-11 .card-body {
  padding: 1.5rem;
  flex-grow: 1;
}
#our-services-11 .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #495057;
}
#our-services-11 .card-text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
}
#our-services-11 .card-footer {
  background-color: transparent;
  border-top: none;
  padding: 0 1.5rem 1.5rem;
  margin-top: auto;
}
#our-services-11 .btn-service-link {
}



#portfolio-15 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #f8f9fa;
}
#portfolio-15 .section-title-container {
  margin-bottom: 40px;
}
#portfolio-15 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#portfolio-15 .section-main-subtitle {
  font-size: 1.1rem;
  color: #5a677d;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#portfolio-15 .portfolio-list-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: 20px;
}
#portfolio-15 .portfolio-list-table th,
#portfolio-15 .portfolio-list-table td {
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
}
#portfolio-15 .portfolio-list-table thead th {
  background-color: #e9ecef;
  color: #343a40;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #dee2e6;
}
#portfolio-15 .portfolio-list-table thead th:first-child {
  border-top-left-radius: 8px;
}
#portfolio-15 .portfolio-list-table thead th:last-child {
  border-top-right-radius: 8px;
}
#portfolio-15 .portfolio-list-table tbody tr {
  background-color: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
#portfolio-15 .portfolio-list-table tbody tr:hover {
  background-color: #fafdff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}
#portfolio-15 .portfolio-list-table tbody tr td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#portfolio-15 .portfolio-list-table tbody tr td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
#portfolio-15 .project-list-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0d6efd;
}
#portfolio-15 .project-list-client,
#portfolio-15 .project-list-year {
  font-size: 0.9rem;
  color: #6c757d;
}
#portfolio-15 .project-list-note {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
}
#portfolio-15 .project-list-link a {
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  #portfolio-15 .portfolio-list-table thead {
    display: none;
  }
  #portfolio-15 .portfolio-list-table,
  #portfolio-15 .portfolio-list-table tbody,
  #portfolio-15 .portfolio-list-table tr,
  #portfolio-15 .portfolio-list-table td {
    display: block;
    width: 100%;
  }
  #portfolio-15 .portfolio-list-table tr {
    margin-bottom: 15px;
    border-radius: 8px;
  }
  #portfolio-15 .portfolio-list-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: none;
    border-bottom: 1px dashed #e0e0e0;
  }
  #portfolio-15 .portfolio-list-table td:last-child {
    border-bottom: none;
  }
  #portfolio-15 .portfolio-list-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: calc(50% - 20px);
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
    color: #343a40;
  }
}
#portfolio-15 .portfolio-pagination {
  margin-top: 30px;
}



#awards-10 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}
/*
#awards-10::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6610f2 0%, #34156e 100%);
    z-index: 1;
}
#awards-10 .container { position: relative; z-index: 2; }
*/
#awards-10 .highlight-icon {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
#awards-10 .highlight-text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#awards-10 .description-text {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  opacity: 0.9;
}
#awards-10 .key-logos-wrapper {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 900px;
  margin: 0 auto;
}
#awards-10 .logos-title {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  opacity: 0.8;
}
#awards-10 .key-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
#awards-10 .logo-item {
  text-align: center;
}
#awards-10 .logo-item a {
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#awards-10 .logo-item a:hover {
  opacity: 1;
  transform: scale(1.05);
}
#awards-10 .logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  #awards-10 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #awards-10 .highlight-text {
    font-size: 2.2rem;
  }
  #awards-10 .description-text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  #awards-10 .key-logos-wrapper {
    padding-top: 2rem;
  }
  #awards-10 .logos-title {
    margin-bottom: 1.5rem;
  }
  #awards-10 .key-logos-grid {
    gap: 1.5rem 2rem;
  }
  #awards-10 .logo-item img {
    max-height: 40px;
  }
}



#press-mentions-12 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}
#press-mentions-12 .section-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
  margin-bottom: 2rem;
}
#press-mentions-12 .logo-row-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3.5rem;
}
#press-mentions-12 .logo-item {
  text-align: center;
  flex-shrink: 0;
}
#press-mentions-12 .logo-item a {
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-12 .logo-item a:hover {
  filter: grayscale(0%);
  opacity: 1;
}
#press-mentions-12 .logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 35px;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  #press-mentions-12 .logo-row-wrapper {
    gap: 2rem 3rem;
  }
  #press-mentions-12 .logo-item img {
    max-height: 30px;
  }
}
@media (max-width: 767.98px) {
  #press-mentions-12 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #press-mentions-12 .section-title {
    margin-bottom: 1.5rem;
  }
  #press-mentions-12 .logo-row-wrapper {
    gap: 1.5rem 2rem;
    justify-content: space-around;
  }
  #press-mentions-12 .logo-item img {
    max-height: 28px;
  }
}



#team-1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#team-1 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-1 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-1 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-1 .team-member-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  text-align: center;
  padding-bottom: 1.5rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#team-1 .team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#team-1 .member-image {
  position: relative;
  margin-bottom: 1.5rem;
}
#team-1 .member-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
#team-1 .member-info {
  padding: 0 1rem;
  flex-grow: 1;
}
#team-1 .member-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.25rem;
}
#team-1 .member-role {
  font-size: 0.9rem;
  color: var(--bs-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}
#team-1 .member-social-links {
  margin-top: auto;
  padding-top: 1rem;
}
#team-1 .member-social-links a {
  display: inline-block;
  color: #6c757d;
  margin: 0 0.4rem;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
}
#team-1 .member-social-links a:hover {
  color: var(--bs-primary);
  transform: scale(1.1);
}
@media (max-width: 767.98px) {
  #team-1 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-1 .section-title {
    font-size: 2.1rem;
  }
  #team-1 .member-name {
    font-size: 1.1rem;
  }
}



#testimonials-12 {
  padding: 60px 0;
  background-color: #ffffff;
}
#testimonials-12 .container {
  max-width: 1140px;
}
#testimonials-12 .section-header {
  margin-bottom: 50px;
}
#testimonials-12 .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #343a40;
}
#testimonials-12 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#testimonials-12 .testimonial-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials-12 .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#testimonials-12 .testimonial-body {
  flex-grow: 1;
  margin-bottom: 20px;
}
#testimonials-12 .testimonial-body p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  font-style: italic;
}
#testimonials-12 .testimonial-footer {
  display: flex;
  align-items: center;
}
#testimonials-12 .client-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
#testimonials-12 .client-details .client-name {
  font-weight: 600;
  color: #343a40;
  display: block;
  margin-bottom: 2px;
}
#testimonials-12 .client-details .client-position {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}
#testimonials-12 .rating {
  margin-top: 8px;
  color: #ffc107;
  font-size: 0.9rem;
}
#testimonials-12 .rating .fa-star.empty {
  color: #e0e0e0;
}
@media (max-width: 991.98px) {
  #testimonials-12 .testimonial-card {
    padding: 25px;
  }
}
@media (max-width: 767.98px) {
  #testimonials-12 {
    padding: 40px 0;
  }
  #testimonials-12 .section-header h2 {
    font-size: 1.8rem;
  }
  #testimonials-12 .section-header p {
    font-size: 1rem;
  }
}



/* === 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;
}




#contact-27 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #ffffff;
}
#contact-27 .section-title-container {
  margin-bottom: 40px;
}
#contact-27 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #222;
}
#contact-27 .section-main-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#contact-27 .appointment-teaser-content {
}
#contact-27 .teaser-image-container img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  #contact-27 .teaser-image-container img {
    margin-bottom: 0;
  }
}
#contact-27 .main-appointment-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 15px;
  line-height: 1.3;
}
#contact-27 .appointment-description-text {
  font-size: 1.05rem;
  color: #495057;
  margin-bottom: 25px;
  line-height: 1.7;
}
#contact-27 .benefits-list-area .benefits-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 15px;
}
#contact-27 .benefits-list-items {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
#contact-27 .benefits-list-items li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #343a40;
  margin-bottom: 10px;
}
#contact-27 .benefits-list-items li .benefit-icon {
  font-size: 1.1rem;
  color: #20c997;
  margin-right: 12px;
  width: 22px;
  text-align: center;
}
#contact-27 .btn-book-appointment {
  padding: 14px 35px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 8px;
  background-color: #28a745;
  border-color: #28a745;
  color: #fff;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
#contact-27 .btn-book-appointment:hover {
  background-color: #218838;
  border-color: #1e7e34;
  transform: scale(1.03);
}
#contact-27 .btn-book-appointment i {
  margin-right: 10px;
}
#contact-27 .secondary-appointment-cta {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #6c757d;
}
#contact-27 .secondary-appointment-cta a {
  color: #0d6efd;
  font-weight: 500;
  text-decoration: none;
}
#contact-27 .secondary-appointment-cta a:hover {
  text-decoration: underline;
}



#call-to-action-2 {
  padding: 60px 15px;
  background-color: #007bff;
  color: #fff;
  text-align: center;
}
#call-to-action-2 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#call-to-action-2 p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
#call-to-action-2 .btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-2 .btn-primary {
  background-color: #0056b3;
  color: #fff;
}
#call-to-action-2 .btn-primary:hover {
  background-color: #003f7f;
}
#call-to-action-2 .btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#call-to-action-2 .btn-outline:hover {
  background-color: #fff;
  color: #007bff;
}


