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

:root {
  --sky-blue: #426bc2;
  --white: #ffffff;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-ExtraBold.ttf);
  font-weight: 900;
}

@font-face {
  font-family: ITC;
  src: url(../fonts/ITC\ Bauhaus\ Medium.otf);
  font-weight: 500;
}

@font-face {
  font-family: 'Bahnschrift';
  src: url(../fonts/BAHNSCHRIFT.TTF);
  font-weight: 100 900;
  font-stretch: 75% 125%;
}

@font-face {
  font-family: Brush;
  src: url(../fonts/Brush\ Script\ Std\ Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: theseasons;
  src: url(../fonts/theseasons-bold.otf);
  font-weight: 700;
}

html,body {
  scroll-behavior: auto !important;
  overscroll-behavior: none;
}

[text-split] span {
  display: inline !important;
  font-family: theseasons, Arial, sans-serif !important;
  color: inherit;
}
.reveal {
  opacity: 0;
  transform: translateY(60px);
}

.container-max {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 115px;
}

.container-min {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 90px 0;
}

.theseasons {
  font-family: theseasons;
  letter-spacing: 1px;
}

.bahnschrift {
  font-family: 'Bahnschrift', sans-serif;
  font-weight: 600; /* SemiBold */
  font-stretch: 87.5%; /* SemiCondensed */
}

a {
  text-decoration: none;
}

.heading-text h5 {
  color: #414141;
  letter-spacing: 2%;
}

.heading-text h2 {
  font-size: 54px;
  line-height: 1.2;
}

ul,
li {
  list-style: none;
}

/* header ================= */
.custom-navbar {
  background-color: var(--sky-blue);
  padding: 15px 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 5555;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.custom-logo img {
  width: 100%;
  height: 80px;
}

.custom-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.custom-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Bahnschrift', sans-serif;
}

.custom-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.custom-right a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

.custom-logo-text h3 {
  position: relative;
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  font-family: ITC, Arial, sans-serif;
  text-transform: uppercase;
}

.custom-logo-text h3 p {
  position: absolute;
  right: -20px;
  top: 0;
  font-size: 9.2px;
  line-height: 1.2;
  font-weight: 300;
  border: 1px solid #fff;
  border-radius: 100%;
  width: 12px;
  height: 12px;
}

.custom-logo-text span {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  font-family: Brush, Arial, sans-serif;
}

.divider {
  height: 24px;
  width: 1px;
  background-color: var(--white);
}

.line {
  width: 30px;
  height: 3px;
  border-radius: 4px;
  background-color: var(--white);
}

.line-2 {
  margin-block: 6px;
}

.collapse-area-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.collapse-area-mobile.active {
  max-height: 500px;
}

.navbar-toggler-icon {
  width: fit-content !important;
  height: auto !important;
}

/* =============== */
/* Dropdown container */
.custom-dropdown {
  position: relative;
}

/* Submenu hidden by default */
.custom-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 10px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show submenu on hover */
.custom-dropdown:hover .custom-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* Keep submenu visible while hovering over it */
.custom-submenu:hover {
  display: block;
}

/* Style submenu links */
.custom-submenu li a {
  color: #1c4383;
  padding: 8px 16px;
  display: block;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}

.custom-submenu li a:hover {
  background-color: #f2f2f2;
}

.shop-link .dropdown-icon {
  transition: all 0.5s ease-in-out;
}

/* Rotate arrow when parent hovered */
.custom-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}

/* Mobile dropdown */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 30px;
  list-style: none;
}

.mobile-dropdown:hover .mobile-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.mobile-submenu:hover {
  display: block;
}

.mobile-submenu li a {
  display: block;
  padding: 6px 0;
  color: #fff;
  /* change as needed */
  font-size: 16px;
}

.mobile-dropdown.open .mobile-submenu {
  max-height: 500px;
  /* enough height for 4 items */
}

