@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&display=swap');


/* ===== Project Filter & Grid (newp-) ===== */
.newp-filter-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.newp-filter-select {
  flex: 1 1 200px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #1a3a5c;
  border-radius: 0;
  background-color: #fff;
  color: #1a3a5c;
  padding: 0.65rem 2.25rem 0.65rem 1rem;
  font-size: 0.95rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231a3a5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  font-weight: 500 !important;
}

.newp-filter-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(26, 58, 92, 0.25);
}

.newp-filter-btn {
  flex: 0 0 auto;
  background-color: #1a3a5c;
  color: #fff;
  border: 1.5px solid #1a3a5c;
  padding: 0.7rem 2rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.newp-filter-btn:hover {
  background-color: #fff;
  color: #1a3a5c;
}

.newp-filter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newp-divider {
  border: none;
  border-top: 1px solid #1a3a5c;
  margin: 0 0 1.5rem;
  opacity: 1;
  margin-top: 28px;
  margin-bottom: 75px;
}

.newp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.newp-card-item {
  position: relative;
  overflow: hidden;
}

.newp-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.newp-card-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: all 0.8s ease 0s;
  height: 100%;
  transition: all .4s !important;
}

.newp-card-title {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background: #003a69;
  background: linear-gradient(180deg, #003a69 0%, rgba(0, 58, 105, 0) 65%);
  transition: background 1s ease 0s;
}

.newp-card-heading {
  font-size: 0.85rem;
}

.newp-card-title-wrapper {
  transition: transform 0.8s ease 0s;
}

.newp-card-icon {
  display: none;
  width: 98px;
  height: 38px;
  margin-bottom: 0;
  opacity: 0;
  transition: all 3s ease 0s;
}

.newp-card:hover .newp-card-title,
.newp-card:active .newp-card-title {
  background: #003a69 !important;
}

.newp-card:hover .newp-card-title-wrapper,
.newp-card:active .newp-card-title-wrapper {
  transform: translateY(15%);
}

.newp-card:hover .newp-card-icon,
.newp-card:active .newp-card-icon {
  width: 98px;
  height: 38px;
  display: block;
  margin-bottom: 0.375rem;
  opacity: 1;
}

.newp-card:hover .newp-card-img,
.newp-card:active .newp-card-img {
  transform: scale(1.06);
}

button.newp-filter-btn {
  text-transform: capitalize !important;
}







@media (min-width: 1439.5px) {

  .newp-card:hover .newp-card-title-wrapper,
  .newp-card:active .newp-card-title-wrapper {
    transform: translateY(35%);
  }
}

@media (max-width: 767.48px) {
  .newp-card-title {
    background: rgba(0, 58, 105, 0.6);
  }

  .newp-card-title-wrapper,
  .newp-card-icon {
    transition: none;
  }

  .newp-card-title-wrapper {
    display: flex;
    align-items: center;
    transform: none !important;
  }

  .newp-card-icon {
    display: none !important;
    opacity: 0 !important;
  }
}

.newp-load-more-wrap {
  padding: 2rem 0;
}

.newp-load-more-btn {
  background: transparent;
  border: 1.5px solid #1a3a5c;
  color: #1a3a5c;
  padding: 0.75rem 2.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.newp-load-more-btn:hover {
  background-color: #1a3a5c;
  color: #fff;
}

.newp-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 1100px) {
  .newp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .newp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newp-filter-bar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .newp-filter-select,
  .newp-filter-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .newp-grid {
    grid-template-columns: 1fr;
  }
}

.newp-spinner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.newp-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(26, 58, 92, 0.2);
  border-top-color: #1a3a5c;
  border-radius: 50%;
  animation: newp-spin 0.8s linear infinite;
}

@keyframes newp-spin {
  to {
    transform: rotate(360deg);
  }
}

.newp-no-results {
  grid-column: 1 / -1;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #1a3a5c;
  font-size: 16px;
  padding: 60px 20px;
  background: #f5f8fa;
  border: 1px solid #d9e1e8;
  border-radius: 4px;
}

/* .newp-no-results::before {
  content: "🔍";
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
} */

.newp-no-results p {
  margin: 0;
  font-size: 16px;
  color: #1a3a5c;
}

/* ===== Testimonials (newp-test-) ===== */
.newp-test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.newp-test-item {
  padding: 20px;
}

