
    /*Navigation bar*/

    html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family:Calibri;
     margin: 0;
     padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden !important;
        max-width: 100vw !important;
}

/* Footer ko push karega bottom */
#contact {
  margin-top: auto;
}

    .nav-link.active {
    color: #d4af37 !important; /* Gold color when active */
    font-weight: bold;
    border-bottom: 2px solid #d4af37; /* Optional underline */
    }

    .nav-bg {
    /* background-color: #e9dea3; */
    background: linear-gradient(90deg, #fff6e9, #ffd9b3);
    transition: all 0.3s ease; /* Smooth shrinking effect */
    }

    .container {
        width: 92%; /* or max-width: 100% */
        padding: 0 15px;
    }
  
    .nav-link {
  white-space: nowrap;   /* Keep text in one line */
}


/* .nav-link {
  margin-right: 15px;
  padding: 7px;
} */

/* Signup/Login Button */
.btn-signup {
  background-color: #9e9566; /* Main color */
  color: white !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}

@media (max-width: 1330px) and (min-width: 1310px) {
  .btn-signup {
    position: relative;
    right: 75px;
  }
}

/* Hover Animation */
.btn-signup:hover {
  background-color: white;
  color: #afa368 !important;
  border-color: #d8ce9c;
  transform: translateY(-3px);
  box-shadow: 0px 6px 10px rgba(0,0,0,0.15);
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .btn-signup {
    padding: 6px 14px;
    font-size: 0.85rem;
  }
}


.navbar-custom {
  padding: 15px 0; /* Initial padding */
  transition: all 0.3s ease;
}

.nav-logo-img {
  height: 90px;
  transition: all 0.3s ease;
}

.shrink {
  padding: 5px 0 !important; /* Reduced height */
}

.shrink .nav-logo-img {
  height: 45px; /* Smaller logo when scrolled */
}

@media (min-width: 768px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    transition: all 0.3s ease;
  }
}
/* Dropdown Menu Style */
.custom-dropdown {
  background: #fff8dc; /* light cream */
  border-radius: 10px;
  padding: 10px 0;
  border: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.3s ease;
}
 
/* Dropdown Items */
.custom-dropdown .dropdown-item {
  padding: 10px 20px;
  transition: all 0.2s ease-in-out;
  border-radius: 6px;
}
 
/* Hover Effect */
.custom-dropdown .dropdown-item:hover {
  background-color: #ffcd70;
  color: #000;
  transform: translateX(5px);
}
 
/* Dropdown Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}


    
    /* Hero Section - Fixed */
    .art-section {
      min-height: 60vh;
      display: flex;
      margin-bottom: 0;
      padding-top: 115px;
    }

.image-side {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.image-side .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 16s infinite;
}

.image-side .slide:nth-child(1) {
  background-image: url('EYE.jpg');
  animation-delay: 0s;
}

.image-side .slide:nth-child(2) {
  background-image: url('Gifting.jpg');
  animation-delay: 4s;
}

.image-side .slide:nth-child(3) {
  background-image: url('Emboslide2.jpg');
  animation-delay: 8s;
}

.image-side .slide:nth-child(4) {
  background-image: url('drums-guitar.jpg');
  animation-delay: 12s;
}

@keyframes fade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}


    @media (max-width: 749px) and (min-width: 200px) {
  .art-section {
        width: 104%;
  }
}
    .text-side {
  background-color: #b8afa1;
  color: #fff;
  flex: 1;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  animation: fadeInRight 1.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
    }
    
  .text-side h2 {
    font-weight: 600;
    color: #fff;
  }
  .text-side p {
    color: #f0f0f0;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .btn-custom {
    background-color: #f1c40f;
     border: none;
     padding: 10px 10px;
     color: #fff;
     font-weight: bold;
     border-radius: 5px;
     box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
     transition: all 0.3s ease;
   }
   .btn-custom:hover {
     background-color: #d1a935;
     transform: translateY(-2px);
    }
    
   .butterfly {
    position: absolute;
    width: 152px;
    opacity: 1.15;
    z-index: 1;
 }
 .butterfly-left {
   top: 7px;
   left: 8px;
   transform: rotate(-231deg);
 }
  .butterfly-right {
     bottom: 10px;
     right: 31px;
       transform: rotate(-48deg);
    }

     @keyframes fadeInLeft {
        from { opacity: 0; transform: translateX(-50px); }
        to { opacity: 1; transform: translateX(0); }
      }
      @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
      }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .art-section {
        flex-direction: column;
        min-height: auto;
      }
      .image-side, .text-side {
        flex: none;
        min-height: 50vh;
      }
      .text-side {
        padding: 30px 20px;
      }
      .butterfly {
        width: 100px;
      }
    }
  /* About Section */
    .about-section {
      background-color: #fff;
      padding: 60px 0;
    }
    .about-title {
      font-size: 28px;
      font-weight: 600;
      position: relative;
      display: inline-block;
      margin-bottom: 30px;
      }

      .about-title::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 3px;
        background-color: #000;
        bottom: -5px;
        margin-left: 23px;
        left: 0;
      }

      /* Image Stack Container */
      .image-stack {
        position: relative;
        width: fit-content;
        margin: auto;
      }

      /* Common Image Styling */
      .selectable-img {
    width: 296px;
    height: 332px;
    object-fit: cover;
    border: 2px solid #b4ccff;
    border-top-left-radius: 20%;
    border-bottom-right-radius: 20%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-stack img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(14, 30, 50, 0.10);
    transition: transform .45s ease, filter .45s ease, box-shadow .35s ease;
    display: block;
}

