/*
Theme Name: Salayma Theme
Theme URI: https://salayma.com
Author: Salayma
Author URI: https://salayma.com
Description: A custom theme using Tailwind CSS.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: salayma
*/

/* ========== BASE ========== */
html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Noto Kufi Arabic', sans-serif !important;
}

/* ========== RTL SUPPORT ========== */
[dir="rtl"] .text-left { text-align: right; }
[dir="rtl"] .text-right { text-align: left; }
[dir="rtl"] .ml-auto { margin-left: 0; margin-right: auto; }
[dir="rtl"] .mr-auto { margin-right: 0; margin-left: auto; }
[dir="rtl"] .pl-4 { padding-left: 0; padding-right: 1rem; }
[dir="rtl"] .pr-4 { padding-right: 0; padding-left: 1rem; }
[dir="rtl"] .ml-1 { margin-left: 0; margin-right: 0.25rem; }
[dir="rtl"] .mr-1 { margin-right: 0; margin-left: 0.25rem; }
[dir="rtl"] .ml-2 { margin-left: 0; margin-right: 0.5rem; }
[dir="rtl"] .mr-2 { margin-right: 0; margin-left: 0.5rem; }
[dir="rtl"] .left-0 { left: auto; right: 0; }
[dir="rtl"] .right-0 { right: auto; left: 0; }
[dir="rtl"] .left-6 { left: auto; right: 1.5rem; }
[dir="rtl"] .right-6 { right: auto; left: 1.5rem; }

/* Flip arrow icons in RTL */
[dir="rtl"] .fa-arrow-right::before { content: "\f060"; }
[dir="rtl"] .fa-arrow-left::before { content: "\f061"; }
[dir="rtl"] .fa-chevron-right::before { content: "\f053"; }
[dir="rtl"] .fa-chevron-left::before { content: "\f054"; }

