        :root {
            --primary-color: #631212;
            --primary-hover: #631212;
            --secondary-color: #2c3e50;
            --text-dark: #333333;
            --text-light: #ffffff;
            --text-grey: #666666;
            --bg-light: #f9f9f9;
            --highlight-pink: #631212;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
            padding-top: 76px;
        }

        .text-primary-custom {
            color: var(--primary-color) !important;
        }

        .bg-primary-custom {
            background-color: var(--primary-color) !important;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            margin-bottom: 50px;
            font-weight: 700;
            position: relative;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary-color);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            margin: 10px auto 0;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: clamp(1.2rem, 4vw, 1.6rem);
        }

        .nav-link {
            font-weight: 500;
            color: var(--secondary-color);
            transition: 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }

        .navbar-toggler {
            border: none;
            padding: 0;
            font-size: 1.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .offcanvas-title {
            color: var(--primary-color);
            font-weight: 700;
        }

        .hero-section {
            height: 80vh;
            min-height: 450px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/jaya-laxmi-yatrik-bhawan.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 0 15px;
        }

        .hero-title {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            font-size: 38px;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.3rem);
            font-weight: 300;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .btn-custom {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
        }

        .btn-filled {
            background-color: var(--primary-color);
            color: #fff;
            border: 2px solid var(--primary-color);
        }

        .btn-filled:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .btn-outline:hover {
            background-color: #fff;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .reveal-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }

        .reveal-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            object-fit: cover;
            height: 100%;
            min-height: 350px;
        }

        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
            background: #fff;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }

        .card-body {
            padding: 1.5rem;
        }

        .price-tag {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
            margin: 10px 0;
        }

        .btn-gradient {
            width: 100%;
            padding: 12px;
            border: none;
            color: white;
            font-weight: 600;
            background: linear-gradient(45deg, var(--primary-color), #f1c40f);
            border-radius: 0 0 15px 15px;
            transition: opacity 0.3s;
            display: block;
            text-align: center;
            text-decoration: none;
        }

        .btn-gradient:hover {
            opacity: 0.9;
            color: white;
        }

        .amenity-box {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
            height: 100%;
            border-bottom: 3px solid transparent;
        }

        .amenity-box:hover {
            border-bottom-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .amenity-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            height: 250px;
            width: 100%;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
            color: white;
            font-size: 2rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .testimonial-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin: 10px;
            height: 100%;
        }

        .t-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--primary-color);
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background-color: rgba(212, 160, 23, 0.1);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.25);
            border-color: var(--primary-color);
        }

        .map-container {
            width: 100%;
            height: 350px;
            line-height: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .nap-section {
            background: #fff;
            padding: 60px 0;
        }

        .nap-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .nap-icon-wrapper {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #fff;
            font-size: 24px;
        }

        .nap-content h5 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.1rem;
            color: var(--secondary-color);
        }

        .nap-content p,
        .nap-content a {
            margin: 0;
            color: var(--text-grey);
            text-decoration: none;
            font-size: 1rem;
        }

        .highlight-phone {
            color: var(--highlight-pink) !important;
            font-weight: 700;
        }

        .site-footer {
            background-color: #f1f1f1;
            color: var(--secondary-color);
            padding: 25px 0;
            font-size: 0.9rem;
        }

        /* --- RADIATION ANIMATIONS --- */

        /* Gold Radiation (for Call Button) */
        @keyframes radiation-gold {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
                transform: scale(1);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
                transform: scale(1.05);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
                transform: scale(1);
            }
        }

        /* Green Radiation (for WhatsApp Button) */
        @keyframes radiation-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
                transform: scale(1);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
                transform: scale(1.05);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
                transform: scale(1);
            }
        }

        .float-btn {
            position: fixed;
            bottom: 25px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            z-index: 9999;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .float-btn:hover {
            color: #fff;
            transform: scale(1.1);
        }

        /* Applied specific animations */
        .float-call {
            background-color: var(--primary-color);
            left: 20px;
            display: none;
            animation: radiation-gold 2s infinite;
        }

        .float-wa {
            background-color: #25D366;
            right: 20px;
            animation: radiation-green 2s infinite;
        }

        @media (max-width: 767.98px) {
            .float-call {
                display: flex;
            }

            .hero-btn-container {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .hero-btn-container .btn-custom {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 575.98px) {
            .section-title {
                font-size: 1.5rem;
            }
        }


                @media (max-width: 767.98px) {
            .hero-content{
                font-size: 1.4rem !important;
            }
            }
/* ======================== About Us ======================== */


.about-content-box {
  /* Initial visible height (approx 2 paragraphs) */
  max-height: 220px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  position: relative;
}

/* Typography for the text content */
.about-content-text {
  color: #6c757d; /* Bootstrap text-muted color */
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: justify;
}

.about-content-text h5 {
  color: #333;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.about-content-text ul {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0;
  margin-bottom: 1rem;
}

.about-content-text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
}

/* Custom red bullet point */
.about-content-text ul li::before {
  content: "•";
  color: #e62e2e;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

/* The fade effect at the bottom */
.about-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}


