    :root {
      --primary: #801C4E;
      --primary-dark: #5E1239;
      --primary-soft: #A64D74;
      --secondary: #2F2A2D;
      --dark: #161417;
      --light: #FDFBF9;
      --surface: #FFF7FB;
      --text: #221D21;
      --muted: #7B7278;
      --white: #ffffff;
      --border: rgba(128, 28, 78, 0.10);
      --shadow: 0 14px 40px rgba(61, 20, 42, 0.12);
      --shadow-hover: 0 22px 50px rgba(61, 20, 42, 0.16);
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(128,28,78,0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(166,77,116,0.08), transparent 22%),
        linear-gradient(180deg, #fffdfd 0%, #fff8fb 42%, #f9f3f6 100%);
      overflow-x: hidden;
    }

    a { text-decoration: none; }

    .section-padding { padding: 90px 0; }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.9rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.15;
    }

    .section-subtitle {
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1rem;
    }

    .badge-soft {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background:#7f1e516b;
      color: #fff;
      padding: 10px 18px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.9rem;
      box-shadow: inset 0 0 0 1px rgba(128, 28, 78, 0.08);
    }

    /* Navbar */
    .navbar {
      padding: 14px 0;
      transition: all 0.35s ease;
      background: rgba(22, 20, 23, 0.35);
      backdrop-filter: blur(14px);
    }

    .navbar.scrolled {
      background: rgba(22, 20, 23, 0.94);
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
      padding: 10px 0;
    }
.navbar-brand{
        width: fit-content;
    background: white;
    padding: 10px;
    border-radius: 10px;
}
    .navbar-brand img {
      height: 50px;
      width: auto;
      display: block;
      filter: drop-shadow(0 6px 18px rgba(0,0,0,0.15));
    }

    .nav-link {
      color: rgba(255,255,255,0.90) !important;
      font-weight: 600;
      margin: 0 8px;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--primary-soft);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--primary), var(--primary-soft));
      color: #fff !important;
      padding: 12px 22px !important;
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(128,28,78,0.28);
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      color: white;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -3;
      transform: scale(1.06);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      /*background: linear-gradient(135deg, rgba(22,20,23,0.88), rgba(128,28,78,0.56));*/
      background: linear-gradient(135deg, rgb(22 20 23 / 63%), rgb(255 255 255 / 14%));
      z-index: -2;
    }

    .hero-content {
   padding-top: 140px;
    padding-bottom: 70px;
    }

    .hero h1 {
      font-size: 55px;
      font-weight: 800;
      line-height: 1.05;
      margin: 16px 0 20px;
    }

    .hero p {
      color: rgba(255,255,255,0.88);
      font-size: 1.06rem;
      line-height: 1.8;
    }

    .hero-btns .btn {
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 700;
      margin-right: 12px;
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }

    .btn-brand {
      background: linear-gradient(135deg, var(--primary), var(--primary-soft));
      color: #fff;
      border: none;
      box-shadow: 0 16px 30px rgba(128, 28, 78, 0.26);
    }

    .btn-brand:hover {
      transform: translateY(-3px);
      color: #fff;
    }

    .btn-outline-light-soft {
      border: 1px solid rgba(255,255,255,0.42);
      color: white;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
    }

    .btn-outline-light-soft:hover {
      background: rgba(255,255,255,0.18);
      color: white;
      transform: translateY(-3px);
    }

    .hero-stats {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(120px, 1fr));
      gap: 18px;
      max-width: 620px;
    }

    .stat-card {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.16);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-md);
      padding: 18px;
      transition: transform 0.3s ease;
    }

    .stat-card:hover { transform: translateY(-8px); }

    .stat-number {
      font-size: 1.65rem;
      font-weight: 800;
      color: #fff;
    }

    .stat-label {
      color: rgba(255,255,255,0.80);
      font-size: 0.93rem;
    }

    .booking-card {
      background: rgba(255,255,255,0.97);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow);
      color: var(--text);
      border: 1px solid var(--border);
    }

    .booking-card .form-label {
      font-size: 0.88rem;
      color: var(--muted);
      font-weight: 600;
    }

    .booking-card .form-control,
    .booking-card .form-select,
    textarea.form-control {
      border-radius: 14px;
      padding: 14px 16px;
      border: 1px solid #ead9e2;
      min-height: 52px;
      box-shadow: none;
    }

    .booking-card .form-control:focus,
    .booking-card .form-select:focus,
    textarea.form-control:focus {
      border-color: var(--primary-soft);
      box-shadow: 0 0 0 0.2rem rgba(128, 28, 78, 0.12);
    }

    .floating-pill {
      position: absolute;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      animation: floatY 5s ease-in-out infinite;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .pill-1 { top: 24%; right: 10%; }
    .pill-2 { bottom: 24%; right: 24%; animation-delay: 0.8s; }

    @keyframes floatY {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* Cards */
    .glass-card, .package-card, .feature-card, .testimonial-card, .blog-card, .gallery-card {
      background: rgba(255,255,255,0.98);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: all 0.35s ease;
      height: 100%;
    }

    .glass-card:hover, .package-card:hover, .feature-card:hover, .testimonial-card:hover, .blog-card:hover, .gallery-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
      background: linear-gradient(180deg, #ffffff 0%, #fff9fc 100%);
    }

    .icon-box {
      width: 72px;
      height: 72px;
      border-radius: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--primary);
      background: linear-gradient(135deg, rgba(128,28,78,0.12), rgba(166,77,116,0.12));
      box-shadow: inset 0 0 0 1px rgba(128,28,78,0.08);
    }

    .destination-card {
      position: relative;
      overflow: hidden;
      min-height: 570px;
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .destination-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .destination-card:hover img { transform: scale(1.08); }

    .destination-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(22,20,23,0.88));
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: white;
    }

    .destination-chip {
      display: inline-flex;
      align-self: flex-start;
      background: rgba(255,255,255,0.15);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.88rem;
      font-weight: 700;
      backdrop-filter: blur(10px);
      margin-bottom: 16px;
    }

    .package-card img, .blog-card img, .gallery-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-top-left-radius: var(--radius-lg);
      border-top-right-radius: var(--radius-lg);
    }

    .package-meta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .price-tag {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
    }

    .feature-card {
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: auto -50px -60px auto;
      width: 140px;
      height: 140px;
      background: radial-gradient(circle, rgba(128,28,78,0.12), transparent 72%);
      border-radius: 50%;
    }

    .offer-banner {
      border-radius: 30px;
      overflow: hidden;
      background: linear-gradient(135deg, #2B1D25, #5E1239 54%, #801C4E);
      color: white;
      position: relative;
      box-shadow: var(--shadow);
    }

    .offer-banner::after {
      content: '';
      position: absolute;
      right: -90px;
      top: -50px;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 65%);
      border-radius: 50%;
    }

    .testimonial-card {
      padding: 30px;
    }

    .stars { color: #c98aa8; }

    .avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
    }

