@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Great+Vibes&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");

/* --- Custom Variables --- */
:root {
  --white: #ffffff;
  --gold: #ffd701;
  --dark: #191207;

 
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  margin: 0;
  background-color: var(--white);
  /* --- Custom Scrollbar (Firefox) --- */
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--white);
  overflow-x: hidden;
}

/* --- Custom Scrollbar (WebKit) --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  border-radius: 20px;
}

/* --- Global Utilities --- */
.serif-font {
  font-family: "Poiret One", sans-serif;
  letter-spacing: 3px;
  font-weight: bold;
}

.copywrite-brand {
  font-family: "Poiret One", sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
}

.text-gold {
  color: var(--gold) !important;
}
.bg-gold {
  background-color: var(--gold) !important;
}
.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}
.bg-dark-theme {
  background-color: var(--dark) !important;
  color: var(--white);
}

/* Whatsapp Float icon */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Soft Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}



/* ===============================
   PAGE LOADER
================================ */

#pageLoader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Split Background */
#pageLoader .loader-bg {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1); /* Slightly longer for a smoother reveal */
}

#pageLoader .loader-bg.left {
  left: 0;
  background-color: var(--white);
}

#pageLoader .loader-bg.right {
  right: 0;
  background-color: var(--gold);
}

/* Center Compass */
.loader-center {
  position: relative;
  z-index: 2;
}

.loader-compass {
  width: clamp(55px, 7vw, 80px); /* smaller */
  height: auto;
  animation:
    compassRotate 6s linear infinite,
    compassPulse 3s ease-in-out infinite;
  filter: brightness(0) drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
}

/* Animations */
@keyframes compassRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes compassPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  } /* very subtle */
}

/* Hide Loader */
#pageLoader.hide {
  /* opacity: 0; */
  pointer-events: none;
  /* transition: opacity 0.7s ease; */
}

#pageLoader.hide .loader-bg.left {
  transform: translateX(-100%);
}

#pageLoader.hide .loader-bg.right {
  transform: translateX(100%);
}

#pageLoader.hide .loader-center {
  opacity: 0;
  transition: opacity 0.8s ease 0.4s; /* Fade out over 0.8s, starting after 0.4s delay, to sync with curtain */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero title with fluid sizing */
.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

/* --- Navbar Styling --- */
.navbar {
  background: rgba(255, 255, 255, 0.65); /* more transparent */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px); /* Safari support */

  padding: clamp(12px, 2vw, 12px) 0;
  transition: 0.3s ease;

  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 2px;
  color: var(--dark) !important;
}

.nav-link {
  font-weight: bold;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  color: var(--dark) !important;
  margin-left: clamp(10px, 3vw, 20px);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.nav-logo {
  height: clamp(50px, 8vw, 60px);
  width: auto;
}

/* --- Custom Navbar Toggler (Animated) --- */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 50px;
  height: 50px;
  position: relative;
  background-color: var(--gold); /* make button gold by default */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(255, 215, 1, 0.2);
  outline: none;
}

.navbar-toggler:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: var(--white); /* invert on hover for contrast */
}

/* change bars to dark on hover for visibility */
.navbar-toggler:hover .custom-icon-bar {
  background-color: var(--dark);
}

.custom-icon-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white); /* light bars on gold background */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.custom-icon-bar:nth-child(1) {
  top: 17px;
}
.custom-icon-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.custom-icon-bar:nth-child(3) {
  bottom: 17px;
}

.navbar-toggler:not(.collapsed) .custom-icon-bar:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--white); /* white X on gold */
}
.navbar-toggler:not(.collapsed) .custom-icon-bar:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.navbar-toggler:not(.collapsed) .custom-icon-bar:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
  background-color: var(--white); /* white X on gold */
}

/* --- Hero Slider (Index Page) --- */
#heroSlider {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Darker overlay for better text contrast */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

/* Hide elements by default, animation will make them visible */
.hero-content h1,
.hero-content .hero-subtitle {
  opacity: 0;
}

/* Animation for hero text */
@keyframes hero-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-item.active .hero-content h1 {
  animation: hero-fade-in-up 1.2s ease-out 0.5s forwards;
}

