.navbar {
    background-color: #f4f4f4;
    padding: 10px 20px;
   
}



/* new css adding */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
@media (max-width: 768px) {
    .hero-text {
        font-size: 28px;
        padding: 0 10px;
    }
}
/* .check-in-btn:hover,
.btn-custom:hover,
.footer-column form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 92, 92, 0.3);
}
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-columns {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-content, .about-images {
        max-width: 100%;
    }
}
.footer-column ul li:hover {
    color: #ff5c5c;
    cursor: pointer;
}
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 20px 10px;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        width: 100%;
        padding: 20px 15px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .about-images {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .about-images img {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .carousel-dots {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 10px;
    }
} */

/* close new css */

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #ff5c5c;
    font-style: italic;
}
.nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
}
.nav-link:hover {
    color: #ff5c5c;
}
.btn-custom {
    background-color: #ff5c5c;
    color: white;
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: bold;
}
.user-icon {
    width: 40px;
    height: 40px;
    background-color: #ff5c5c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    /* background: url('../images/banner.jpg') no-repeat center center/cover; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bold;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-text {
    position: relative;
    font-size: 48px;
    font-weight: bold;
}


/* main content */
.venue-section {
    padding: 40px 20px;
}

.venue-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.venue-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.venue-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.venue-card:hover {
    transform: translateY(-5px);
}

.venue-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.venue-details {
    padding: 15px;
}

.venue-details h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.venue-details p {
    font-size: 14px;
    color: #666;
}

.check-in-btn {
    background: #ff5c5c;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.check-in-btn:hover {
    background: #e04b4b;
}


/* parties */
.services-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.services-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 220px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    border-radius: 12px;
}

.service-card p {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}



/* our services */
.services-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.services-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.service-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.service-box:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.overlay p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overlay h3 {
    font-size: 22px;
    font-weight: bold;
}



/* General styling for About Section */
.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 350px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .carousel-image {
    flex: 0 0 33.33%;
    opacity: 0.6;
    transform: scale(0.9);
    transition: transform 0.5s ease, opacity 0.5s ease;
    padding: 0 10px;
    box-sizing: border-box;
  }
  
  .carousel-image.active {
    transform: scale(1.2);
    opacity: 1;
    z-index: 2;
  }
  
  @media (max-width: 768px) {
    .carousel-image {
      flex: 0 0 100%;
      padding: 0 5px;
    }
  
    .carousel-image.active {
      transform: scale(1.05);
    }
  }
   

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-image {
    width: 20%;
    opacity: 0.5;
    transform: scale(0.8);
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin: 0 10px;
  }
  
  .carousel-image.active {
    width: 100%;
    opacity: 1;
    transform: scale(1.2);
    z-index: 2;
  }
  
  @media (max-width: 768px) {
    .carousel-wrapper {
      height: 250px;
    }
  
    .carousel-image {
      width: 15%;
      margin: 0 5px;
    }
  
    .carousel-image.active {
      width: 100%;
      transform: scale(1.1);
    }
  }
  
  #about h2 {
    font-weight: bold;
    font-size: 2rem;
  }
  
  #about p {
    font-size: 1.1rem;
    color: #555;
  }
  


/* test&footer */
.testimonials {
    text-align: center;
    background: #f6f6f6;
    padding: 50px;
}

.testimonials h2 {
    font-size: 28px;
    font-weight: bold;
}

.subheading {
    color: gray;
    margin-bottom: 20px;
}

.testimonial-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.5;
}

.quote-left, .quote-right {
    font-size: 40px;
    color: black;
    margin: 0 10px;
}