.cta-section {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    padding: 70px 28px;
    background:#8121532e;
    box-shadow: var(--shadow);
}

    .newsletter-form .form-control {
      min-height: 56px;
      border-radius: 999px;
      padding-left: 20px;
      border: none;
      box-shadow: none;
    }

    .newsletter-form .btn {
      border-radius: 999px;
      padding: 14px 22px;
      font-weight: 700;
    }

    footer {
      background: #130E12;
      color: rgba(255,255,255,0.84);
      padding-top: 75px;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      inset: -120px auto auto -120px;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(128,28,78,0.22), transparent 70%);
      border-radius: 50%;
    }
.footer-bottom{
    padding: 15px 0px;
    border-top: 1px solid white;
    text-align: center;
}
    .footer-title {
      color: white;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .footer-link {
      color: rgba(255,255,255,0.8);
      display: inline-block;
      margin-bottom: 10px;
      transition: 0.25s ease;
    }

.footer-link:hover{
    color: var(--primary);
    padding-left: 6px;
}

.footer-link.active{
    color: var(--primary);
    font-weight: 600;
}

    .social-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.08);
      color: white;
      margin-right: 8px;
      transition: 0.3s ease;
    }

    .social-btn:hover {
      background: linear-gradient(135deg, var(--primary), var(--primary-soft));
      color: #fff;
      transform: translateY(-4px);
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.08);
      padding: 10px 15px;
      border-radius: 12px;
      margin-bottom: 12px;
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: rgba(22, 20, 23, 0.97);
        padding: 18px;
        margin-top: 16px;
        border-radius: 18px;
      }

      .hero { min-height: auto; }
      .hero-content { padding-top: 130px; }
      .hero-stats { grid-template-columns: 1fr; max-width: 100%; }
      .pill-1, .pill-2 { display: none; }
      .section-padding { padding: 72px 0; }

      .navbar-brand img {
        height: 48px;
      }
    }

    @media (max-width: 767.98px) {
      .hero h1 { font-size: 2.4rem; }
      .booking-card { padding: 22px; }
      .package-card img, .blog-card img, .gallery-card img { height: 210px; }
      .cta-section { padding: 52px 22px; }
      .navbar-brand img { height: 30px; }
      .page-hero-banner {padding: 100px 0 25px !important;}
      .badge-soft{font-size:10px;}
      .page-hero-banner h1 {font-size: clamp(2.0rem, 6vw, 2.8rem);font-weight: 800;line-height: 1.06;margin: 15px 0;}
    }



