* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*home start  */

/* WEEDING FLIM start here start */
.gradient-overlay {
    background: linear-gradient(to top,
            rgba(225, 48, 149, 0.6) 0%,
            rgba(131, 105, 120, 0) 35%,
            rgba(115, 115, 115, 0) 35%);
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

@media (max-width: 768px) {
    .vertical-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }
}

/* Want to make your Wedding look */

.gradient-text {
    /* This will create the gradient text effect */
    background-image: linear-gradient(to right, #FC3592, #4314A3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gradient-button {
    background-image: linear-gradient(to right, #FC3592, #4314A3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.background-pattern {
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="%23dbdbdb" fill-opacity="0.2"><path fill-rule="evenodd" d="M0 0h10v10H0V0zm10 10h10v10H10V10z" opacity=".2"/></g></svg>');
    background-size: 20px 20px;
    background-repeat: repeat;
    background-color: rgba(255, 255, 255, 0.8);
}
/* plan kolkata */
 .swiper-button-next::after,
 .swiper-button-prev::after {
     content: '';
 }

 .swiper-button-prev,
 .swiper-button-next {
     color: #fff;
     background-color: rgba(0, 0, 0, 0.5);
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     top: 50%;
     transform: translateY(-50%);
     z-index: 10;
 }

 .swiper-button-prev {
     left: 10px;
 }

 .swiper-button-next {
     right: 10px;
 }
/* Custom class for the Swiper container */
.testimonial-swiper-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 60px;
    /* Increased padding for profile pic */
    padding-bottom: 50px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.testimonial-card-wrapper {
    position: relative;
    padding: 2rem 1.5rem;
    /* Padding for the card content */
    margin-bottom: 1rem;
}

/* The container that will have the gradient border */
.testimonial-card-border {
    position: relative;
    padding: 2px;
    /* This padding creates the border thickness */
    background: linear-gradient(to right, #FF3692, #804EE6);
    clip-path: url(#bubble-shape-right);
}

/* The main card content with the custom shape */
.testimonial-card {
    position: relative;
    background: white;
    clip-path: url(#bubble-shape-right);
    padding: 2rem 2.5rem;
    height: 300px;
}

/* Profile picture styling */
.profile-pic {
    position: absolute;
    top: -15px;
    /* Adjusted position */
    right: 15px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid white;
    background: linear-gradient(to right, #FF3692, #804EE6);
    padding: 2px;
    z-index: 10;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* Custom pagination styles */
.testimonial-pagination {
    position: static;
    /* Position it relative to the container */
    margin-top: 0;
    /* Space above the pagination */
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background-color: transparent;
    border: 3px solid #FF3692;
    width: 14px;
    height: 14px;
}

/* OTHER PHOTOGRAPHY SERVICES start here  */
/* Custom class for the card container to enable the gradient border */
.card-gradient-border {
    position: relative;
}

/* This pseudo-element creates the gradient border on the right side */
.card-gradient-border::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    /* Thickness of the border */
    /* A vertical gradient using the colors you specified */
    background-image: linear-gradient(to bottom, #FF3692, #804EE6);
    /* Match the parent's border radius on the right side */
    border-radius: 0 1rem 1rem 0;
    opacity: 1;
    /* Always visible */
    transition: opacity 0.3s ease-in-out;
}
  /* Custom styles for navigation buttons */
  .photo-slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      cursor: pointer;
      background-color: rgba(255, 255, 255, 0.7);
      border-radius: 9999px;
      width: 2.5rem;
      /* 40px */
      height: 2.5rem;
      /* 40px */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      transition: background-color 0.3s ease;
  }

  .photo-slider-nav:hover {
      background-color: rgba(255, 255, 255, 1);
  }

  .photo-slider-prev {
      left: 1rem;
      /* 16px */
  }

  .photo-slider-next {
      right: 1rem;
      /* 16px */
  }

  .swiper-button-disabled {
      opacity: 0.5;
      cursor: not-allowed;
  }

  /* * FIX: Added necessary styles for custom wrapper and slide classes.
         * Swiper.js needs these to lay out the slides horizontally.
        */
  .photo-wrapper {
      display: flex;
      transition-property: transform;
      box-sizing: content-box;
  }

  .photo-slide {
      flex-shrink: 0;
      width: 100%;
      height: 100%;
      position: relative;
      transition-property: transform;
  }

/* accoding */
/* Custom styles for smooth accordion transition */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    cursor: pointer;
    /* Add pointer cursor to indicate it's clickable */
}

/* Custom scrollbar styles */
.accordion-container::-webkit-scrollbar {
    width: 6px;
}

.accordion-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    /* gray-100 */
    border-radius: 10px;
}

.accordion-container::-webkit-scrollbar-thumb {
    background: #a855f7;
    /* purple-500 */
    border-radius: 10px;
}

.accordion-container::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
    /* purple-600 */
}
/*home  end  */

/* Stories start here*/
.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper::after {
    content: '▼';
    /* Unicode down arrow */
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: theme('colors.white');
    /* Tailwind white */
    pointer-events: none;
    /* Make sure the arrow doesn't block clicks on select */
}

/* Hide default arrow in some browsers for better custom control */
.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* photo type  */
.gradient-border {
    background: linear-gradient(to bottom, #FF3692, #4314A3);
    padding: 2px;
    border-radius: 1rem;
}

.gradient-border-inner {
    background: white;
    border-radius: calc(1rem - 2px);
}

.gradient-text {
    background: linear-gradient(to bottom, #FF3692, #4314A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-wrapper {
    transition: all 0.3s ease;
}

.card-wrapper:hover {
    transform: translateY(-10px);
}

.card-wrapper:hover .gradient-border-inner {
    box-shadow: 0 20px 40px rgba(255, 54, 146, 0.2);
}

.card-wrapper:hover .icon-container {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 54, 146, 0.3);
}

.icon-container {
    transition: all 0.3s ease;
}
/* Stories end here*/

/* wedding films start here */
.video-overlay {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal {
    transition: opacity 0.3s ease;
}
/* wedding films end here */

/* whatapp and phone call css style start*/
.fixed-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column; 
    gap: 10px; 
}
/* whatapp and phone call css style end */