.author {
    margin-top: 20px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.navigation {
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}

.nav-arrow {
    margin: 0 20px;
}
/* footer section */

.footer {
    background-color: #aca6a6;
    padding: 40px 20px;
    font-family: sans-serif;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 300px;
    margin: 10px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: #444;
    display: block;
    margin-bottom: 8px;
}

.social-icons a {
    font-size: 22px;
    color: #ff5c5c;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff5c5c;
}

.footer-column form input,
.footer-column form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.footer-column form button {
    padding: 10px 20px;
    background-color: #ff6666;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 576px) {
    .footer-columns {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-column {
        margin: 10px 0;
    }

    .footer-column:nth-child(1),
    .footer-column:nth-child(2) {
        width: 50%;
        padding: 0 10px;
    }

    .footer-column:nth-child(3) {
        width: 100%;
        padding: 0 10px;
        margin-top: 20px;
    }
}

  
  
/* inquery form */
/* Inquiry Button Fixed on Right Side */
.inquiry-fixed-button {
    position: fixed;
    top: 70%;
    right: 0;
    background-color: #ff5c5c;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 1000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
  }
  
  .inquiry-fixed-button:hover {
    background-color: #e04e4e;
  }
  
  /* Slide-In Inquiry Form */
  .inquiry-popup {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
    z-index: 1050;
    overflow-y: auto;
  }
  
  /* When form is visible */
  .inquiry-popup.show {
    right: 0;
  }
  
  /* Inquiry Header */
  .inquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff5c5c;
    color: #fff;
    padding: 15px;
  }
  
  .inquiry-header h5 {
    margin: 0;
    font-size: 18px;
  }
  
  .inquiry-header .close-btn {
    font-size: 22px;
    cursor: pointer;
  }
  
  /* Mobile Responsive */
  @media (max-width: 576px) {
    .inquiry-fixed-button {
      font-size: 14px;
      padding: 8px 12px;
    }
  
    .inquiry-popup {
      width: 100%;
    }
  
    .inquiry-header h5 {
      font-size: 16px;
    }
  }
  

/* whatsapp chatting icon css */
/* .whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
  } */
  .service-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

#aboutCarousel .carousel-item img {
    height: 300px;         /* You can adjust this value */
    object-fit: cover;     /* This keeps the image nicely cropped */
    border-radius: 12px;   /* Optional: smooth rounded corners */
  }
  


  /* mobile view image chhota  */
  @media (max-width: 768px) {
    .hero-section {
      height: 250px; /* Reduce image section height */
    }
  
    .hero-text {
      font-size: 18px; /* Reduce text size */
      line-height: 1.4;
      padding: 10px;
    }
  
    .hero-overlay {
      background: rgba(0, 0, 0, 0.4); /* Slightly darker overlay for mobile */
    }
  }
  

  /* whatsapp chatting boat */
  /* WhatsApp Chat Style */
.v-whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999;
  }
  
  .v-chat-message {
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 12px;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    animation: fadeIn 1s ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .v-chat-icon img {
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .v-chat-icon img:hover {
    transform: scale(1.1);
  }
  
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
  }
  

  /* end */
  .v-contact-details {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  .v-contact-details i {
    color: #ff5c5c; /* WhatsApp green or any color you prefer */
    margin-right: 8px;
    min-width: 20px;
  }
  
  /* ring and aniversary */
  /* Common wrapper style for image + content block */
.party-section .row > div.col-md-6 {
    padding: 20px;
    position: relative;
    background: linear-gradient(135deg, #fff7f7, #ffeaea); /* Light pink gradient */
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  /* Gradient hover effect */
  .party-section .row > div.col-md-6:hover {
    background: linear-gradient(135deg, #ffe2e2, #ffc7c7); /* Slightly darker on hover */
    transform: scale(1.01);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }
  
  /* Add border around both image + content together (Ring Ceremony) */
  .party-section .row > div:nth-child(1):before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #ff5c5c;
    border-radius: 15px;
    z-index: -1;
  }
  
  /* Add border around both image + content together (Marriage Anniversary) */
  .party-section .row > div:nth-child(3):before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #2b9eb3;
    border-radius: 15px;
    z-index: -1;
  }
  
  /* Add spacing between the two cards */
  .party-section .row {
    row-gap: 40px;
  } 