.carousel-item.active .hero-content .hero-subtitle {
  animation: hero-fade-in-up 1.2s ease-out 0.8s forwards;
}

.cursive-font {
  font-family: "Great Vibes", cursive;
  font-size: 5rem;
  color: var(--dark);
}

.hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  margin-top: 1rem;
  color: var(--gold);
  opacity: 0.9;
}

.hero-main-title {
  font-size: clamp(2.5rem, 9vw, 6rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

/* --- Hero Button --- */
.btn-hero {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-hero:hover {
  background-color: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
  text-shadow: none;
}

/* --- Signature Info Cards (Bottom of Hero) --- */
.khosla-info-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.card-item {
  background-color: rgba(255, 255, 255, 0.85);
  transition: 0.4s;
  cursor: pointer;
}

.inner-card {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}

.card-item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.card-item:hover {
  background-color: var(--gold);
  color: var(--dark);
}
.arrow {
  font-size: 1.5rem;
  transition: 0.3s;
}
.card-item:hover .arrow {
  transform: translateX(10px);
}

/* --- About Page Logic --- */
.about-container {
  padding: clamp(30px, 5vw, 80px) 0;
}

/* --- About Page Typography --- */
.body-text, .responsive-list li {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
}
.engagement-title {
  font-size: clamp(1rem, 2vw, 1rem);
}
.principal-name {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}
.principal-role {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}
.about-text {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.6;
}

/* --- Projects Page Typography --- */
.project-card-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
.project-card-category {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
}

/* --- Project Details Page Typography --- */
.detail-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.detail-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.project-meta-label {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.project-meta-value {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}
.content-text {
  line-height: 1.8;
  font-weight: 300;
  color: #555;
}
.content-text p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}
.content-text .lead {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem) !important;
}
.detail-section-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.lead-text {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  /* line-height: 1.4; */
  color: var(--dark);
  font-family: "Poiret One", sans-serif;
  letter-spacing: 4px;
  font-weight: bold;
}

.principal-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: 0.5s ease;
}

.principal-phone {
  transition: color 0.3s ease;
}

.principal-phone:hover {
  color: var(--gold) !important;
}

.firm-img {
  height: auto;
}

.section-title {
  /* font-family: "Playfair Display", serif; */
  font-family: "Poiret One", sans-serif;
  letter-spacing: 4px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  font-weight: bold;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
}

.team-card {
  transition: all 0.3s ease;
  background: #fff;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--gold) !important;
}

/* --- Sub-Nav Sticky Logic --- */
.sub-nav-sticky {
  top: 76px;
  z-index: 800;
}

.sub-nav .nav {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.sub-nav .nav::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

/* --- NEW: News Page Logic --- */
.news-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: #f8f8f8;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.08);
}

.news-title {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 15px 0;
  color: var(--gold);
}

.news-title a {
  color: var(--dark);
  text-decoration: none;
  transition: 0.3s;
}

.news-card:hover .news-title a {
  color: var(--gold);
}

.news-desc {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

.news-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 700px;
}

.read-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .cursive-font {
    font-size: clamp(3rem, 9vw, 4rem);
  }
  .hero-main-title {
    letter-spacing: 1px;
  }
  .btn-hero {
    padding: 12px 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 25px;
  }

  .about-container {
    padding-top: 20px;
  }
  .lead-text {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  /* On mobile, cards look better with less padding */
  .inner-card {
    padding: 12px 16px;
    min-height: 70px;
    font-size: 0.85rem;
  }

  /* About Page Mobile Optimizations */
  .section-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
  }
  .sub-nav-sticky {
    position: static !important;
  }

  /* Better spacing on mobile */
  .nav-link {
    margin-left: 10px;
    font-size: 0.75rem;
  }
  .navbar-brand {
    font-size: 1.1rem;
  }

  /* Improve heading legibility on small screens */
  h1 {
    word-spacing: normal;
  }

  /* Better padding for text containers */
  .p-3 {
    padding: 1rem !important;
  }
  .p-4 {
    padding: 1.25rem !important;
  }
}

