* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Arial', sans-serif; */
  /* background-color: #f4f4f4; */
  color: #333;
}



header {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li {
  font-size: 14px;
  text-transform: uppercase;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

header nav ul li a:hover {
  color: #f8f8f8;
}

.carousel-inner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-caption h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: white;
}

.carousel-caption p {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: white;
}

.carousel-caption button {
  padding: 15px 30px;
  font-size: 1.2em;
  background-color: #273b79;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
  border: 2px solid #273b79;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-caption button:hover {
  background-color: white;
  color: #273b79;
  border: 2px solid #273b79;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #carouselExampleCaptions .carousel-item img {
        height: 70vh; /* Makes the image take the full viewport height */
        width: 100vw; /* Ensures full width */
        object-fit: contain; /* Ensures the full image is visible without cropping */
        background-color: black; /* Optional: Fills any empty space with black */
        
    }
}





/* About Section */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 90px;
  background-color: white;
}

.about-image img {
  width: 100%;
  max-width: 570px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.about-text {
  width: 50%;
  padding-left: 50px;
}

.about-text h2 {
  font-size: 28px;
  color: #273b79;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text button {
  background-color: #273b79;
  color: white;
  padding: 10px 30px;
  border: 2px solid #273b79;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text button:hover {
  background-color: white;
  color: #273b79;
  border: 2px solid #273b79;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2em;
  }

  .carousel-caption p {
    font-size: 1.2em;
  }

  .carousel-caption button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .about {
    flex-direction: column;
    padding: 50px 20px;
  }

  .about-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-text {
    width: 100%;
    padding: 0;
  }
}

/* Container styling */
.featured-items-section {
  background-color: #fdfdf9;
  padding: 20px 0;
}

.key-features-marquee .feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Adds space between icon and text */
}

.feature-icon {
    filter: brightness(0) invert(1);
  width: 35px;
  /* Adjust size as needed */
  height: auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 30px;
  margin-top: 45px;
}

.product-item {
  position: relative;
  margin-bottom: 20px;
}

.product-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #524b39;
}

.product-item p {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #524b39;
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  transition: transform 0.3s ease;
}

.product-item:hover .product-img img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  height: 0;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-item:hover .overlay {
  height: 100%;
}

.overlay .text {
  color: white;
  font-size: 14px;
  font-family: "Playfair Display", serif;
  display: none;
}

.product-item:hover .overlay .text {
  display: block;
}

.view-all-products a {
  font-family: "Playfair Display", serif;
  color: black;
  text-decoration: none;
  font-size: 16px;
}

.view-all-products a:hover {
  color: #273b79;
}

/* Responsive styles */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .product-item h4 {
    font-size: 16px;
  }

  .product-item p {
    font-size: 14px;
  }

  .overlay .text {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
  }

  .product-item h4 {
    font-size: 14px;
  }

  .product-item p {
    font-size: 12px;
  }

  .overlay .text {
    font-size: 10px;
  }
}

/* View All Products Button Styling */
.btn-custom {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  background-color: #273b79;
  color: white;
  padding: 14px 50px;
  border: 2px solid #273b79;
  border-radius: 50px;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: white;
  color: #273b79;
  border: 2px solid #273b79;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .btn-custom {
    font-size: 16px;
    padding: 12px 40px;
  }
}

@media (max-width: 576px) {
  .btn-custom {
    font-size: 14px;
    padding: 10px 35px;
  }
}

.view-all-products {
  margin-top: 10px;
}

.view-all-products button {
  background-color: #273b79;
  color: white;
  padding: 10px 30px;
  border: 2px solid #273b79;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 50px;
}

.view-all-products button:hover {
  background-color: white;
  color: #273b79;
  border: 2px solid #273b79;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
}

.key-features-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* margin: 20px 0; */
  color: #273b79;
}

.marquee-inner {
  display: flex;
  animation: scroll 15s linear infinite;
  gap:15px
}