.image-top {
    position: absolute;
    right: -6%;
    top: -14%;
    width: 62%;
    border: 6px solid rgba(255, 255, 255, 0.72);
    transform: rotate(3.5deg);
    box-shadow: 0 16px 36px rgba(14, 30, 50, 0.12);
    border-radius: 10px;
}



      /* Image Positioning for Overlap */
      .image-bottom {
        position: relative;
        z-index: 1;
        top: 24px;
        left: 5px;
      }

      .image-top {
        position: absolute;
        top: 24px;
        left: 5px;
        z-index: 2;
      }

      /* Bring Selected Image to Front */
      .selectable-img.active {
        z-index: 3 !important;
      }

      /* About Text */
      .about-text p {
        font-size: 20px;
        line-height: 1.5;
        color: #333;
      }

      /* Responsive Fix for Mobile */
      @media (max-width: 768px) {
        .image-top {
          position: relative;
          top: 0;
          left: 0;
        }

        .image-stack {
          margin-bottom: 30px;
          text-align: center;
        }
      }
/* @media (max-width: 572px) {
  .about-text {
    margin: 15px;
  }
} */
    /*Gallary*/
    .swiper {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .swiper-slide {
      position: relative;
      background-position: center;
      background-size: cover;
      width: 250px;
      height: 300px;
      overflow: hidden;
      border-radius: 10px;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    /* Overlay text */
    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      opacity: 0;
      transition: opacity 0.3s ease;
      text-align: center;
      padding: 10px;
    }

    /* Hover effect */
    .swiper-slide:hover img {
      transform: scale(1.1);
    }

    .swiper-slide:hover .overlay {
      opacity: 1;
    }

    /* Media Queries for responsive images */
    @media (max-width: 768px) {
      .swiper-slide {
        width: 180px;
        height: 220px;
      }
      .overlay {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .swiper-slide {
        width: 140px;
        height: 180px;
      }
      .overlay {
        font-size: 12px;
      }
    }
        /* .swiper {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
    }
 
 .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 250px;  
  height: 300px;
}

 
    .swiper-slide img {
      display: block;
      width: 100%;
    } */

     .gallery-title {
      font-size: 28px;
      font-weight: 600;
      position: relative;
      display: inline-block;
      margin-bottom: 30px;
    }

    .gallery-title::after {
      content: "";
      position: absolute;
      width: 70px;
      height: 3px;
      background-color: #000;
      bottom: -5px;
      margin-left: 10px;
      left: 0;
      align-content: center;
    }
    .square-img {
      width: 200px;
      height: 300px;
      object-fit: cover; /* Keeps aspect ratio and fills the square */
    }


    /*Shop Section*/
    .shop-section {
      padding: 60px 20px;
      background-color: #fff;
    }
    .shop-title {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 30px;
      position: relative;
    }
    .shop-title::after {
      content: "";
      width: 105px;
      height: 3px;
      background: #000;
      position: absolute;
      bottom: -6px;
      margin-left: 3px;
      left: 0;
    }
    .card-img-top {
      height: 260px;
      object-fit: cover;
      border-top-left-radius: 0.75rem;
      border-top-right-radius: 0.75rem;
    }
    .card {
      border-radius: 0.75rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .buy-btn {
      font-size: 14px;
      padding: 4px 10px;
      float:right;
    }
    .price-text {
      font-weight: 600;
    }
    .card-text-small {
      font-size: 14px;
      color: #555;
    }
      .art-card .art-info {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .art-card:hover .art-info {
      opacity: 1;
      max-height: 150px;
    }

    .art-info p {
      margin: 0 0 4px;
      font-size: 0.9rem;
    }

    .price-text {
      font-size: 1rem;
      color: #000;
    }



    /*We Also Offer*/
    .offer-section {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
    }
    .offer-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 40px;
    }
    .offer-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    .offer-card:hover {
      transform: scale(1.03);
    }
    .offer-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .offer-overlay {
      position: absolute;
      bottom: 20px;
      left: 20px;
      color: white;
      text-align: left;
      text-shadow: 1px 1px 5px #000;
    }
    .offer-overlay h5,
    .offer-overlay p {
      margin: 0;
    }
    .offer-overlay h5 {
      font-size: 20px;
      font-weight: 700;
    }
    .offer-overlay p {
      font-size: 16px;
    }
    /* 📱 Responsive tweaks */
@media (max-width: 992px) { /* tablets */
  .offer-section h2 {
    font-size: 24px;
  }
}

/* ✅ Mobile full width fix */
@media (max-width: 576px) {
  .offer-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  .offer-section .col-12 {
    padding-left: 0;
    padding-right: 0;
  }
  .offer-card {
    border-radius: 0; /* edge-to-edge look */
  }
}
@media (max-width: 576px) { /* very small devices */
  .offer-card {
    border-radius: 8px;
  }
  .offer-overlay h5 {
    font-size: 16px;
  }
  .offer-overlay p {
    font-size: 12px;
  }
}

    /*Footer*/
    .footer {
      background-color: #333;
      color: white;
      padding: 40px 20px 10px;
    }
    .footer h5 {
      font-size: 20px;
      /* font-style: italic; */
    }
    .footer a {
      color: white;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .social-icons a {
      font-size: 20px;
      margin-right: 10px;
      color: white;
    }
    .form-control {
      margin-bottom: 10px;
    }
    .submit-btn {
      background-color: #d16703;
      border: none;
      color: white;
      padding: 6px 16px;
      border-radius: 5px;
    }
    .bottom-bar {
      background-color: #f3d8bb;
      color: black;
      text-align: center;
      padding: 8px;
      font-size: 14px;
    }
   /* Style for Back to Top button */
  #backToTop {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    border-radius: 50%;
    padding: 6px 13px;
  }
  /* Tablet */
@media (max-width: 992px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    padding: 10px 14px;
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #backToTop {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 14px;
  }
}
.sold-out-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
}
.sold-out img {
  filter: grayscale(100%) brightness(70%);
  pointer-events: none; /* prevent clicks on image */
}

.whatsapp_lg{
    background: green;
    height: 40px;
    width: 40px;
    padding: 7px 9px;
    border-radius: 50%;
    position: fixed;
    bottom: 12%;
    right: 2.5%;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    animation: floatY 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 9999;
}
/* Floating animation */
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Hover effect */
.whatsapp-lg:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp_lg i{
    font-size: 28px;
    color: #ffffff;
}

.link-hover-slide {
  position: relative;
  text-decoration: none;
  color: #4da6ff;
}

.link-hover-slide::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: #4da6ff; /* soft blue */
  transition: width 0.3s ease;
}