/*-----===========about page css =============------*/


/* ABOUT PAGE SPECIFIC STYLES */


.btn-brand {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(128, 28, 78, 0.24);
    transition: all 0.3s ease;
}
.home-offer-banner {
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #2B1D25, #5E1239 54%, #801C4E);
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
}

.about-feature-card {
        background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    height: 100%;
}
.section-copy {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}
.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
}

.page-hero-banner {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, rgba(22, 20, 23, 0.9), rgb(255 255 255 / 16%)), 
    url('../img/gallery/new.png') center/cover;
}

.page-hero-banner h1 {
  font-size: clamp(2.5rem, 6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.06;
  margin: 18px 0;
}

.page-hero-banner p {
  color: rgba(255,255,255,0.88);
  max-width: 700px;
  line-height: 1.9;
}

.about-feature-section .about-feature-card {
  padding: 28px;
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  height: 100%;
}

.about-feature-section .about-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.about-story-section .about-story-image {
  border-radius: 28px;
  min-height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-values-section .about-values-image {
  border-radius: 28px;
  min-height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-highlight-strip {
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 28px;
}

.about-mini-stat {
  text-align: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(128,28,78,0.05);
}

.about-mini-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
}





/*------=======packages page css start =========------*/

/* PACKAGES PAGE SPECIFIC STYLES */

.packages-grid-section .package-list-card {
  overflow: hidden;
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  height: 100%;
}

.packages-grid-section .package-list-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.packages-grid-section .package-list-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.packages-grid-section .package-list-content {
  padding: 24px;
}

.package-list-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.package-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(128,28,78,0.08);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .packages-grid-section .package-list-image { height: 210px; }
}




/*---------=============contact page css start here =============-----------*/

/* CONTACT PAGE SPECIFIC STYLES */

.contact-detail-section .contact-detail-card {
  padding: 28px;
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  height: 100%;
}

.contact-detail-section .contact-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.contact-map-frame {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-form-shell {
  background: rgba(255,255,255,0.98);
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-shell .form-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-form-shell .form-control,
.contact-form-shell .form-select,
.contact-form-shell textarea {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #ead9e2;
  min-height: 52px;
  box-shadow: none;
}

.contact-form-shell .form-control:focus,
.contact-form-shell .form-select:focus,
.contact-form-shell textarea:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 0.2rem rgba(128, 28, 78, 0.12);
}

.contact-mini-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  width: 100%;
  background: rgba(128,28,78,0.05);
  border-radius: 16px;
  color: var(--text);
}

@media (max-width: 767.98px) {
  .contact-form-shell { padding: 22px; }
}

.gallery-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    cursor:pointer;
    transition:.3s;
}

.gallery-card img:hover{
    transform:scale(1.05);
}

#galleryModal .modal-content{
    background:rgba(0,0,0,.85);
}

#galleryModal img{
    max-height:85vh;
}

#gallerypageModal img{
    max-height:85vh;
}

#prevBtn,
#nextBtn{
    width:50px;
    height:50px;
    border-radius:50%;
    font-size:24px;
    opacity:.9;
}

.navbar span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2px 15px !important;
    border-radius: 50px !important;
    background: black;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    white-space: nowrap !important;
    animation: pulseBlink 1s infinite !important;
    box-shadow: 0 0 10px rgb(0 0 0 / 60%) !important;
    border: 2px solid #fff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, .8) !important;
    cursor: pointer !important;
}
.offer-blink a{
    color: yellow !important;
} 
@keyframes pulseBlink {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 10px rgba(255,0,0,.5);
    }
    50% {
        transform: scale(1.12);
        opacity: .65;
        box-shadow: 0 0 25px rgba(255,255,0,1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 10px rgba(255,0,0,.5);
    }
}

@media (max-width:768px){
.navbar .offer-blink{
        font-size:13px !important;
        padding:6px 12px !important;
        display: none !important;
    }
    
    .experience-price{
        font-size: 12px !important;
    }
}


.ag-gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    transition: .4s ease;
    background: #fff;
}
.ag-gallery-img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.6s ease;
}

.lakshu{
    width: 100% !important; 
    height: 100% !important;
}