/* ========== HEADER ========== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Nav */
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav ul li a {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.header-nav ul li a:hover {
  color: #C9A227;
}

.header-nav ul li.current-menu-item a,
.header-nav ul li.current_page_item a {
  font-weight: 700;
  color: #1A1A1A;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  transition: transform 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  visibility: hidden;
}

html[dir="ltr"] .mobile-menu {
  transform: translateX(-100%);
}

.mobile-menu.active {
  transform: translateX(0) !important;
  visibility: visible !important;
}

body.no-scroll {
  overflow: hidden;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul li {
  margin-bottom: 1rem;
}

.mobile-nav ul li a {
  display: block;
  color: #1A1A1A;
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #C9A227;
}

.mobile-nav ul li.current-menu-item a {
  font-weight: 700;
  color: #1A1A1A;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 16px;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lang-switcher:hover {
  color: #C9A227;
}

/* Language Dropdown */
.lang-dropdown-wrap {
  position: relative;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 80px;
  overflow: hidden;
  z-index: 999;
}

.lang-dropdown-wrap.open .lang-dropdown {
  display: block;
}

.lang-dropdown-wrap.open .lang-switcher i {
  transform: rotate(180deg);
}

.lang-dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.lang-dropdown-item:hover {
  background: #f9f3e3;
  color: #C9A227;
}

.lang-dropdown-item.active {
  color: #C9A227;
  font-weight: 700;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

body[dir="rtl"] .whatsapp-float {
  left: 30px;
}

body[dir="ltr"] .whatsapp-float {
  right: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ========== BUTTONS ========== */
.btn-gold-gradient {
  background: linear-gradient(90deg, #D99C0B 0%, #FFDD70 51.4%, #B57D06 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0px 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-dark {
  background-color: #1A1A1A;
  color: #fff;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #2D2D2D;
}

.btn-outline {
  border: 2px solid #C9A227;
  color: #C9A227;
  padding: 12px 32px;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #C9A227;
  color: #fff;
}

/* ========== ABOUT ========== */
.gold-bar {
  width: 160px;
  height: 0;
  border: 4px solid transparent;
  border-image: linear-gradient(90deg, #D99C0B 0%, #FFDD70 51.4%, #B57D06 100%) 1;
}

.btn-about-wrap {
  position: relative;
  margin-top: 10px;
}

.btn-about {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 0 40px 22px;
  padding-top: 45px;
  background: url('https://alsalaymehgroup.com/wp-content/uploads/2026/03/Rectangle-386.svg') no-repeat center top;
  background-size: 100% 100%;
  color: #020202;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-about:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-about-logo {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  height: 28px;
  width: auto;
  z-index: 2;
}

.btn-about-arrow {
  height: 18px;
  width: auto;
}

/* Video Lightbox */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-overlay.active {
  display: flex;
}

.video-overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 100000;
  transition: opacity 0.3s;
}

[dir="rtl"] .video-overlay-close {
  right: auto;
  left: 20px;
}

.video-overlay-close:hover {
  opacity: 0.7;
}

.video-overlay-content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

.video-overlay-content iframe,
.video-overlay-content video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* ========== HERO ========== */
.hero-title {
  color: #020202;
  -webkit-text-stroke: 4px #FFFFFF;
  text-shadow: 0px 4px 100px rgba(255, 255, 255, 1);
  paint-order: stroke fill;
}

/* ========== HOME - COMPONENTS ========== */

/* Gold gradient text */
.gold-gradient-text {
  background: linear-gradient(to right, #d99c0b, #ffdd70 51.4%, #b57d06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold gradient text with stroke (About page stats) */
.about-stat-number {
  background: linear-gradient(to right, #D99C0B, #FFDD70 51.4%, #B57D06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 1px #020202;
  paint-order: stroke fill;
}

/* Gold gradient vertical divider (About - Why Us) */
.about-gold-divider {
  background: linear-gradient(180deg, #D99C0B 0%, #FFDD70 51.4%, #B57D06 100%);
}

/* Gold decorative line */
.gold-line {
  height: 2px;
  background: linear-gradient(to right, #d99c0b, #ffdd70 51.4%, #b57d06);
}

/* Play button */
.play-button {
  width: 80px;
  height: 80px;
  background: #C9A227;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 0 0 15px rgba(201, 162, 39, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(201, 162, 39, 0.3);
}

/* ========== PROJECTS ========== */
.project-tab {
  clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0% 100%, 0% 25%);
  padding: 28px 32px 14px;
  font-weight: 700;
  font-size: 16px;
  color: #020202;
  background: #d9d9d9;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
  border: none;
}


.project-tab.active,
.project-tab:hover {
  background: linear-gradient(90deg, #D99C0B 0%, #FFDD70 51.4%, #B57D06 100%);
  color: #020202;
}

.projects-swiper .swiper-slide {
  padding: 20px 8px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
}

.project-card {
  clip-path: polygon(50% 0%, 100% 8%, 100% 100%, 0% 100%, 0% 8%);
  background: #fff;
  border-radius: 0 0 34px 34px;
}

.project-card-image {
  position: relative;
  padding: 10px;
}

.house-clip {
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 14%, 100% 100%, 0% 100%, 0% 14%);
  border-radius: 0 0 20px 20px;
}

.house-clip img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.availability-badge {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(2, 2, 2, 0.34);
  backdrop-filter: blur(6px);
  border-radius: 9999px;
  padding: 8px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.project-card-body {
  padding: 16px 20px 24px;
}

.btn-whatsapp-detail {
  background: #020202;
  border-radius: 9999px;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp-detail:hover {
  opacity: 0.85;
}

.project-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1.5px solid #121212;
  background: transparent;
  color: #121212;
  transition: background 0.3s ease, color 0.3s ease;
}

.project-nav-btn:hover {
  background: #121212;
  color: #fff;
}

.swiper-button-disabled.project-nav-btn {
  opacity: 0.3;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
  position: relative;
  overflow: hidden;
}

/* Single seamless dark container */
.partners-inner {
  background: #020202;
  position: relative;
  padding-bottom: 60px;
}

/* White downward-pointing triangle — desktop only */
@media (min-width: 768px) {
  .partners-inner::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 50vw solid #fff;
    border-right: 50vw solid #fff;
    border-bottom: 140px solid transparent;
  }

  .partners-header {
    margin-top: -110px;
  }
}

/* Header */
.partners-header {
  padding: 40px 16px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ========== PARTNERS SWIPER ========== */
.partners-slide {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-inner {
  background: #020202;
  position: relative;
}

.contact-header {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .contact-header {
    margin-top: -90px;
  }
}

/* White triangle pointing down at the top (same as partners) */
.contact-top-triangle {
  width: 0;
  height: 0;
  border-left: 50vw solid #fff;
  border-right: 50vw solid #fff;
  border-bottom: 80px solid transparent;
}

/* White triangle pointing up at the bottom */
.contact-bottom-triangle {
  width: 0;
  height: 0;
  border-left: 50vw solid #fff;
  border-right: 50vw solid #fff;
  border-top: 80px solid transparent;
}

@media (min-width: 768px) {
  .contact-top-triangle {
    border-bottom-width: 120px;
  }
  .contact-bottom-triangle {
    border-top-width: 120px;
  }
}

@media (max-width: 767px) {
  .contact-top-triangle,
  .contact-bottom-triangle {
    display: none;
  }
}

/* ========== CONTACT WHATSAPP BUTTON ========== */
.contact-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 16px 32px;
  background: #25D366;
  color: #020202;
  font-size: 18px;
  font-weight: 600;
  border-radius: 9999px;
  transition: opacity 0.3s ease;
}

.contact-whatsapp-btn:hover {
  opacity: 0.9;
}

.contact-whatsapp-btn--white {
  color: #fff;
}

/* ========== CONTACT FORM (CF7 inside dark card) ========== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #C9A227;
}

.wpcf7 textarea {
  resize: none;
  border-radius: 20px;
}

.wpcf7 .wpcf7-submit {
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(90deg, #D99C0B 0%, #FFDD70 51.4%, #B57D06 100%);
  color: #020202;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s ease;
}

.wpcf7 .wpcf7-submit:hover {
  opacity: 0.9;
}

/* Force CF7 to respect page direction (CF7 hardcodes dir="ltr") */
[dir="rtl"] .wpcf7 {
  direction: rtl !important;
}

.wpcf7 label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
  text-align: start;
}

.wpcf7 p br,
.wpcf7 label br {
  display: none;
}

.wpcf7 p {
  margin: 0 0 12px;
}

/* ========== CONTACT FORM LIGHT (Contact Page) ========== */
.contact-form-light .wpcf7 input[type="text"],
.contact-form-light .wpcf7 input[type="email"],
.contact-form-light .wpcf7 input[type="tel"],
.contact-form-light .wpcf7 textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
  background: #fff;
  color: #020202;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form-light .wpcf7 input::placeholder,
.contact-form-light .wpcf7 textarea::placeholder {
  color: #999;
}

.contact-form-light .wpcf7 input:focus,
.contact-form-light .wpcf7 textarea:focus {
  outline: none;
  border-color: #C9A227;
}

.contact-form-light .wpcf7 textarea {
  resize: none;
  border-radius: 20px;
  min-height: 120px;
}

.contact-form-light .wpcf7 label {
  color: #020202;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  text-align: start;
}

.contact-form-light .wpcf7 .wpcf7-submit {
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(90deg, #D99C0B 0%, #FFDD70 51.4%, #B57D06 100%);
  color: #020202;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s ease;
}

.contact-form-light .wpcf7 .wpcf7-submit:hover {
  opacity: 0.9;
}

.contact-form-light .wpcf7 p {
  margin: 0 0 14px;
}

.contact-form-light .wpcf7 p br,
.contact-form-light .wpcf7 label br {
  display: none;
}

[dir="rtl"] .contact-form-light .wpcf7 {
  direction: rtl !important;
}

/* Map iframe responsive */
.contact-map-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== BLOG ========== */
.blog-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #020202;
  background: #FFFFFFC7;
  border: 1.18px solid #00000014;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-tab:hover {
  border-color: #C79A1B;
}

.blog-tab.active {
  background: linear-gradient(180deg, #DBB238 0%, #C79A1B 100%);
  color: #020202;
  border: 1.18px solid #000000;
  box-shadow: 0px 11.82px 28.37px 0px #C79A1B38;
}

.blog-card {
  border: none;
  padding-bottom: 0;
}

/* Blog CTA skewed edges */
.blog-cta-inner {
  position: relative;
}

.blog-cta-inner::before,
.blog-cta-inner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  z: 1;
}

.blog-cta-inner::before {
  top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}

.blog-cta-inner::after {
  bottom: 0;
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 768px) {
  .blog-cta-inner::before,
  .blog-cta-inner::after {
    height: 120px;
  }
}

/* Blog pagination */
.page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.page-numbers li a,
.page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #747474;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.page-numbers li a:hover {
  color: #020202;
  border-color: #020202;
}

.page-numbers li span.current {
  background: #020202;
  color: #fff;
  border-color: #020202;
}

/* ========== BLOG CONTENT (Single Post) ========== */
.blog-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #020202;
  margin: 2rem 0 1rem;
  line-height: 150%;
}

.blog-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #020202;
  margin: 1.5rem 0 0.75rem;
  line-height: 150%;
}

.blog-content p {
  color: #4a4a4a;
  font-size: 1.0625rem;
  line-height: 180%;
  margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
  color: #4a4a4a;
  font-size: 1.0625rem;
  line-height: 180%;
  margin-bottom: 1.25rem;
  padding-inline-start: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content img {
  border-radius: 16px;
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}

.blog-content blockquote {
  border-inline-start: 4px solid #C9A227;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f9f9f9;
  border-radius: 0 12px 12px 0;
  color: #020202;
  font-size: 1.125rem;
  font-style: italic;
}

.blog-content a {
  color: #C9A227;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.blog-content a:hover {
  opacity: 0.7;
}

/* ========== FOOTER ========== */
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #C9A227;
}

/* ========== PROJECTS PAGE ========== */
.project-card-simple {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card-simple:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.project-pagination-item a,
.project-pagination-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #d1d5db;
  color: #020202;
  background: transparent;
}

.project-pagination-item .current {
  background: #020202;
  color: #fff;
  border-color: #020202;
}

.project-pagination-item a:hover {
  background: #020202;
  color: #fff;
  border-color: #020202;
}