.link-hover-slide:hover::after {
  width: 100%;
}

.link-hover-slide:hover {
  color: #4da6ff; /* same blue */
}


/* Bio Gallery */
.gallery-container{
  padding: 10px 50px;
}
.gallery-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 10px 50px;
    }

    .gallery-track::-webkit-scrollbar {
      display: none;
    }

    .gallery-track img {
      min-width: 19%;
      aspect-ratio: 1/1;
      border-radius: 14px;
      object-fit: cover;
      box-shadow: 0 5px 15px rgba(0,0,0,0.18);
      transition: 0.3s;
    }

    .gallery-track img:hover {
      transform: scale(1.07);
    }

    /* buttons */
    .gallery-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      
      display: flex;
      align-items: center;
      justify-content: center;

      width: 44px;
      height: 44px;

      background: rgba(0, 0, 0, 0.7);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;

      font-size: 18px;
      z-index: 5;
      transition: 0.3s;
      backdrop-filter: blur(6px);
    }

    .gallery-btn:hover {
      background: black;
      transform: translateY(-50%) scale(1.1);
    }

    .gallery-prev { left: 10px; }
    .gallery-next { right: 10px; }

    /* tablet */
    @media (max-width: 768px) {
      .gallery-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
      }

      .gallery-prev { left: 5px; }
      .gallery-next { right: 5px; }

      .gallery-track img {
        min-width: 70%;
      }
    }

    /* mobile */
    @media (max-width: 480px) {
      .gallery-container{
        padding: 10px 15px;
      }
      .gallery-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
      }

      .gallery-prev { left: 2px; }
      .gallery-next { right: 2px; }

      .gallery-track img {
        min-width: 85%;
      }
    }

