@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Tangerine:wght@700&display=swap');
        
body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            margin: 0;
            padding: 0;
            background-color: #FFF5E6;
            color: #333;
            line-height: 1.6;
        }
        
        * {
            margin: 0%;
            padding: 0%;
            box-sizing: border-box;
        }
        
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Colors */
        .bg-saffron {
            background-color: #FF9933;
        }
        
        .text-saffron {
            color: #FF9933;
        }
        
        .bg-saffron-light {
            background-color: #FFF5E6;
        }
        
        .bg-white {
            background-color: #fff;
        }
        
        .text-gray-600 {
            color: #666;
        }
        
        .text-gray-700 {
            color: #444;
        }
        
        .text-gray-800 {
            color: #222;
        }
        
        .text-white {
            color: white;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            margin-top: 0;
            margin-bottom: 0.5em;
            font-weight: 700;
            line-height: 1.2;
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        h3 {
            font-size: 1.75rem;
        }
        
        p {
            margin-top: 0;
            margin-bottom: 1rem;
        }
        
        .brand-font {
            font-family: 'Tangerine', cursive;
        }
        
        /* Utilities */
        .text-center {
            text-align: center;
        }
        
        .flex {
            display: flex;
        }
        
        .flex-col {
            flex-direction: column;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .grid {
            display: grid;
        }
        
        .max-w-md {
            max-width: 28rem;
        }
        
        .max-w-xs {
            max-width: 20rem;
        }
        
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }
        
        .relative {
            position: relative;
        }
        
        .absolute {
            position: absolute;
        }
        
        .overflow-hidden {
            overflow: hidden;
        }
        
        .rounded-lg {
            border-radius: 0.5rem;
        }
        
        .rounded-full {
            border-radius: 9999px;
        }
        
        .transition {
            transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }
        
        .duration-300 {
            transition-duration: 300ms;
        }
        
        .duration-500 {
            transition-duration: 500ms;
        }
        
        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        
        .shadow-md {
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }
        
        .shadow-xl {
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }
        
        /* Components */
        .diya-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='84' height='84' viewBox='0 0 84 84' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M84 78c-14 0-14-6-28-6S42 78 28 78 14 72 0 72V0c14 0 14 6 28 6s14-6 28-6 14 6 28 6v72zm-56-42c0-2-2-2-2-4s2-2 2-4 2-2 2-4-2-2-2-4 2-2 2-4-2-2-2-4 2-2 2-4-2-2-2-4 2-2 2-4-2-2-2-4 2-2 2-4-2-2-2-4 2-2 2-4-2-2-2-4' fill='%23FF9933' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        /* Navigation */
        nav {
            background-color: white;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            position: sticky;
            top: 0;
            z-index: 50;
        }
        
        .nav-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.75rem 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .nav-logo img {
            border-radius: 40px;
            height: 2.9rem;
            width: 2.9rem;
        }
        
        .nav-logo span {
            font-family: 'Tangerine', cursive;
            font-size: 1.875rem;
            font-weight: 100;
            color: #FF9933;
        }
        
        .nav-links {
            display: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: #666;
            font-weight: 650;
            text-decoration: none;
        }
        
        .nav-links a:hover {
            color: #FF9933;
        }
        
        .nav-links a.active {
            color: #FF9933;
        }
        
        .book-now-btn {
            display: none;
            background-color: #FF9933;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            text-decoration: none;
        }
        
        .book-now-btn:hover {
            background-color: #f86729;
        }
        
        .menu-btn {
            display: block;
            color: #666;
        }
        
        .mobile-menu {
            display: none;
            background-color: rgb(252, 247, 243);
            padding: 0.75rem 1rem;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        
        .mobile-menu a {
            color: rgb(10, 10, 10);
            display: block;
            padding: 0.5rem 0;
            text-decoration: none;
        }

        .mobile-menu a:hover{
            color: #f86729;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            background-color: #fdb975;
        }
        
        .hero-content {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .hero-text {
            width: 100%;
            margin-bottom: 2.5rem;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 1rem;
        }
        
        .hero-text p {
            font-size: 1.125rem;
            color: #666;
            margin-bottom: 2rem;
        }
        
        .hero-btn-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .primary-btn, .secondary-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            text-align: center;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .primary-btn {
            background-color: #FF9933;
            color: white;
        }
        
        .primary-btn:hover {
            background-color: #eb8039;
        }
        
        .secondary-btn {
            border: 2px solid #FF9933;
            color: #080808;
            font-weight: bold;
        }
        
        .secondary-btn:hover {
            background-color: #FF9933;
            color: white;
        }
        
        .hero-image {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        .hero-image img {
            border-radius: 0.5rem;
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            width: 100%;
            max-width: 24rem;
        }
        
        .experience-badge {
            position: absolute;
            bottom: -1.25rem;
            right: -1.25rem;
            background-color: white;
            padding: 0.75rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        
        .badge-content {
            display: flex;
            align-items: center;
        }
        
        .badge-icon {
            background-color: #FFF5E6;
            padding: 0.5rem;
            border-radius: 9999px;
            margin-right: 0.75rem;
        }
        
        .badge-icon i {
            color: #FF9933;
        }
        
        /* Features Section */
        .features {
            background-color: white;
            padding: 4rem 0;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .feature-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem;
            border-radius: 0.5rem;
            background-color: #FFF5E6;
        }
        
        .feature-icon {
            background-color: #FF9933;
            color: white;
            padding: 1rem;
            border-radius: 9999px;
            margin-bottom: 1rem;
        }
        
        .feature-icon i {
            font-size: 1.5rem;
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        /* Services Section */
        .services {
            background-color: white;
            padding: 4rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 1rem;
        }
        
        .section-header span {
            color: #FF9933;
        }
        
        .section-header p {
            color: #666;
            max-width: 36rem;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .puja-card {
            background-color: white;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }
        
        .puja-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .puja-image {
            position: relative;
        }
        
        .puja-image img {
            width: 100%;
            height: 12rem;
            object-fit: cover;
        }
        
        .popular-badge {
            position: absolute;
            top: 0;
            left: 0;
            background-color: #FF9933;
            color: white;
            padding: 0.25rem 0.75rem;
            border-bottom-right-radius: 0.5rem;
        }
        
        .puja-details {
            padding: 1.5rem;
        }
        
        .puja-details h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .puja-details p {
            font-size: 0.7rem;
            color: #666;
            margin-bottom: 1rem;
        }
        #p-center{
            margin-top: 7%;
            font-size: 0.8rem;
            justify-content: center;
            text-align: center;
        }
        
        .puja-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .puja-price span {
            display: none;
            color: #FF9933;
            font-weight: 700;
        }
        
        .details-btn {
            color: #FF9933;
            border: 1px solid #FF9933;
            padding: 0.25rem 0.75rem;
            border-radius: 0.25rem;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .details-btn:hover {
            background-color: #FF9933;
            color: white;
        }
        
        /* About Section */
        .about {
            background-color: #FFF5E6;
            padding: 4rem 0;
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .about-image {
            width: 100%;
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
        }
        
        .about-image-container {
            position: relative;
        }
        
        .about-image-container img {
            width: 100%;
            max-width: 20rem;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        }
        
        .exp-badge {
            position: absolute;
            bottom: -1.25rem;
            left: -1.25rem;
            background-color: white;
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            text-align: center;
        }
        
        .exp-badge p:first-child {
            font-size: 1.5rem;
            font-weight: 700;
            color: #FF9933;
        }
        
        .exp-badge p:last-child {
            color: #666;
            font-size: 0.875rem;
        }
        
        .about-text {
            width: 100%;
        }
        
        .about-text h2 {
            font-size: 2rem;
            color: #222;
            margin-bottom: 1.5rem;
        }
        
        .about-text h2 span {
            color: #FF9933;
        }
        
        .about-text p {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .qualities-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .quality-item {
            display: flex;
            align-items: flex-start;
        }
        
        .quality-icon {
            background-color: #FF9933;
            color: white;
            padding: 0.5rem;
            border-radius: 9999px;
            margin-right: 1rem;
        }
        
        .quality-text h4 {
            font-weight: 700;
            color: #222;
            margin-bottom: 0.25rem;
        }
        
        .quality-text p {
            margin: 0;
            color: #666;
            font-size: 0.875rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: white;
            padding: 4rem 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: #FFF5E6;
            padding: 1.5rem;
            border-radius: 0.5rem;
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .testimonial-header img {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            object-fit: cover;
        }
        
        .testimonial-user {
            margin-left: 1rem;
        }
        
        .testimonial-user h4 {
            font-weight: 700;
        }
        
        .testimonial-user p {
            color: #666;
            font-size: 0.875rem;
            margin: 0;
        }
        
        .testimonial-text {
            color: #444;
            margin-bottom: 1rem;
        }
        
        .testimonial-stars {
            color: #FF9933;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: #FFF5E6;
            padding: 4rem 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            transition: box-shadow 0.3s;
        }
        
        .gallery-item:hover {
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 16rem;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        /* Booking Section */
        .booking {
            background-color: white;
            padding: 4rem 0;
        }
        
        .booking-form-container {
            max-width: 56rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .booking-form {
            background-color: rgb(233, 233, 233);;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-group label {
            display: block;
            color: #444;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .form-group input, .form-group select {
            width: 85%;
            padding: 0.5rem 1rem;
            border: 1px solid #ddd;
            border-radius: 0.375rem;
        }
        
        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #FF9933;
            box-shadow: 0 0 0 2px rgba(255, 153, 51, 0.2);
        }
        #message{
            padding: 6px;
            width: 180px;
            height: 100px;
        }
        
        .submit-btn {
            width: 85%;
            background-color: #FF9933;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.375rem;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .submit-btn:hover {
            padding: 0.70rem 1.4rem;
            border-radius: 1rem;
            background-color: #ef6c26;
        }
        
        /* Footer Section */
        .footer {
            background-color: #222;
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        
        .footer p {
            margin: 0;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: #FF9933;
        }
        
        /* Responsive Design */
        @media (min-width: 640px) {
            .hero-btn-group {
                flex-direction: row;
            }
            
            .feature-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            
        }
        
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
            
            .book-now-btn {
                display: inline-block;
            }
            
            .menu-btn {
                display: none;
            }
            
            .hero-content {
                flex-direction: row;
                padding-top: 8rem;
                padding-bottom: 8rem;
            }
            
            .hero-text {
                width: 50%;
                margin-bottom: 0;
            }
            
            .hero-image {
                width: 50%;
            }
            
            .about-content {
                flex-direction: row;
            }
            
            .about-image {
                width: 33.3333%;
                margin-bottom: 0;
            }
            
            .about-text {
                width: 66.6666%;
                padding-left: 3rem;
            }
            
            .qualities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            h1 {
                font-size: 3.5rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
            
            .hero-text h1 {
                font-size: 3.5rem;
            }
        }


          /* whatsapp */
    :root{--size:60px;--accent:#25D366}
    .wa-fab{position:fixed;right:20px;bottom:20px;width:var(--size);height:var(--size);display:grid;place-items:center;border-radius:50%;background:linear-gradient(180deg,#29c767,var(--accent));box-shadow:0 8px 18px rgba(0,0,0,.12);text-decoration:none}
    .wa-fab svg{width:60%;height:60%}

    .wa-fab a:hover{
    width: 5px;
    }

        /* footer start */

  .footer {
  background-color: #e9e9e9;
  color: #333;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer h3 {
text-decoration: underline;
  color: #4a5568;
  margin-bottom: 15px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 5px;
}
.footer p {
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-contact a {
  color: #3182ce;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-social {
  text-align: center;
  /* margin: 30px auto; */
  max-width: 1200px;
}
.footer-social a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.2s;
}
.footer-social img {
  width: 40px;
  height: 40px;
}
.footer-social a:hover img {
  transform: scale(1.1);
}

.footer-map {

  min-width: 250px;
}


.footer-bottom {
  text-align: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#topBtn{
    border: none;
    border-radius: 50px;
  width: 40px;
  height: 40px;
  background-color: #14d862;
}
#topBtn:hover{
    background-color: #01ff67;
    width: 40px;
    height: 39px;
    cursor: pointer;
}


@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer {
    padding: 20px 10px;
  }
}

.cont1{
    width: 30%;
    height: 30%;
    border: 5px solid black;

}

.img img{
    width: 30%;
    height: 30%;
    border-radius: 10px;
}