/* Global Styles */
:root {
  --primary: #8a55c5;
  --primary-dark: #6a3da0;
  --secondary: #f8f4ff;
  --text-dark: #333;
  --text-light: #777;
  --white: #fff;
  --light-gray: #f8f9fa;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
body {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

.section-title {
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

/* Navigation */
.navbar {
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.custom-navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}


.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: var(--white);
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--text-dark);
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#hero-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-icons a {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

/* Special Occasions Section */
.special-occasions .card {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.special-occasions .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.special-occasions .card-title {
  font-weight: 600;
  color: var(--primary);
}

.divider {
  text-align: center;
  margin: 2rem 0;
}

.divider img {
  max-width: 200px;
  opacity: 0.7;
}

/* Discover Luxury Section */
.discover-luxury {
  position: relative;
}

/* Skincare Excellence Section */
.skincare-excellence img {
  transition: all 0.3s ease;
}

.skincare-excellence img:hover {
  transform: scale(1.03);
}

/* Testimonials Section */
.testimonials {
  background-image: url('images/testimonials.jpg'); /* ছবির সঠিক path দিন */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* হালকা সাদা রঙ, চাইলে পরিবর্তন করুন */
  z-index: -1;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  background-color: #f9f0ff;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: "Playfair Display", serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Brand Partners Section */
.brand-partners {
  position: relative;
}
.brand-logo {
  height: 60px;
  width: 120px;
  object-fit: contain;
  margin: 0 15px;
  opacity: 0.8;
  /* filter: grayscale(100%); */
  transition: all 0.3s ease-in-out;
}

.brand-logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.brand-carousel-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
}

/* Optional: Indicator dot style tweak */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #000;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #007bff;
}





/* Footer */
.footer {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.newsletter-form .form-control {
  border-radius: 30px 0 0 30px;
  border: 1px solid #ddd;
  padding: 0.75rem 1.5rem;
}

.newsletter-form .btn {
  border-radius: 0 30px 30px 0;
  padding: 0.75rem 1.5rem;
}

.payment-methods img {
  max-height: 30px;
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-5px);
}

.whatsapp {
  background-color: #25d366;
  color: white;
}

.phone {
  background-color: var(--primary);
  color: white;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
    height: 80vh;
  }

  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse .nav-link {
    color: var(--text-dark) !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 60vh;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
  }


  
}