.ag-gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.ag-gallery-card:before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
opacity:0;
transition:.4s;
z-index:-9;
}

.ag-gallery-card:hover .ag-gallery-img{
    transform:scale(1.08);
}
.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,0) 100%);
    display:flex;
    align-items:flex-end;
    padding:18px;
    transition:.4s;
}

.gallery-content{
    width:100%;
    color:#fff;
}

.gallery-badge{
    display:inline-block;
    padding:5px 12px;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    border-radius:50px;
    font-size:12px;
    margin-bottom:10px;
    font-weight:500;
}

.gallery-content h5{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#fff;
    line-height:1.3;
}
.ag-gallery-card:hover:before{
opacity:1;
}

.ag-gallery-modal{
background:transparent;
border:none;
}

.ag-gallery-modal img{
border-radius:15px;
}

.ag-close-btn{
position:absolute;
right:15px;
top:15px;
z-index:99;
background:#fff;
}

.ag-highlight-section{
background:#faf7f8;
}

.ag-video-box{
overflow:hidden;
border-radius:20px;
box-shadow:0 15px 45px rgba(0,0,0,.12);
}

.ag-video-box video{
width:100% !important;
display:block !important;
border-radius:20px !important;
}

.ag-content-box h2{
font-size:42px;
font-weight:700;
margin:20px 0;
}

.ag-price-tag{
display:inline-block !important;
background:#5E1239 !important;
color:#fff !important;
padding:12px 28px !important;
border-radius:50px !important;
font-weight:700 !important;
font-size:24px !important;
box-shadow:0 10px 25px rgba(94,18,57,.3) !important;
margin-top: 20px !important;
}

.ag-price-tag a{
    color: white !important;
}

.ag-feature-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-top:30px;
}

.ag-feature-list div{
background:#fff;
padding:15px;
border-radius:12px;
font-weight:600;
box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.ag-feature-list i{
color:#5E1239;
margin-right:8px;
font-size:18px;
}

@media(max-width:768px){

.ag-gallery-img{
height:220px;
}

.ag-content-box h2{
font-size:30px;
}

.ag-price-tag{
font-size:20px !important;
}

.ag-feature-list{
grid-template-columns:1fr;
}

}


.experience-gallery-section{
    background:#fff;
}

.experience-badge{
    display:inline-block;
    background:#f7ede3;
    color:#8a5a1d;
    padding:8px 18px;
    border-radius:40px;
    font-weight:600;
}

.experience-heading{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.experience-copy{
    max-width:700px;
    margin:auto;
    color:#666;
}

.experience-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.experience-card:hover{
    transform:translateY(-8px);
}

.experience-img{
    width:100%;
    height:250px;
    object-fit:cover;
     object-position: top;
}

.experience-content{
    padding:20px;
    text-align:center;
}

.experience-content h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.experience-price{
    display:inline-block;
    padding:8px 18px;
    /*background:#ffefe1;*/
    /*color:#d46d00;*/
        background: #862354;
    color: #ffffff;
    border-radius:30px;
    font-weight:700;
}

.whats{
    background: #25d366!important;
    color:#fff!important;
}

.span-price{
    display: inline-block;
    padding: 5px 10px;
    background: #ffefe1;
    color: #d46d00 !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;   
}



.ag-gallery-tabs .nav-link{

    border-radius:50px;
    padding:12px 30px;
    background : black;
    color:#333;
    font-weight:600;

}

.ag-gallery-tabs .nav-link.active{
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fff !important;
    padding: 12px 22px !important;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(128, 28, 78, 0.28);

}





.ag-gallery-tabs .nav-link::after {
    display: none !important;
}

.contact-page-icon{
        color: rgb(138 41 88) !important;
            font-size: 20px;
}
.WhatsAppChat a{
     color: rgb(138 41 88) !important;
}

.gallery-title{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:12px;
    background:rgba(0,0,0,.6);
    color:#fff;
    text-align:center;
    font-weight:600;
}

.gallery-overlay{
    pointer-events: none;
}


.gallery-modal-image-wrap{
    position: relative;
    display: inline-block;
}

.gallery-modal-title{
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;

    background: rgba(0,0,0,.45);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 24px;
    font-weight: 700;

    padding: 12px 20px;
    border-radius: 12px;

    text-align: left;
    z-index: 10;
}

.gallery-modal-modal{
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(0,0,0,.55);
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-size:22px;
    font-weight:700;
    
    z-index: 10;
}

#galleryPrevBtn{
    z-index:9;
}
