* {
  font-family: "Inter", sans-serif;
}
body {
  scroll-behavior: smooth;
  background-color: #fafafc;
}
/* sticky header */
.navbar {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  background-color: #ffffff !important;
}
.navbar-brand img {
  height: 85px;
  width: auto;
  border-radius: 8px;
}
.nav-link {
  font-weight: 500;
  color: #1e2a41 !important;
  margin: 0 6px;
}
.nav-link:hover {
  color: #b8860b !important;
}
/* headings */
h2.section-title {
  font-weight: 700;
  color: #1e2a41;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 15px;
}
h2.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #b8860b;
}
/* hero carousel */
.carousel-item {
  height: 80vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-testi {
  height: 24vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.carousel-caption {
  bottom: 25%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.carousel-caption h3 {
  font-size: 3rem;
  font-weight: 700;
}
.carousel-caption p {
  font-size: 1.3rem;
}
.carousel-caption .btn {
  background-color: #b8860b;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  margin-top: 15px;
}
.carousel-caption .btn:hover {
  background-color: #9e7008;
}
/* product card */
.product-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.product-card img {
  height: 200px;
  object-fit: cover;
}
.product-card .card-body {
  padding: 1.5rem 1rem;
}
.product-card .card-title {
  font-weight: 700;
  color: #1e2a41;
}
.product-card .card-text {
  font-size: 0.95rem;
  color: #5f6b7a;
}
/* gallery hover */
.gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
  margin-bottom: 20px;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
/* testimonials carousel */
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  margin: 20px 0 40px;
}
.testimonial-card .stars {
  color: #ffb800;
  font-size: 1.2rem;
  letter-spacing: 3px;
}
.testimonial-card p {
  font-style: italic;
  color: #2e3a4e;
  font-size: 1.1rem;
}
.testimonial-card h5 {
  font-weight: 700;
  margin-top: 15px;
}
/* footer */
.footer {
  background-color: #1e2a41;
  color: #e2e8f0;
  padding-top: 50px;
}
.footer-logo img {
  height: 85px;
  background: white;
  border-radius: 10px;
  padding: 4px;
}
.footer a {
  color: #cfd9e6;
  text-decoration: none;
}
.footer a:hover {
  color: #b8860b;
}
.copyright {
  background-color: #141f33;
  color: #a6b4c8;
  padding: 20px 0;
  margin-top: 40px;
}
.contact-icon {
  width: 30px;
  color: #b8860b;
}
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* faq accordion */
.accordion-button:not(.collapsed) {
  background-color: #f0e5d8;
  color: #1e2a41;
  font-weight: 600;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: #b8860b;
}
.btn-outline-gold {
  border: 2px solid #b8860b;
  color: #b8860b;
  font-weight: 600;
  border-radius: 40px;
  padding: 10px 28px;
}
.btn-outline-gold:hover {
  background: #b8860b;
  color: white;
}
section {
  padding: 1px 0;
}
.prodcut-bg {
  background-color: #c67b0e;
}
