body {
  font-family: "Outfit", sans-serif;
  background: #f8fafc;
  color: #333;
  padding-top: 70px;
}
.copper-text {
  color: rgb(160, 128, 69);
}
.bg-beige-color {
  background-color: rgb(245, 239, 230);
}

.color-rose-gold {
  color: #b76e79;
}
.font1 {
  font-family: "Playfair Display", serif;
  font-weight: 500; /* or 600 for bold headings */
  letter-spacing: 0.5px;
}
.font2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(123, 92, 59, 0.25);
  transition: all 0.3s ease;
}

/* Navbar */
.navbar {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 14px 0;
}
.custom-navbar {
  background-image: url("../images/ribbon1.webp");
  background-repeat: no-repeat;
  background-size: cover; /* fill navbar area */
  background-position: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.navbar-toggler {
  border: 1px solid #fff !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-brand {
  font-weight: 700;
  color: #fff !important;
  font-size: 1.5rem;
}

.navbar-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-left: 6px;
}

.nav-link {
  color: #e2e8f0 !important;
  margin-left: 20px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #778da9;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Search */
.search-box {
  position: relative;
}

.search-box input {
  border-radius: 50px;
  padding: 6px 14px 6px 36px;
  border: 1px solid #415a77;
  background: rgba(255, 255, 255, 0.8);
  color: #415a77 !important;
  transition: all 0.3s ease;
}

::placeholder {
  color: #415a77 !important;
  /* light gray */
  opacity: 1;
  /* make sure it doesn’t fade */
}

.search-box input:focus {
  /* background: rgba(255, 255, 255, 0.2); */
  outline: none;
  box-shadow: 0 0 0 2px rgba(119, 141, 169, 0.5);
}

.search-box i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #415a77;
  font-size: 16px;
}

@media (max-width: 991px) {
  .navbar-text {
    display: none;
  }

  .search-box {
    margin-top: 12px;
  }
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../images/hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  /* vertically center */
  justify-content: flex-end;
  /* push content to right */
  padding: 0 15px;
  text-align: right;
  /* align text right */
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  animation: fadeDown 1s ease;
}

.hero-subtitle {
  max-width: 750px;
  /* limit width so it doesn’t stretch too much */
  margin: 20px 0;
  font-size: 1.2rem;
  color: #e2e8f0;
  animation: fadeUp 1.2s ease;
}

/* Center subtitle on small screens */
@media (max-width: 991px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* Right align on large screens */
@media (min-width: 992px) {
  .hero-subtitle {
    margin-left: auto;
    text-align: right;
  }
}

.hero-search input {
  max-width: 400px;
  border-radius: 50px;
  padding: 12px 18px;
  border: none;
  outline: none;
}

.hero-search button {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Clientele */

.client-logo {
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
  max-height: 50px;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .client-logo {
    max-height: 36px;
    opacity: 0.9;
  }
}
.clientele-section {
  background-color: #f5f0e6; /* soft beige */
}

.clientele-overlay {
  background: transparent; /* keep overlay clear if you’re not layering */
}

.clientele-section h2 {
  color: #0b5bd3; /* your primary blue */
  color: gray; /* your primary blue */
}

.clientele-section p {
  line-height: 1.6;
  color: #555;
}

.clientele-section img {
  border: 4px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  border-radius: 50%;
}
/* Features */
.features {
  padding: 80px 20px;
  text-align: center;
}

.features .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  height: 100%;
}

.features .card:hover {
  transform: translateY(-6px);
}

.features .bi {
  font-size: 2rem;
  color: #415a77;
  margin-bottom: 15px;
}

/* Products */
.products {
  padding: 80px 20px;
  background: #edf2f7;
}

.products .card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.products .card:hover {
  transform: scale(1.03);
}

/* Contact */
.contact {
  padding: 60px 20px;
}

.contact form {
  max-width: 600px;
  margin: auto;
}

/* Footer */
footer {
  background: #0d1b2a;
  color: #cbd5e1;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #415a77;
  border: 1px solid #415a77;
}

.btn-primary:hover {
  background-color: #324a5e;
  border: 1px solid #324a5e;
}

/* Service Cards */
.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-lightgray {
  background-color: #e2e8f0 !important;
}

@media (max-width: 991px) {
  .hero-overlay {
    justify-content: center !important;
    /* center content horizontally */
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .hero-overlay {
    justify-content: flex-end !important;
    /* push right on larger screens */
    text-align: right !important;
  }
}

.impact {
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.95) 0%,
    rgba(13, 27, 42, 0.75) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle overlay shine */
.impact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05),
    transparent 70%
  );
  animation: shine 10s linear infinite;
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.impact h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.impact h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #fff;
  transform: translateX(-50%);
  border-radius: 2px;
}