.testimonials__new_title {
  color: #003A69;
  font-weight: 500;
  font-size: 44px;
  font-family: 'Newsreader', serif;
}

.newp-test-quote {
  font-size: 16px;
  color: #003A69;
  line-height: 1.7;
  text-align: center;
  font-weight: 500;
}

.newp-test-name {
  font-style: italic;
  color: #333;
  text-align: center;
  margin-top: 15px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .newp-test-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Testimonials CTA sections (newp-test-) ===== */
.newp-test-btn {
  display: inline-block;
  padding: 0.45rem 2.25rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1.5px solid #1a3a5c;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.newtestimonial___class {
  padding-bottom: 80px;
  padding-top: 30px;
}

.newp-test-btn-solid {
  background-color: #fff;
  color: #1a3a5c;
}

.newp-test-btn-solid:hover {
  background-color: #1a3a5c;
  color: #fff;
  border-color: #fff;
}

.newp-test-btn-outline {
  background-color: transparent;
  color: #1a3a5c;
}

.newp-test-btn-outline:hover {
  background-color: #1a3a5c;
  color: #fff;
}

.newp-test-cta-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 60px 20px;
  box-sizing: border-box;
}

.newp-test-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.newp-test-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 58, 92, 0.78);
  z-index: 2;
}

.newp-test-cta-section .container {
  z-index: 3;
}

.newp-test-cta-heading {
  color: #fff;
  font-family: 'Newsreader', serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 30px;
}

.newp-test-join-section {
  background-color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.newp-test-join-eyebrow {
  color: #1a3a5c;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newp-test-join-heading {
  color: #1a3a5c;
  font-family: 'Newsreader', serif;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .newp-test-cta-section {
    min-height: 320px;
    padding: 40px 20px;
  }

  .newp-test-cta-heading {
    font-size: 28px;
  }

  .newp-test-join-section {
    padding: 50px 20px;
  }

  .newp-test-join-heading {
    font-size: 28px;
  }

  .newp-test-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* ===== Testimonials carousel (newp-test-) ===== */
.newp-test-section {
  padding: 20px 0 40px;
}

.newp-test-title {
  color: #1a3a5c;
  font-family: 'Newsreader', serif;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 14px;
}

.newp-test-title-divider {
  width: 64px;
  height: 3px;
  background-color: #1a3a5c;
  margin: 0 auto 40px;
}

.newp-test-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 70px;
  box-sizing: border-box;
}

.newp-test-slide {
  padding: 50px 20px;
  box-sizing: border-box;
}

.newp-test-slide-quote {
  font-size: 19px;
  color: #1a3a5c;
  line-height: 1.7;
  text-align: center;
}

.newp-test-slide-name {
  font-style: italic;
  color: #888;
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}

.newp-test-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  margin: 0;
}

.newp-test-carousel .owl-nav button.owl-prev,
.newp-test-carousel .owl-nav button.owl-next {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  background-color: #1a3a5c;
  color: #fff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  margin: 0;
  transition: background-color 0.3s ease;
}

.newp-test-carousel .owl-nav button.owl-prev:hover,
.newp-test-carousel .owl-nav button.owl-next:hover {
  background-color: #12283c;
}

.newp-test-carousel .owl-nav button.owl-prev::before,
.newp-test-carousel .owl-nav button.owl-next::before {
  font-size: 20px;
  line-height: 1;
  color: #fff;
}

/* .newp-test-carousel .owl-nav button.owl-prev::before {
  content: "\2190";
}

.newp-test-carousel .owl-nav button.owl-next::before {
  content: "\2192";
} */

.newp-test-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.newp-test-carousel .owl-dots .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #1a3a5c;
  display: block;
}

.newp-test-carousel .owl-dots .owl-dot.active span {
  background-color: #1a3a5c;
}

@media (max-width: 768px) {
  .newp-test-title {
    font-size: 28px;
  }

  .newtestimonial___class {
    padding-bottom: 40px;
    padding-top: 10px;
}
  .newp-test-carousel {
    padding: 0 50px;
  }

  .newp-test-slide {
    padding: 30px 10px;
  }

  .newp-test-slide-quote {
    font-size: 16px;
  }

  .newp-test-carousel .owl-nav button.owl-prev,
  .newp-test-carousel .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
  }
}