*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', sans-serif;
}

    /* Navbar height */
    .custom-nav {
      height: 80px;
      line-height: 80px;
      position: relative;
    }

    /* Logo */
    .logo-text {
      font-size: 26px;
      font-weight: 500;
      color: #000 !important;
    }

    /* Center menu (desktop only) */
    .center-menu {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 40px;
    }

    .nav-link {
      color: #333 !important;
      font-size: 15px;
    }

    /* Right icons (desktop) */
    .right-menu {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    /* Cart badge */
    .cart-icon {
      position: relative;
    }

    .cart-count {
      position: absolute;
      top: 12px;
      right: 6px;
      background: black;
      color: white;
      font-size: 11px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      text-align: center;
      line-height: 18px;
    }

    

    

    /* Mobile adjustments */
    @media (max-width: 992px) {
      .brand-logo {
        left: 50%;
        transform: translateX(-50%);
      }

      .mobile-cart {
        position: absolute;
        right: 10px;
        top: 0;
      }
    }



/* HERO SLIDER */
.hero-slider {
  width: 100%;
  padding: 40px 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* CONTENT (SAME FOR ALL) */
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 420px;
  margin-left: auto;
  margin-right: 2%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
}

.slide-content h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
}
.desktop-content {
  position: relative;
  z-index: 3;
  max-width: 420px;
  margin-left: auto;
  margin-right: 2%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
}

.desktop-content h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
}

.hero-btn {
  width: fit-content;
  padding: 12px 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 25px;
}

/* SOCIAL ICONS */
.social-icons i {
  margin-right: 15px;
  font-size: 16px;
  cursor: pointer;
}

/* ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  cursor: pointer;
  z-index: 4;
  padding: 10px;
}
.mobile-content {
  display: none;
  text-align: center;
  padding: 30px 16px;
}

.mobile-content h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.slider-arrow.left { left: 20px; }
.slider-arrow.right { right: 20px; }

@media (max-width: 768px) {

  .hero-container {
    height: 240px;
  }

  .overlay {
    display: none;
  }

  .desktop-content {
    display: none;
  }

  .mobile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

}


  

/* Dark services section */
.services-dark {
  background: #1c1c1c;
  padding: 100px 0 80px;
}

/* Each service item */
.service-item {
  text-align: center;
  color: white;
  padding: 0 20px;
}

/* Image styling */
.service-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 25px;
}

/* Titles */
.service-item h5 {
  font-weight: 500;
  margin-bottom: 15px;
}

/* Description */
.service-item p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

/* Button */
.services-btn {
  margin-top: 60px;
  padding: 0 36px;
  font-weight: 500;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .service-img {
    height: 260px;
  }

  .services-dark {
    padding: 70px 0;
  }

  .service-item p{
    margin-bottom: 20px;
  }
}

/* SECTION */
.popular-service-section {
  padding: 100px 0;
  background: #fff;
}

/* Title */
.popular-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 60px;
  line-height: 1.2;
}

/* Box */
.popular-box {
  border: 1px solid #222;
}
.no-col-padding .row .col {
  padding: 0 !important;
}

/* Remove row spacing */
.no-margin {
  margin: 0;
}

/* Image */
.popular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right side content */
.popular-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  text-align: center;
}

/* Text styles */
.popular-details h5 {
  font-weight: 500;
  margin-bottom: 20px;
}

.popular-details .time {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.popular-details .price {
  font-size: 16px;
  margin-bottom: 30px;
  color: #333;
}

/* Button */
.popular-btn {
  padding: 0 30px;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popular-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .popular-details {
    padding: 50px 20px;
  }
}

/* Section background */
.testimonial-section {
  background: #e9e1c2;
  padding: 120px 0;
}

/* Container spacing like navbar */
.custom-container {
  max-width: 1200px;
  padding-left: 40px;
  padding-right: 40px;
}

.testimonial-box {
  overflow: hidden;
  position: relative;
  padding: 30px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-name {
  margin-top: 15px;
  font-weight: 600;
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #000;
}


/* Remove default row margin */
.no-margin {
  margin: 0;
}

/* Box styling */
.testimonial-box {
  height: 420px;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* White boxes */
.white-box {
  background: #fff;
}

/* Black box */
.black-box {
  background: #1c1c1c;
}

/* Heading */
.white-box h3 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
}

/* Quote icon */
.quote-icon {
  font-size: 120px;
  color: #e9e1c2;
  font-family: serif;
}

/* Testimonial text */
.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
}

/* Name */
.testimonial-name {
  font-weight: 500;
  margin-bottom: 20px;
}

/* Dots */
.dots {
  display: flex;
  gap: 10px;
}

.dots span {
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}

.dots .active {
  background: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-box {
    height: auto;
    margin-bottom: 30px;
  }

  .white-box h3 {
    font-size: 32px;
  }

  .quote-icon {
    font-size: 90px;
  }
}

/* ESSENTIAL SECTION */
/* Section spacing */
.essential-section {
  padding: 80px 0;
}

/* Header */
.section-header {
  margin-bottom: 30px;
}

.section-header .tag {
  font-size: 30px;
  letter-spacing: 1px;
  color: #777;
}

.section-header h2 {
  margin-top: 5px;
  font-weight: 400;
}

/* Image Card */
.image-card {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  padding: 20px;
}

/* Hover Effects */
.image-card:hover img {
  transform: scale(1.1);
}

.image-card:hover .overlay {
  opacity: 1;
}

/* Overlay text */
.overlay h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Second row spacing */
.second-row {
  margin-top: 30px !important;
}

/* Mobile */
/* Mobile: 3 cards per row */
@media (max-width: 768px) {

  .full-width-row .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0;
  }

  .full-width-row .col {
    width: 100% !important;
    padding: 0 !important;
  }

  .image-card {
    height: 150px; /* smaller cards */
  }

  .overlay h5 {
    font-size: 12px;
  }

  .overlay p {
    font-size: 10px;
  }
}



/* FOOTER */
.footer-section {
  background: #1e1e1e;
  color: #fff;
  padding: 60px 0 40px;
}

.footer-section .container {
  padding-left: 0;
  padding-right: 0;
}

.footer-left {
  padding-left: 0;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin: 0 0 120px 0;
}

.footer-copy {
  font-size: 14px;
  color: #ccc;
}

.footer-contact p {
  margin-bottom: 18px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
}

@media (max-width: 992px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .brand-logo {
    margin-bottom: 30px;
  }

  .footer-social {
    flex-direction: row;
  }
}