.impact p {
  opacity: 0.85;
  font-size: 1.1rem;
}

.impact .count {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  /* text-shadow: 0 0 15px rgba(0, 212, 255, 0.6); */
  transition: transform 0.3s ease-in-out;
}

.impact .row p {
  margin-top: 10px;
  font-weight: 500;
  color: #ddd;
}

.testimonial-slider {
  background: #fff;
  display: flex !important;
  align-items: stretch;
  /* ensures all slides have same height */
}

.testimonial-item {
  /* background: #fff; */
  padding: 40px 30px;
  border-radius: 12px;
  /* Even shadow on all sides */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* more visible on all sides */
  margin: 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 380px;
  box-sizing: border-box;
  justify-content: space-between;
  /* spreads content evenly */
  height: 100%;
  /* makes it stretch to parent flex height */
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #415a77;
  display: block;
  /* ensures it’s a block element */
  margin-left: auto;
  /* centers horizontally */
  margin-right: auto;
  /* centers horizontally */
}

.testimonial-item .quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-item h5 {
  font-weight: 700;
  margin-top: 15px;
}

.testimonial-item small {
  color: #777;
}

.slick-dots li button:before {
  color: #415a77 !important;
  font-size: 12px;
}

.slick-prev:before,
.slick-next:before {
  color: #415a77 !important;
  font-size: 30px;
}

.slick-next {
  right: 0px !important;
  z-index: 22;
}

.slick-prev {
  left: 0px !important;
  z-index: 22;
}

/* ---- Product Listing Cards (Gifts Index) ---- */
/* Card shell */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

/* Media area with fixed aspect ratio (keeps all images same size) */
.product-media {
  position: relative;
  padding-top: 85%;
  /* 3:2 aspect ratio */
  background: #f3f5f7;
}

.product-media img,
.product-media .bg-light {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

/* Overlay action on hover */
.product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  backdrop-filter: blur(2px);
}

/* Body area alignment for equal heights */
.product-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 150px;
  /* ensures uniform card content area */
}

.product-card .card-title {
  font-weight: 600;
}

.product-card .btn {
  border-radius: 10px;
}

/* Truncate long text to 2 lines */
.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Ensure badges don’t overlap content too much on small screens */
@media (max-width: 575.98px) {
  .product-media {
    padding-top: 72%;
  }
}

.text-primary {
  color: #415a77 !important;
}
#contact .form-control:focus {
  border-color: #b76e79;
  box-shadow: 0 0 6px rgba(183, 110, 121, 0.25);
}

#contact button:hover {
  background-color: #b76e79;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 92, 59, 0.25);
}

/* --- Logo Cards --- */
.logo-card {
  transition: all 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(123, 92, 59, 0.25);
  border: 1px solid rgba(183, 110, 121, 0.4);
}

/* --- Logo Wrapper --- */
.logo-wrapper {
  height: 90px;
  width: 140px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.logo-wrapper img {
  max-height: 75px;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.logo-wrapper:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* --- Slick Carousel Layout --- */
.client-logo-slider .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.client-logo-slider .slick-track {
  display: flex;
  align-items: center;
}

/* --- Section Container --- */
#clientele {
  position: relative;
  overflow: hidden;
}

/* --- Fade Overlay on Edges --- */
#clientele::before,
#clientele::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

#clientele::before {
  left: 0;
  background: linear-gradient(to right, #f5f0e6 90%, rgba(245, 240, 230, 0));
}

#clientele::after {
  right: 0;
  background: linear-gradient(to left, #f5f0e6 90%, rgba(245, 240, 230, 0));
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .logo-wrapper {
    height: 75px;
    width: 120px;
    border-radius: 12px;
  }

  .logo-wrapper img {
    max-height: 40px;
    max-width: 90px;
  }

  #clientele::before,
  #clientele::after {
    width: 40px;
  }
}