@media (max-width: 576px) {
  .hero-main-title {
    letter-spacing: 0.5px;
  }
  .hero-subtitle {
    letter-spacing: 1px;
    font-size: 0.7rem;
  }
  .btn-hero {
    padding: 10px 24px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-top: 20px;
  }

  .section-title {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
  }

  /* Stack elements better on very small screens */
  .order-lg-1,
  .order-lg-2 {
    order: 0 !important;
  }

  /* Adjust sub-nav spacing on mobile */
  .sub-nav {
    top: 56px;
  }
  .sub-nav-sticky {
    top: 56px;
  }

  /* Better touch targets */
  .nav-link {
    padding: 0.5rem 0.75rem !important;
  }

  /* Team card adjustments */
  .team-card {
    padding: 1.25rem 0.75rem !important;
  }
  .team-card h5 {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  /* Desktop optimizations */
  .nav-link {
    margin-left: 20px;
  }
}

/* --- Contact Page Logic --- */
.contact-label {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-value {
  /* font-family: "Playfair Display", serif; */
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--dark);
  /* line-height: 1.3; */
  /* font-family: "Poiret One", sans-serif; */
  /* font-weight: bold; */
  /* letter-spacing: 4px; */
}

.contact-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 700px;
}

.btn-contact-submit {
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-control-underlined {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 1rem 0.5rem 0.5rem 0;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-control-underlined:focus {
  box-shadow: none;
  border-color: var(--gold);
  background: transparent;
}

.form-floating > label {
  padding-left: 0;
  color: #999;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--gold);
  opacity: 0.8;
  transform: scale(0.85) translateY(-0.5rem) translateX(0);
}

.social-link-item {
  display: inline-block;
  margin-right: 1.5rem;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--dark);
  position: relative;
  transition: color 0.3s ease;
}

.social-link-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.social-link-item:hover {
  color: var(--gold);
}
.social-link-item:hover::after {
  width: 100%;
}

.map-frame {
  transition: filter 0.5s ease;
}

/* --- Offcanvas Navbar --- */
.offcanvas {
  background-color: rgba(255, 255, 255, 0.98);
  /* Responsive width for mobile */
  width: 85vw !important;
  max-width: 280px !important;
}
.offcanvas-header .btn-close {
  background-color: #f0f0f0;
  border-radius: 50%;
  padding: 0.75rem;
  opacity: 1;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23191207'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.offcanvas-header .btn-close:hover {
  background-color: var(--gold);
  transform: rotate(90deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.offcanvas-header .btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 1, 0.5);
  outline: none;
}

.offcanvas-body {
  padding: 2rem;
}
.offcanvas-body .nav-link {
  margin-left: 0;
  margin-bottom: 1rem;
  /* font-family: "Playfair Display", serif; */
  font-family: "Poiret One", sans-serif;
  letter-spacing: 4px;
  font-size: clamp(1.25rem, 5vw, 1.4rem);
  font-weight: 400;
  transition: all 0.3s ease;
  font-weight: bold;
}
.offcanvas-body .nav-link:hover {
  transform: translateX(10px);
}
.offcanvas-social-link {
  font-size: 1.5rem;
  text-decoration: none;
  color: #999;
  transition: 0.3s;
}
.offcanvas-social-link:hover {
  color: var(--gold);
}

/* --- Form Validation --- */
.invalid-feedback {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 5px;
  font-weight: 500;
}

.was-validated .form-control-underlined:invalid {
  border: none;
  border-bottom: 1px solid #dc3545;
  box-shadow: none;
}

/* --- Prevent body scroll when offcanvas is open --- */
html.offcanvas-open,
body.offcanvas-open {
  overflow: hidden !important;
}

/* --- Footer Styling --- */
.footer-link {
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold) !important;
}

/* --- Project Details --- */
.btn-back-projects:hover {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark) !important;
}

/* --- Pagination --- */
.pagination .page-link {
  color: var(--dark);
  border: none;
  margin: 0 5px;
  border-radius: 50%;
  width: clamp(35px, 4vw, 40px);
  height: clamp(35px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}
.pagination .page-link:hover,
.pagination .page-link.active {
  background-color: var(--gold);
  color: #fff;
}