.feature-box {
  background-color: #273b79;
  /* Transparent blue */
  padding: 20px;
  margin: 10px;
  flex: 0 0 auto;
  width: 280px;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-box p {
  font-size: 20px;
}

@media (max-width: 1024px) { /* Tablet View */
    .marquee-inner {
        justify-content: space-between;
    }
    
    .feature-box {
        min-width: 20%; /* Two boxes per row */
        margin: 5px;
    }
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    padding: 10px 20px;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header nav ul li {
    font-size: 12px;
  }

  .carousel-inner img {
    height: auto;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .carousel-caption button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .about {
    flex-direction: column;
    padding: 20px 10px;
  }

  .about-image img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .about-text {
    width: 100%;
    padding: 0;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-text button {
    font-size: 0.8rem;
    padding: 8px 20px;
  }

  .key-features-marquee .feature-box {
    width: calc(100% - 20px);
    margin: 10px auto;
    text-align: center;
    padding: 10px 15px;
  }

  .key-features-marquee .feature-box p {
    font-size: 14px;
  }

  .new-arrivals-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .new-arrivals-section h2 {
    font-size: 1.5rem;
  }

  .product-item h4 {
    font-size: 1rem;
  }

  .product-item p {
    font-size: 0.8rem;
  }

  .overlay .text {
    font-size: 12px;
  }

  .featured-items-section .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .view-all-products button {
    width: 100%;
  }

  .faqs-container {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }

  .faq-title {
    font-size: 1rem;
  }

  .faq-text {
    font-size: 0.9rem;
  }

  .floating-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .carousel-caption button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .new-arrivals-section .row {
    grid-template-columns: 1fr;
  }

  .product-item h4 {
    font-size: 0.8rem;
  }

  .product-item p {
    font-size: 0.7rem;
  }

  .overlay .text {
    font-size: 10px;
  }

  .floating-btn {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .feature-box {
    width: 150px;
    padding: 15px;
    font-size: 1.2rem;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");

* {
  box-sizing: border-box;
}

h1 {
  margin: 50px 0 30px;
  text-align: center;
}

/* FAQ Section Styles */
.faqs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(39, 59, 121, 0.08);
  border: none;
}

.faq {
  background-color: #ffffff;
  border: 1px solid #e0e6f5;
  border-radius: 12px;
  padding: 25px 30px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.faq:hover {
  border-color: #273b79;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 59, 121, 0.1);
}

.faq-title {
  font-size: 18px;
  font-weight: 600;
  color: #273b79;
  padding-right: 35px;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.faq-title::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #273b79;
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}

.faq.expanded {
  background-color: #f8faff;
}

.faq.expanded .faq-title::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}

.faq-text {
  display: none;
  margin-top: 20px;
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.faq.expanded .faq-text {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Heading Styles */
.faq-section-heading {
  text-align: center;
  color: #273B79;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 50px 0 30px;
  padding: 0 20px;
}

/* Keep existing mobile styles */
@media (max-width: 768px) {
  .faqs-container {
    grid-template-columns: 1fr;
    padding: 20px;
    margin: 20px;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-text {
    font-size: 14px;
  }
}

/* SOCIAL PANEL CSS */
.social-panel-container {
  position: fixed;
  right: 0;
  bottom: 80px;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
  transform: translateX(-10px);
}

.social-panel {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 31px -17px rgba(0, 31, 97, 0.6);
  border: 5px solid #001f61;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Muli";
  position: relative;
  height: 169px;
  width: 370px;
  max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
  border: 0;
  color: #97a5ce;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.social-panel button.close-btn:focus {
  outline: none;
}

.social-panel p {
  background-color: #001f61;
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  padding: 2px 17px 6px;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  width: 235px;
}

.social-panel p i {
  margin: 0 5px;
}

.social-panel p a {
  color: #ff7500;
  text-decoration: none;
}

.social-panel h4 {
  margin: 20px 0;
  color: #97a5ce;
  font-family: "Muli";
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}

.social-panel ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-panel ul li {
  margin: 0 10px;
}

.social-panel ul li a {
  border: 1px solid #dce1f2;
  border-radius: 50%;
  color: #001f61;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  text-decoration: none;
}

.social-panel ul li a:hover {
  border-color: #ff6a00;
  box-shadow: 0 9px 12px -9px #ff6a00;
}

.floating-btn {
  border-radius: 26.5px;
  background-color: #001f61;
  border: 1px solid #001f61;
  box-shadow: 0 16px 22px -17px #03153b;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 20px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-btn:hover {
  background-color: #ffffff;
  color: #001f61;
}

.floating-btn:focus {
  outline: none;
}

.floating-text {
  background-color: #001f61;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-family: "Muli";
  padding: 7px 15px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 998;
}

.floating-text a {
  color: #ff7500;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .social-panel-container.visible {
    transform: translateX(0px);
  }

  .floating-btn {
    right: 60px;
  }

  @media (max-width: 768px) {
    /* Adjust carousel text and button sizes */
    .carousel-caption h1 {
      font-size: 1.8rem; /* Smaller headline */
    }

    .carousel-caption p {
      font-size: 1rem; /* Smaller subtitle */
    }

    .carousel-caption button {
      font-size: 0.9rem;
      padding: 8px 16px; /* Reduced padding */
    }

    /* Key Features Section */
    .key-features-marquee .feature-box {
      width: 150px; /* Smaller width for boxes */
      padding: 10px 15px;
      font-size: 0.9rem; /* Adjusted text size */
      margin: 10px auto; /* Centered margin */
    }

    .key-features-marquee .feature-box img {
      width: 30px; /* Smaller icons */
      height: auto;
    }

    .key-features-marquee .feature-box p {
      font-size: 0.8rem; /* Reduced text size */
      margin: 0;
    }

    /* About Section */
    .about {
      margin-bottom: 25px;
      flex-direction: column;
      padding: 20px 10px;
    }

    .about-image img {
      max-width: 100%;
      margin-bottom: 15px;
    }

    .about-text {
        margin-left: 10px;
      padding: 0;
    }

    .about-text h2 {
        margin-left: 10px;
      font-size: 1.6rem;
    }

    .about-text p {
        margin-left: 10px;
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .about-text button {
        margin-left: 10px;
      font-size: 0.8rem;
      padding: 8px 20px;
    }

    /* New Arrivals Section */
    .new-arrivals-section .row {
      grid-template-columns: 1fr 1fr; /* Two columns on mobile */
      gap: 10px;
    }

    .product-item h4 {
      font-size: 0.9rem;
    }

    .product-item p {
      font-size: 0.8rem;
    }

    .overlay .text {
      font-size: 0.8rem;
    }

    /* FAQ Section */
    .faqs-container {
      grid-template-columns: 1fr; /* Stack FAQs vertically */
      gap: 15px;
      padding: 15px 10px;
    }

    .faq-title {
      font-size: 1rem;
    }

    .faq-text {
      font-size: 0.9rem;
    }

    /* Floating Button */
    .floating-btn {
      font-size: 0.8rem;
      padding: 8px 12px;
      bottom: 15px;
      right: 15px;
    }
  }

  @media (max-width: 576px) {
    /* Further scaling for smaller devices */
    .carousel-caption h1 {
      font-size: 1.5rem;
    }

    .carousel-caption p {
      font-size: 0.8rem;
    }

    .carousel-caption button {
      font-size: 0.7rem;
      padding: 6px 12px;
    }

    .key-features-marquee .feature-box {
      width: 160px;
      padding: 10px 10px;
    }

    .key-features-marquee .feature-box img {
      width: 25px;
    }

    .key-features-marquee .feature-box p {
      font-size: 0.9rem;
    }

    .product-item h4 {
      font-size: 0.8rem;
    }

    .product-item p {
      font-size: 0.7rem;
    }

    .overlay .text {
      font-size: 0.7rem;
    }
  }

  /* Adjusting the animation for faster transition */
  @keyframes scroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .marquee-inner {
    animation: scroll 10s linear infinite; /* Faster transition for mobile */
  }


.new-arrivals-section {
  /* padding: 40px 0; */
  background-color: #ffffff;
}

.new-arrivals-section .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
}

.new-arrivals-section .view-all-link {
  font-size: 14px;
  text-decoration: none;
  color: #7a5c54;
  font-weight: bold;
  display: inline-block;
  margin-top: 5px;
}

.new-arrivals-section .view-all-link:hover {
  text-decoration: underline;
}

/* .carousel-inner {
  margin-top: 20px;
} */

.custom-carousel-control {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
  background-color: #7a5c54;
  border-radius: 50%;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #543d33;
}

.product-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  margin-bottom: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: scale(1.03);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.product-item .discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f5e6d2;
  color: #7a5c54;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 15px;
  font-weight: bold;
}

.product-item img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

.product-item h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #4a4a4a;
}

.product-item .price {
  color: #7a5c54;
  font-size: 14px;
  font-weight: bold;
  margin-right: 5px;
}

.product-item .original-price {
  text-decoration: line-through;
  color: #a0a0a0;
  font-size: 12px;
}

.product-item .sale-text {
  font-size: 12px;
  font-weight: bold;
  color: #c05032;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  
  }

  .custom-carousel-control {
    display: none; /* Hide arrows beside the title on small screens */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important; /* Hide built-in carousel arrows for larger screens */
  }
}


/* Responsive: Tablet View */
@media (min-width: 765px) and (max-width: 992px) {
  header nav {
    flex-direction: row;
    padding: 10px 30px;
  }

  .about {
    flex-direction: row;
    gap: 20px;
    padding: 30px 20px;
  }

  .key-features-marquee {
    flex-wrap: wrap;
  }

  .product-item {
    padding: 10px;
  }
  .new-arrivals-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    gap: 20px; /* Add spacing between items */
    justify-content: center; /* Center the items */
  }

  .product-item {
    width: 100%; /* Ensure proper scaling */
    margin: 0 auto; /* Center each item */
    padding: 10px; /* Add padding around items */
  }

  .product-item h4 {
    font-size: 1rem; /* Adjust font size */
    text-align: center; /* Center-align text */
  }

  .product-item p {
    font-size: 0.9rem; /* Adjust font size */
    text-align: center; /* Center-align price */
  }

  /* Categories Section: 2 items per row */
  .filter-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    gap: 20px; /* Add spacing between filter options */
    justify-content: center; /* Center-align content */
  }

  .filter-option {
    display: flex;
    flex-direction: column; /* Stack the checkbox and label */
    align-items: center; /* Center-align content */
    text-align: center;
  }

  .filter-option input[type="checkbox"] {
    margin-bottom: 10px; /* Add spacing below the checkbox */
    transform: scale(1.2); /* Enlarge the checkbox for visibility */
    accent-color: #273b79; /* Consistent blue color */
  }

  .filter-option label {
    font-size: 1rem; /* Maintain consistent font size */
  }
}