    .gallery {
      display: flex;
      gap: 10px;
      height: 500px;
      overflow: hidden;
    }


    .title_gallery{
        position: absolute;
        top: -40px;
        left: 50%;
        z-index: 0;
        width:100%;
    }

    .gallery-item {
      flex: 1;
      overflow: hidden;
      position: relative;
      transition: flex 0.5s ease-in-out;
      border-radius: 10px;
    }

    .gallery:hover .gallery-item {
      flex: 1;
    }

    .gallery:hover .gallery-item:hover {
      flex: 4;
      z-index: 2;
    }

    .gallery-item img {
      width: 100%;
      /*height: 500px;*/
      object-fit: cover;
      transition: transform 0.5s ease-in-out;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .overlay-icons {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: none;
      gap: 10px;
    }

    .gallery-item:hover .overlay-icons {
      display: flex;
    }

    .overlay-icons button {
      background: white;
      border: none;
      border-radius: 50%;
      padding: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }


/* Why Choose Us Section  */

            .section-padding {
            padding: 20px 120px;
        }

        h2.section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            padding-left: 6rem;
            /* margin-bottom: 30px; */
        }

        .section-bg {
            background-color: #F6F6F4;
        }
        
        .section-bg1 {
            background-color: #fdfdfd;
            
        }

        p {
            font-size: 1.5rem;
            line-height: 1.8;
        }


/* Image that in columns in wedding Css */

         .img-container {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 1rem;
    }

    .img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      border-radius: 10px;
      display: block;
    }

    .img-container:hover img {
      transform: scale(1.05);
    }

    .img-container .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 10px;
    }

    .img-container:hover .overlay {
      opacity: 1;
    }

    .tall-img {
      aspect-ratio: 2/3;
    }

    .half-img {
      aspect-ratio: 2/1.5;
    }

    @media (max-width: 768px) {
      .tall-img,
      .half-img {
        aspect-ratio: auto;
        height: auto;
      }

    .section-padding {
        padding: 20px 20px;
    }
    
    h2.section-title {
            padding-left: 0rem;
            /* margin-bottom: 30px; */
        }
    }


    /* YouTube Video Section CSS */
        .video-block{
            margin-bottom: 5%;
        }
        .video-container {
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 Aspect Ratio */
      overflow: hidden;
      border-radius: 10px;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }



/* Counter Animation Css with unique selector */
     .ntp-section-title {
      font-size: 2rem;
      font-weight: bold;
      letter-spacing: 1px;
      text-align: center;
    }

    .ntp-counter {
      font-size: 2.5rem;
      font-weight: 700;
      color: #6c757d;
    }

    .ntp-label {
      font-size: 0.9rem;
      text-transform: uppercase;
      color: #888;
      font-weight: 500;
    }

    .ntp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      justify-content: center;
    }

    .ntp-img-wrapper img {
      width: 100%;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .ntp-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .ntp-section-title {
        text-align: center;
      }
    }




/* Review Slider Css */
    .ts-card {
      background-color: #f76c9c;
      color: #fff;
      padding: 2rem 1.5rem 2.5rem;
      border-radius: 12px;
      text-align: center;
      position: relative;
      min-height: 280px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    }

    .ts-card.green { background-color: #77dd77; }
    .ts-card.purple { background-color: #9b59b6; }

    .ts-quote-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      display: block;
    }

    .ts-stars {
      margin-top: 1rem;
      font-size: 1.1rem;
    }

    .ts-avatar-wrapper {
      position: relative;
      margin-top: -45px;
    }

    .ts-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 4px solid white;
      object-fit: cover;
      background-color: #fff;
      margin: 0 auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .ts-name {
      margin-top: 10px;
      font-weight: bold;
      color: #000;
    }

    .swiper-pagination-bullet {
      background-color: #007bff;
    }





/* As Seen On Slider CSS */
.aso-section-title {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .aso-description {
      font-size: 1.2rem;
      color: #555;
      max-width: 700px;
      margin: auto;
    }

    .aso-slide-box {
      background: #fff;
      padding: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .aso-slide-box img {
      max-height: 60px;
      max-width: 100%;
      object-fit: contain;
    }

    .aso-pagination .swiper-pagination-bullet {
      background-color: #007bff;
    }

/* Form Section Css  */
 .contact-section {
      background: #fff;
      padding: 60px 20px;
    }

    .contact-title {
      font-size: 2rem;
      font-weight: 600;
      text-align: center;
      margin-bottom: 40px;
      letter-spacing: 1px;
    }

    .form-label {
      font-weight: 500;
    }

    .form-control,
    .form-check-input {
      border-radius: 8px;
    }

    .form-check-label {
      margin-left: 8px;
      font-weight: 400;
    }

    .contact-btn {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px 20px;
      font-weight: 600;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .contact-btn:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .form-row > .col-md-6 {
        margin-bottom: 1rem;
      }
    }



/* Fotter Section Css */
    .footer {
      background-color: #000;
      color: #fff;
      padding: 60px 20px 20px;
    }

    .footer h5 {
      font-weight: 600;
    }

    .footer a {
      color: #fff;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .footer .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      background-color: #111;
      color: #fff;
      margin-right: 10px;
      font-size: 18px;
      transition: background 0.3s;
    }

    .footer .social-icons a:hover {
      background-color: #333;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 30px;
      padding-top: 15px;
      font-size: 14px;
    }

    .footer .footer-logo {
      font-size: 24px;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .accordion-button {
      background-color: #000 !important;
      color: #fff !important;
      padding-left: 0;
    }

    @media (min-width: 768px) {
      .footer .collapse {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
      }
      .accordion-button {
        display: block;
      }
    }
    
    
    .navbar-light .navbar-toggler-icon
 {
    background-image: none !important;
}