.toggle-icon {
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .toggle-icon {
  transform: rotate(180deg);
}

.hero-section {
  background-image: url(../images/hero-bg.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  margin-top: 90px;
}

/* offer-section ========= */
section.offer-section {
  padding-top: 36px;
  padding-bottom: 36px;
  background-color: var(--sky-blue);
}

.declaration-info-left p {
  max-width: 380px;
}

.arrival-sale img {
  max-width: 260px;
  border: 3px solid var(--white);
}

.arrival-sale h5 {
  font-size: 24px;
}

.arrival-sale p {
  max-width: 500px;
}

/* card-section =================== */
.collection-title span {
  font-size: 14px;
  background-color: var(--sky-blue);
  padding: 4px 12px;
  border-radius: 10px;
}

.collection-title {
  height: 120px;
  padding: 1.2rem;
  text-align: center;
}

.truncate-text {
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.collection-title-wrapper {
  background-color: var(--white);
  margin-top: -80px;
  margin: -80px 20px 0;
  border-radius: 20px 20px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.saree-card img {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 20px 20px 0 0;
  /* max-width: 447px; */
}

.products-card {
  border-radius: 20px 20px 0 0;
  /* border: 1px solid rgba(0, 0, 0, 0.5); */
  overflow: hidden;
  height: 100%;
}

.products-card img {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 20px 20px 0 0;
  height: 515px !important;
  object-fit: cover;
  object-position: top;
}

.products-card-content {
  padding: 16px 24px;
  margin-top: -30px;
  z-index: 11;
}

.products-card-content h4 {
  font-size: 18px;
}

.products-card-content h5 {
  color: #414141;
}

.product-view-icon {
  width: 42px;
  height: 42px;
  background-color: #232323;
  top: 16px;
  right: 20px;
}

.size-chart li span {
  background-color: #d9d9d9;
  padding: 4px 10px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.saree-color {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.pink-saree {
  background-color: #ecbfcc;
}

.dark-pink-saree {
  background-color: #e42b57;
}

.yellow-saree {
  background-color: #cfa534;
}

.green-saree {
  background-color: #155834;
}

.purple-saree {
  background-color: #4c0e2b;
}

.product-des p,
.techmount-product-des p {
  color: #414141;
}

.products-content {
  position: absolute;
  left: 0;
  right: 0;
  padding: 1.3rem 1.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 24px 0px 24px;
  text-align: left;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  bottom: 0;
  height: 0px;
  transition: bottom 0.7s, height 0.7s, opacity 0.7s;
  z-index: -1;
  opacity: 0;
}

.products-card:hover .products-content {
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0 24px 0px 24px;
  text-align: left;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  bottom: 66px;
  height: auto;
  /* opacity: 1; */
  z-index: 1;
}

/* about us ===================== */
.about-us {
  background-color: var(--sky-blue);
  padding-top: 240px;
  margin-top: -240px;
  padding-bottom: 160px !important;
}

.about-us-content {
  gap: 60px;
}

/* .about-us img {
  max-width: 100%;
  border-radius: 30px;
  border: 4px solid #fff;
} */

.about-us h3 {
  font-size: 46px;
}

.white-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: #000;
  padding: 13px 24px;
  border-radius: 30px;
  font-size: 16px;
}

/* testimonials-section ============ */
.testimonials-section {
  background-color: var(--sky-blue);
}

.star-rating li i {
  color: #fffb7c;
}

.test-content h4 {
  max-width: 940px;
  font-size: 28px;
  line-height: 40px;
}

.test-content h6 {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: var(--white) !important;
}

/* animation =========== */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  height: auto;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
  border-top: 1px solid var(--white);

  .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }

  .slide {
    height: auto;
    width: 250px;
  }
}

/* ==================== */

/* support section ========== */
.support-box {
  padding: 0px 30px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 10%) 0px 4px 4px -1px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.support-box:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.support-box img {
  width: 42px;
  height: auto;
}

.support-box p {
  font-size: 14px;
  color: #414141;
}

/* blog section ======= */
.blog-card img {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 20px 20px 0 0;
}

/* contact us section  */
.contact-us-content {
  position: relative;
  padding: 134px 0;
  border-radius: 30px 30px 0 0;
  background-image: url(../images/contact-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 55;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.contact-text {
  z-index: 55;
}

.contact-us-content::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 0;
}

.contact-us-content h2 {
  font-size: 46px;
}

.contact-us-content p {
  max-width: 650px;
}

.contact-text input, .footer-contact-text input {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
}

.contact-text .input-type {
  max-width: 530px;
}

.blue-btn {
  background-color: var(--sky-blue);
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  color: #fff;
  margin-top: 14px;
}

.btn-10 {
    --btn-color: #3498db;
    --btn-color-dark: rgba(0, 0, 0, 0.25);

    position: relative;
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background: var(--btn-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-10::before,
.btn-10::after,
.btn-10 span::before,
.btn-10 span::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--btn-color-dark);
    transition: 0.4s ease;
}

.btn-10::before {
    left: 0;
}

.btn-10::after {
    right: 0;
}

.btn-10 span::before {
    right: 0;
    transition-delay: 0.4s;
}

.btn-10 span::after {
    left: 0;
    transition-delay: 0.4s;
}

.btn-10:hover {
    color: #e8f6ff;
}

.btn-10:hover::before,
.btn-10:hover::after,
.btn-10:hover span::before,
.btn-10:hover span::after {
    width: 100%;
}

.btn-10:active {
    background-color: #2980b9;
}


/* Animation keyframes — Pure CSS */
@keyframes criss-cross-left {
    0% {
        left: -20px;
        width: 0;
    }
    50% {
        left: 50%;
        width: 20px;
    }
    100% {
        left: 50%;
        width: 150%;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
        width: 0;
    }
    50% {
        right: 50%;
        width: 20px;
    }
    100% {
        right: 50%;
        width: 150%;
    }
}

.footer-contact-text .blue-btn {
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

/* footer ========================== */
footer {
  background-color: var(--sky-blue);
  padding-block: 290px 90px;
  margin-top: -290px;
}

footer .row {
  padding-bottom: 90px;
}

.copyright-content {
  border-top: 1px solid #fff;
}

.copyright-content p {
  padding-block: 30px;
}

/* product page ====================== */
.hero-sec-bg {
  background-image: url(../images/hero-bg-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 350px;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sec-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}

.hero-sec-bg h1 {
  font-size: 60px;
  letter-spacing: 2%;
  position: relative;
  z-index: 10;
}

.pagination-sec ul li .active {
  font-weight: 600;
  /* color: var(--sky-blue); */
  border-bottom: 2px solid var(--sky-blue);
}

.pagination-sec ul li a {
  font-size: 18px;
  color: #000;
  margin-inline: 8px;
  padding-inline: 6px;
  padding-bottom: 4px;
}

.pagination-sec ul li span {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: var(--sky-blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Ellipsis/dots styling for pagination (non-clickable) */
.pagination-sec ul li p.dots {
  margin-inline: 8px;
  padding: 0;
  font-size: 18px;
  /* color: #6c757d; */
  color: var(--sky-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: transparent;
  pointer-events: none;
  /* ensure it's non-interactive */
  user-select: none;
}

.shop-cart {
  gap: 20px;
}

.shop-cart img {
  border-radius: 20px;
  max-width: 530px;
  width: 100%;
  height: 715px;
  object-fit: cover;
  object-position: top;
}

.shop-cart-min-img img {
  max-width: 120px;
  height: 166px;
  width: 100%;
  object-fit: cover;
}

.modal-content .modal-body .shop-cart-min-img img {
  /* max-width: 150px; */
  height: 150px;
  object-fit: cover;
  object-position: top;
}

.modal-content .modal-body .shop-cart-min-img {
  gap: 0;
}

.shop-cart-min-img {
  gap: 16px;
}

.qty-input {
  color: #7b7b7b;
  background: #fff;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.qty-input .product-qty,
.qty-input .qty-count {
  background: transparent;
  color: inherit;
  font-weight: 600;
  font-size: inherit;
  border: none;
  display: inline-block;
  min-width: 0;
  height: 2.5rem;
  line-height: 1;
}

.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
  outline: none;
}

.qty-input .product-qty {
  width: 50px;
  min-width: 0;
  display: inline-block;
  text-align: center;
  appearance: textfield;
}

.qty-input .product-qty::-webkit-outer-spin-button,
.qty-input .product-qty::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 2.5rem;
  font-size: 1.25em;
  text-indent: -100px;
  overflow: hidden;
  position: relative;
}

.qty-input .qty-count:before,
.qty-input .qty-count:after {
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  display: block;
  background: #7b7b7b;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.qty-input .qty-count--minus {
  border-right: 1px solid #7b7b7b;
}

.qty-input .qty-count--add {
  border-left: 1px solid #7b7b7b;
}

.qty-input .qty-count--add:after {
  transform: rotate(90deg);
}

.qty-input .qty-count:disabled {
  color: #ccc;
  background: #f2f2f2;
  cursor: not-allowed;
  border-color: transparent;
}

.qty-input .qty-count:disabled:before,
.qty-input .qty-count:disabled:after {
  background: #ccc;
}

.qty-input {
  border-radius: 10px;
  border: 1px solid #7b7b7b;
}

.shop-cart-order {
  background-color: var(--sky-blue);
  padding: 16px 24px;
  border-radius: 20px;
}

.shop-cart-order p {
  max-width: 200px;
}

.add-to-cart-btn .blue-btn {
  border-radius: 30px !important;
  padding: 12px 20px !important;
}

.shop-cart-size p {
  font-size: 16px;
}

.shop-cart-size span {
  border: 1px solid #000;
  font-size: 16px;
  padding: 4px 20px;
  border-radius: 6px;
}

.shop-caer-color .saree-color {
  width: 32px;
  height: 32px;
}

.help-support .heading-text h3 {
  font-size: 32px;
}

.help-support .heading-text p {
  max-width: 670px;
}

.help-support-content {
  background-color: #f5f1ec;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 30px;
}

/* according ============ */
.accordion {
  background-color: #fff;
  border-radius: 20px;
  border: none !important;
}

.accordion-button {
  border: none !important;
}

.accordion-button:not(.collapsed) {
  color: #000 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.modal-dialog {
  max-width: 1080px !important;
}

.modal-content {
  height: 780px;
  /* overflow-y: auto; */
}

.modal-body {
  overflow: auto !important;
  /* height: 900px; */
}

.modal-footer {
  position: absolute;
  top: -24px;
  right: -20px;
  border: none;
  padding: 0;
  margin: 0;
}

.modal-footer button {
  border-radius: 50%;
  background-color: #1c4383 !important;
  border: none;
}

.modal-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey !important;
  border-radius: 10px !important;
}

.modal-content::-webkit-scrollbar-thumb {
  background: red !important;
  border-radius: 10px !important;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #b30000 !important;
}

/* contact-us page ============= */
.contact-us-box {
  /* border: 1px solid rgba(0, 0, 0, 0.5); */
  /* border-radius: 30px; */
  /* padding: 40px 46px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-content label {
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  padding-bottom: 6px;
}

.contact-content input,
.contact-content textarea {
  width: 100%;
  padding: 10px 20px;
  border-radius: 30px;
  /* border: 1px solid rgba(0, 0, 0, 0.5); */
  background-color: rgb(28 67 131 / 5%);
  border: none;
}

.contact-content .blue-btn {
  border-radius: 30px;
  padding: 10px 36px;
  margin-top: 20px;
}

.inquiries-contact p {
  color: #414141;
  padding-bottom: 6px;
}

.inquiries-contact h6 {
  font-size: 18px;
}

.inquiries-content img {
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.logo-items-text {
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
  display: block;
}

/* .hero-content-text {
    max-width: 600px;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600 !important;
    font-style: italic;
    color: #57354e;
    font-family: 'Times New Roman', Times, serif;
} */

/* about us page ========= */
.about-us-content-text img {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 30px;
}

.about-us-content-text p {
  letter-spacing: 1px;
}

.about-us-content-text h3 {
  font-size: 46px;
  line-height: 56px;
  font-weight: 500;
}

a.blue-round-btn {
  font-size: 16px;
  line-height: 24px;
  padding: 14px 30px;
  border-radius: 30px;
  background-color: #2c56a2;
  color: #fff;
}

/* ========================== */
.loading-spinner {
  padding: 40px 20px;
  text-align: center;
}

.loading-spinner .spinner-border {
  width: 3rem;
  height: 3rem;
}

.loading-spinner p {
  margin-top: 15px;
  color: #6c757d;
  font-size: 16px;
}

.alert {
  border-radius: 8px;
  border: none;
  padding: 20px;
  margin: 20px 0;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.alert .btn {
  border-radius: 6px;
  font-size: 14px;
  padding: 8px 16px;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* Fade in animation for loaded content */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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

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

/* new css ================= */
.declaration-img img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 2px solid #fff;
}

.hero-content {
  max-width: 640px;
}

.hero-content-text {
  font-size: 64px;
  line-height: 1.3;
  /* font-family: theseasons, Arial, sans-serif; */
  font-weight: 700;
  color: #553834;
}

.hero-content p {
  color: #553834;
  max-width: 500px;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* White curved overlay */
.overlay-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

/* Text + Logo */
.overlay-text {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  color: #1a237e;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.overlay-text img {
  width: 64px;
  height: 60px;
}

.curved-text {
  width: 100%;
  text-align: center;
  transform: translate(-90px, -44px);
}

.curved-text svg {
  width: 100%;
  height: 100px;
  transform: rotate(-22deg);
}

.curved-text text {
  font-size: 18px;
  font-weight: 700;
  fill: #2c56a2;
  /* Text color */
  letter-spacing: 1px;
}

/* ========================================================= */
/* modal pop up  */
/* ✅ Remove manual centering */
.modal {
  overflow-y: hidden !important;
}

/* ✅ Keep your size styling */
.ProductImagePopup {
  max-width: 600px !important;
}

/* ✅ Ensure modal content stays centered & stable */
.modal-dialog {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.modal-content {
  width: fit-content !important;
  height: auto !important;
  margin: auto !important;
  /* prevent shifting */
}


.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Individual platform colors */
.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook {
  background-color: #1877f2;
}

.social-icon.youtube {
  background-color: #ff0000;
}

.social-icon.whatsapp {
  background-color: #25D366;
}

/* Hover effects */
.social-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.map-custom-style {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

/* ===================== */
.our-about-text {
  background-color: #f5f7fa;
  border-radius: 32px;
  padding: 48px;
}

.our-about-text h3 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 600;
}

.our-about-text p {
  line-height: 30px;
  margin-bottom: 24px !important;
  height: 100px;
}

.our-about-text-box {
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 0.5rem 2rem -0.25rem hsla(216, 9%, 44%, .1);
  background-color: #fff;
}

/* add new css ============================= */
.form-label {
  font-size: 16px;
  color: #737373;
  text-align: start;
  margin-bottom: 0 !important;
}

.input-dropdown {
  border: 1px solid #d6d8db;
  padding: 12px 20px;
  border-radius: 12px;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 10px !important;
  height: 10px !important;
  border-top: 0 !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  border-left: 0 !important;
  margin-left: .35em !important;
  vertical-align: middle !important;
  position: absolute;
  right: 20px;
  top: 46%;
  transform: translateY(-50%) rotate(45deg) !important;
}

.badge {
  padding: 10px 16px;
  font-weight: 400;
  background-color: #fff !important;
  color: #000;
  font-size: 14px;
  box-shadow: 0 0.5rem 2rem -0.25rem hsla(216, 9%, 44%, 0.1);
  margin-bottom: 8px;
}

.active-filters {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid green;
}

/* Filter dropdown menu height and scroll styles */
.filter-checkbox-dropdown .dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

/* Custom scrollbar for webkit browsers */
.filter-checkbox-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.filter-checkbox-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.filter-checkbox-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.filter-checkbox-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Ensure dropdown items have proper spacing */
.filter-checkbox-dropdown .dropdown-menu .form-check {
  padding: 8px 12px;
  margin: 0;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.filter-checkbox-dropdown .dropdown-menu .form-check:hover {
  background-color: #f8f9fa;
}

/* Dropdown search input styles */
.filter-checkbox-dropdown .dropdown-search {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
}

.filter-checkbox-dropdown .dropdown-search input {
  border: 1px solid #d6d8db;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
}

.filter-checkbox-dropdown .dropdown-search input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  outline: none;
}

/* Better spacing for selected tags */
.filter-checkbox-dropdown .selected-tags {
  max-height: 60px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.filter-checkbox-dropdown .selected-tags::-webkit-scrollbar {
  width: 4px;
}

.filter-checkbox-dropdown .selected-tags::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

/* Responsive dropdown adjustments */
@media (max-width: 768px) {
  .filter-checkbox-dropdown .dropdown-menu {
    max-height: 250px;
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-top: 5px;
  }

  .filter-checkbox-dropdown .dropdown-menu .form-check {
    padding: 10px 12px;
  }
}

.archivement-card {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  background-color: #f5f7fa;
}

.archivement-card img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* center the focal point so top/bottom aren't unfairly cropped */
  object-position: center center;
}

.archivement-card-content {
  /* background-color: #f5f7fa; */
  border-radius: 20px;
  padding: 20px;
  /* margin-top: -30px; */
  /* height: 215px; */
  width: 100%;
}

.archivement-card-content h4 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 600;
}

.archivement-card-content p {
  font-size: 15px;
  line-height: 25px;
  color: #414141;
  display: -webkit-box;
  white-space: normal;
}

.sticky-bar {
  position: sticky;
  top: 0;
}

.sticky-bar .selected-tags {
  background-color: #fff;
}

/* Main Section Styling */

/* --- 1. Middle Content Area (Images + Content Box) --- */
.middle-content-area {
  position: relative;
  width: 100%;
  /* Ek margin de rahe hain taaki content aur images acchi tarah dikhen */
  margin-block: 60px;
}

/* Background Images Container */
.background-images-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  /* Bahar nikli hui cheezein chupane ke liye */
  height: 680px;
  /* Ek fixed height denge taaki content box ke liye jagah ho */
  border-radius: 30px;
}

.bg-img {
  flex-shrink: 0;
  /* Images ko chota hone se rokta hai */
  height: 100%;
}

.bg-img img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Individual Image Widths for Layout Match */
.left-stack-img {
  width: 100%;
  /* Left image ka width */
}


/* Content Box (Jo Overlay Hoga) */
.content-overlay-box {
  position: absolute;
  bottom: -17%;
  /* Vertically center */
  left: 50%;
  /* Horizontally center */
  transform: translateX(-50%);
  border-radius: 30px;
  width: 70%;
  padding: 48px;
  background-color: rgba(255, 255, 255, 0.95);
  /* Semi-transparent white background */
  border: 1px solid #c0aa6c;
  /* Golden/Beige border jaisa image mein hai */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  /* Halki shadow */
  z-index: 10;
}

.content-overlay-box h2 {
  font-size: 32px;
  line-height: 42px;
  color: #333;
  margin-bottom: 32px;
  text-align: center;
}

.content-overlay-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

/* --- 2. Bottom Gallery Section (3 Images) --- */
.bottom-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  /* Images ke beech ki jagah */
  padding: 60px 5% 0;
}

.gallery-item {
  width: 100%;
  /* Lagbhag barabar width */
  max-width: 350px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  border-radius: 30px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}
.our-about-card img{
  object-position: bottom;
}

/* ===================== */

/* ================= */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 100%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-content img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
}

/* Arrows */
.popup-prev, .popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.popup-prev:hover, .popup-next:hover {
    background: rgba(255,255,255,0.2);
}

.popup-prev { left: 6px; }
.popup-next { right: 6px; }

/* ✅ Pointer for clickable images */
.popup-trigger {
    cursor: pointer;
}


.pxl-item--featured img {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-radius: 16px 16px 0 0;
}

.wrap-inner{
    border-radius: 10px;
    position: relative;
    padding: 30px;
    /* margin-top: -190px; */
    /* margin-left: 60px; */
    background: #fff;
    box-shadow: 0 10px 60px rgba(137, 151, 186, .30);
    z-index: 2;
}

.pxl-icon {
    position: absolute;
    right: 30px;
    z-index: 2;
    top: -48px;
    border-radius: 1e3px;
    width: 88px;
    height: 88px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pxl-icon:before {
    position: absolute;
    content: '';
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background-color: rgba(255, 234, 230, .6);
    z-index: 0;
    border-radius: 1e3px;
}
.pxl-icon:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2c56a2;
    z-index: 1;
    border-radius: 1e3px;
}
.pxl-icon img{
    width: 50px;
    height: 50px;
    z-index: 2
}
.pxl-item--title {
    margin-bottom: 12px;
    color: #1c3f39;
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    /* letter-spacing: .48px; */
}
.item--content {
    color: #505d7b;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0 !important;
    height: 160px;
}
.pxl-item-img{
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
}
.pxl-item-img-1{
  background-image: url(../images/pxl-item-img-1.png);
}
.pxl-item-img-2{
  background-image: url(../images/pxl-item-img-2.png);
}
.pxl-item-img-3{
  background-image: url(../images/pxl-item-img-3.png);
}

.word {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  transform-origin: bottom;
}
/* .hero-sec-bg h1{
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  display: inline-block;
  padding: 10px 40px;
  border-radius: 30px;
} */
.contact-text{
  background-color: rgba(255, 255, 255, 0.4); /* हल्का सफेद tint, 70% opacity */
  backdrop-filter: blur(20px);
  display: inline-block;
  padding: 50px 30px;
  border-radius: 30px;
}
.contact-text h2{
  color: #212529;
}
.contact-text p{
  max-width: 460px;
  color: #212529;
}

.custom-b-top{
  background-color: rgb(28 67 131 / 5%);
  padding: 48px;
}
.custom-e-right{
  padding: 48px !important;
}
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2c56a2;
}
.single-con-info a {
    font-size: 16px;
    line-height: 24px;
    color: #000;
}
.contact-icon i {
    font-size: 22px;
}
.single-con-info a{
  max-width: 300px;
}
.custom-size{
  width: 80%;
}

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

  .container-min {
    max-width: 1180px;
  }

  .container-max {
    max-width: 1180px;
    padding: 0 15px;
  }

  .shop-cart {
    flex-direction: column;
  }

  .shop-cart-min-img {
    flex-direction: row !important;
  }

  .arrival-sale p {
    font-size: 14px;
  }

  .about-us-content {
    gap: 30px;
  }

  .hero-content-text {
    max-width: 420px;
  }

  .hero-content-text {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero-content p {
    max-width: 400px;
  }
  .item--content{
    height: 180px;
  }
}

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

  .custom-menu {
    gap: 16px;
    padding: 20px 0;
  }

  .custom-right {
    gap: 20px;
  }

  .shop-cart-min-img {
    gap: 10px;
  }

  .shop-cart-min-img img {
    max-width: 110px;
  }

  .declaration-info-left p,
  .arrival-sale p {
    max-width: 100%;
  }

  .arrival-sale img {
    max-width: 300px;
  }

  .about-us h3 {
    font-size: 36px;
  }

  .contact-us-content {
    padding: 100px 0;
  }

  .modal-dialog {
    padding: 0 20px;
    margin: 0 auto;
  }

  .logo-items-text {
    display: block;
  }

  .hero-content-text {
    font-size: 28px;
    max-width: 520px;
  }

  .hero-content-text {
    max-width: 420px;
  }

  .hero-content-text {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-content p {
    max-width: 380px;
    font-size: 14px;
  }

  .content-overlay-box {
    width: 70%;
    padding: 40px;
  }
  .our-about-text h3{
    margin-bottom: 14px;
  }
  .item--content{
    height: 120px;
  }
  .custom-b-top{
    padding: 36px;
  }
}

@media (max-width: 991px) {

  /* .container-max {
        padding: 0 60px;
    } */
  .hero-content-text {
    font-size: 24px;
    line-height: 34px;
    max-width: 420px;
  }

  .heading-text h2 {
    font-size: 42px;
  }

  .shop-cart {
    flex-direction: row;
  }

  .shop-cart-min-img {
    flex-direction: column !important;
  }

  .modal-dialog .shop-cart-min-img {
    flex-direction: row !important;
  }

  .modal-content .modal-body .shop-cart-min-img {
    gap: 8px;
  }

  .modal-content .modal-body .shop-cart-min-img img {
    max-width: 90px;
    height: 110px;
  }

  /* .contact-us-box {
    padding: 40px 30px;
  } */

  .hero-content-text {
    max-width: 380px;
  }

  .hero-content-text {
    font-size: 36px;
    line-height: 1.3;
  }
    .content-overlay-box {
      width: 86%;
  }
  .content-overlay-box{
    bottom: -20%;
  }
  .our-about-text{
    padding: 20px;
  }
  .our-about-text p{
    height: 140px;
  }
  .pxl-icon{
    width: 60px;
    height: 60px;
  }
  .pxl-icon img{
    width: 36px;
    height: 36px;
  }
  .item--content{
    height: auto;
  }
  .pxl-icon{
    top: -32px;
  }
  .single-con-info a{
    max-width: 100%;
  }
}

@media (max-width: 767px) {

  /* .container-max {
        padding: 0 40px;
    } */
  .hero-section {
    height: 50vh;
  }

  .hero-content-text {
    font-size: 24px;
    line-height: 34px;
    max-width: 320px;
  }

  .heading-text h2 {
    font-size: 36px;
  }

  .hero-sec-bg h1 {
    font-size: 48px;
    font-weight: 600 !important;
  }

  .hero-sec-bg {
    height: 400px;
    margin-top: 80px;
  }

  .custom-logo img {
    height: 68px;
  }

  .custom-right {
    gap: 14px;
  }

  .shop-cart img {
    max-width: 430px;
  }

  .modal-content .modal-body .shop-cart img {
    max-width: 100%;
  }

  .modal-content .modal-body .shop-cart-min-img img {
    height: 100%;
  }

  .shop-cart-min-img img {
    height: 140px;
  }

  section {
    padding: 60px 0;
  }

  footer .row {
    padding-bottom: 60px;
  }

  .arrival-sale img {
    max-width: 220px;
  }

  .hero-section {
    /* height: 50vh; */
    margin-top: 80px;
  }

  .products-card:hover .products-content {
    padding: 16px;
    margin: 0 16px 0 16px;
  }

  .about-us-content {
    gap: 0px;
  }

  .about-us h3 {
    font-size: 30px;
  }

  .about-us img {
    max-width: 100%;
  }

  .contact-us-content h2 {
    font-size: 36px;
  }

  .contact-us-content p {
    max-width: 100%;
  }

  .contact-us-content {
    padding: 80px 20px;
  }

  .remove-border {
    border: none !important;
  }
/* 
  .custom-b-top {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
  } */

  .logo-items-text {
    font-size: 24px;
  }

  .about-us-content-text img {
    max-width: 100%;
  }

  .about-us-content-text h3 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-content-text {
    max-width: 300px;
  }

  .hero-content-text {
    font-size: 30px;
    line-height: 1.3;
  }

  .our-about-text {
    border-radius: 0 0 32px 32px !important;
    padding: 30px !important;
  }

  .our-about-card {
    border-radius: 32px 32px 0 0 !important;
  }

  .our-about-card img {
    position: relative !important;
  }

  .our-about-section {
    padding-top: 0 !important;
  }

  .background-images-container {
    flex-direction: column;
    height: auto;
  }

  /* Mobile par saari images vertically stack hongi */
  .bg-img {
    width: 100% !important;
    height: 560px;
  }

  .content-overlay-box {
    position: relative;
    /* Mobile par overlay nahi, neeche aayega */
    top: 0;
    left: 0;
    transform: none;
    width: 90%;
    margin: 0 auto;
    margin-top: -50%;
    padding: 30px;
    /* Center karne ke liye */
  }

  .bottom-gallery {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .gallery-item {
    width: 90%;
    max-width: none;
  }

  .gallery-item img {
    height: auto;
  }

  .middle-content-area {
    margin-block: 30px;
  }

  /* Make archivement images show fully on smaller screens */
  .archivement-card img {
    /* height: auto; */
    object-position: center center;
  }
  .about-us{
    padding-bottom: 80px !important;
  }
  .content-overlay-box h2{
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 24px;
  }
  .content-overlay-box p{
    font-size: 15px;
    line-height: 1.5;
  }
  .our-about-text p{
    height: fit-content;
  }
  .our-about-text p{
    margin-bottom: 0 !important;
  }
  .pxl-item--featured img{
    height: 240px;
  }
  .wrap-inner{
    padding: 24px;
  }
  .pxl-item--title{
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 8px;
  }
  .item--content{
    font-size: 15px;
    line-height: 25px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    background-position: -10px bottom;
    height: 50vh;
  }

  .hero-content-text {
    display: none;
  }

  .hero-content-text {
    max-width: 250px;
  }

  .content-overlay-box h2 {
    font-size: 24px;
    line-height: 36px;
  }

  .content-overlay-box {
    margin-top: -36%;
  }
}

@media (max-width: 575px) {
  .container-max {
    padding: 0 20px;
  }

  .custom-right a {
    font-size: 14px;
  }

  .custom-logo-text h3 {
    font-size: 28px;
  }

  .custom-logo-text span {
    font-size: 12px;
  }

  .custom-logo-text h3 p {
    font-size: 7px;
    width: 10px;
    height: 10px;
  }

  .line {
    width: 24px;
    height: 2px;
  }

  .line-2 {
    margin-block: 5px;
  }

  .shop-cart {
    display: block !important;
  }

  .shop-cart img {
    max-width: 100%;
  }

  .shop-cart-min-img {
    flex-direction: row !important;
    margin-top: 20px;
  }

  .shop-cart-min-img img {
    height: 166px;
  }

  .shop-cart-min-img img {
    max-width: 100px !important;
    height: 140px !important;
  }

  .hero-sec-bg h1 {
    font-size: 36px;
    font-weight: 600 !important;
  }

  .arrival-sale img {
    max-width: 100%;
  }

  .test-content h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .slide {
    width: 200px !important;
  }

  .hero-section {
    background-position: -40px bottom;
  }

  .about-us-content-text img {
    height: 400px;
  }

  .about-us-content-text h3 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-section {
    background-position: top right;
  }

  .hero-content-text {
    display: none;
  }

  /* .archivement-card-content {
    padding: 48px 16px 16px 16px !important;
  } */

  .archivement-card-content h4 {
    font-size: 24px !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
  }

  .content-overlay-box {
    padding: 40px 20px;
  }

  .content-overlay-box p {
    font-size: 14px;
  }

  .content-overlay-box h2 {
    margin-bottom: 20px;
  }

  .bg-img {
    height: 460px;
  }
  .background-images-container{
    border-radius: 20px 20px 0 0;
  }
  .content-overlay-box{
    border-radius: 0 0 20px 20px;
    margin-bottom: 0;
    width: 100%;
    padding: 20px;
    box-shadow: none;
  }
  .middle-content-area{
    margin-bottom: 0;
  }
  .custom-b-top, .custom-e-right{
    padding: 36px 20px !important;
  }
}

@media (max-width: 480px) {
  /* .hero-section {
        background-position: -60px bottom;
        height: 40vh;
    } */

  .heading-text h2 {
    font-size: 30px;
  }

  .custom-right {
    gap: 10px;
  }

  .custom-logo img {
    height: 60px;
  }

  .shop-cart-min-img {
    gap: 8px;
  }

  .shop-cart-min-img img {
    max-width: 72px !important;
    height: 100px !important;
    object-fit: cover;
  }

  .test-content h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .collection-title-wrapper {
    margin: -80px 16px 0;
  }

  .collection-title {
    padding: 20px 16px;
  }

  .contact-us-content {
    padding: 60px 20px;
  }

  .contact-us-content p {
    font-size: 14px;
  }

  footer .row {
    padding-bottom: 30px;
  }

  .pagination-sec ul li span {
    width: 32px;
    height: 32px;
  }

  .pagination-sec ul li a {
    font-size: 16px;
    margin-inline: 6px;
  }

  .modal-content .modal-body .shop-cart-order p {
    font-size: 14px;
  }

  .modal-content .modal-body .shop-cart-order {
    padding: 16px 10px;
  }

  .modal-content .modal-body .shop-cart-order a {
    font-size: 14px;
  }

  /* .contact-us-box {
    padding: 30px 16px;
  } */

  .inquiries-contact h6 {
    font-size: 16px;
  }

  .logo-items-text {
    font-size: 22px;
  }

  .custom-logo-text h3 {
    font-size: 26px;
  }

  .about-us-content-text img {
    height: 340px;
  }

  .our-about-text {
    padding: 20px !important;
  }
  .bg-img {
    height: 400px;
  }
    .content-overlay-box {
        padding: 30px 20px;
    }
}
