.chakra-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

@keyframes rotateMandala{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}   

.mata{
position: absolute;
width: 230px;
height: 230px;
object-fit: cover;
border-radius: 50%;
z-index: 10;
box-shadow: 0 0 30px rgba(255, 193, 7, .7);
}
 #align{
	 
	 text-align:center;
	 color:#ff310f;
	 font-size:20px;
	 font-weight:600;
 }
 
 
 .card {
  position: relative;
  width: 599px;
  height: 325px;
  border-radius: 14px;
  z-index: 1111;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.bg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 587px;
  height: 315px;
  z-index: 2;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  outline: 2px solid white;
}

.blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 80%;
  width: 450px;
  height: 200px;
  border-radius: 50%;
  background-color: #ff0000;
  opacity: 1;
  filter: blur(13px);
  animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, 100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}


.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px 40px;

    height: 80px;
    overflow: visible;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.1);  
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 1000;
}


:root {
    --nav-gap: 40px;   
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;

    gap: var(--nav-gap);
    margin-left: auto;
    margin-right: 30px;
}


.nav-links a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;   
    position: relative;
    padding-bottom: 6px;
}


.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0%;
    height: 2px;

    border-bottom: 2px dotted #610202; 
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #fce0aa;
}


.banner {
    height: 100vh;
 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.banner h1 {
    font-size: 45px;
    background: rgba(0,0,0,0.5);
    padding: 12px 25px;
    border-radius: 10px;
}

@media(max-width:768px){
    .dot-square {
        display: block;
    }
}

.dot-square span {
    width: 6px;
    height: 6px;
    background: rgb(97, 4, 4);
    border-radius: 50%;
    position: absolute;
}
.dot-square {
    display: none;
    width: 30px;
    height: 30px;
    position: absolute;

    right: 20px;   
    top: 25px;    

    cursor: pointer;
    z-index: 2000;
}

.dot-square span:nth-child(1) { top: 0; left: 0; }
.dot-square span:nth-child(2) { top: 0; right: 0; }
.dot-square span:nth-child(3) { bottom: 0; left: 0; }
.dot-square span:nth-child(4) { bottom: 0; right: 0; }
.dot-square span:nth-child(5) { top: 0; left: 50%; transform: translateX(-50%); }
.dot-square span:nth-child(6) { bottom: 0; left: 50%; transform: translateX(-50%); }
.dot-square span:nth-child(7) { left: 0; top: 50%; transform: translateY(-50%); }
.dot-square span:nth-child(8) { right: 0; top: 50%; transform: translateY(-50%); }

@media(max-width:768px){

    .dot-square {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;

        background: rgb(255, 255, 255);
        flex-direction: column;
        text-align: center;

        display: none;
        gap: 10px;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }
}


.logo{
    display: flex;
    align-items: center;
}


.logo-img{
    margin-right: 12px;  
}

.logo-img img{
    width: 65px;
    height: 65px;
    object-fit: contain;
    display: block;
}


.logo-text h2{
    margin: 0;
   font-size: 24px;
    padding-top: 21px;
    font-family: "Bodoni MT", serif;
    font-weight: 700;
    line-height: 3.2;

    background: linear-gradient(90deg, #fd1d1d, #9d074d);
    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    display: inline-block;
}

.logo-text p{
    margin: 4px 0 0;
    font-size: 13px;
    color: #7b1e1e;
    font-weight: 600;
    letter-spacing: 1px;
}
.logo-img{
    margin-right:20px;
    margin-left:5px;
    margin-top:3px;
}

.navbar {
    position: fixed;
    z-index: 1000;
}
.banner-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 60px;
    height: 100vh;
       background: linear-gradient(135deg, #fedd05, #ff1111);
}


.banner-left {
    max-width: 50%;
}


.upasak-btn {
    padding: 6px 16px;
    background: white;
    border-radius: 20px;
    border: none;
    font-size: 13px;
    font-weight: bold;
    color: #8b4500;
    margin-bottom: 15px;
}
.pandit-name {
    font-size: 40px;
    color: #fc0f2f;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}


.pandit-desc {
    font-size: 17px;
    color: #fffbfb;
    text-align: justify;
    font-weight: 550;
    margin-bottom: 20px;
}


.contact-box {
    background: white;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;

    animation: pulse 2s infinite;
}


@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.05);}
    100% {transform: scale(1);}
}


.book-btn-banner {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;

  
}

.book-btn-banner::after {
    content: "Book Now";
    display: inline-block;
       background: linear-gradient(45deg, #f84949, #ff0033);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
}


.banner-right {
    width: 45%;   
    display: flex;
    justify-content: center;
    margin-top: 40px;   
}

.banner-right video {
    width: 300px;
    height: 450px;   
    object-fit: cover;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


@media(max-width: 768px){
    .banner-new {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .banner-left {
        max-width: 100%;
    }

    .banner-right {
        margin-top: 20px;
    }
}
.about-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:60px 8%;
    background:#fff;
    flex-wrap:wrap;
}
/* Pandit Name */

.pandit-name{
    display:inline-block;
    margin-bottom:10px;

    font-size:20px;
    font-weight:700;
    font-family:"Poppins", sans-serif;

    color:#9d074d;

    text-transform:uppercase;
    letter-spacing:1px;

    position:relative;
}

.pandit-name::before{
    content:"";
    margin-right:8px;
}



/* Heading */

.about-heading{
    font-family:"Bodoni MT", serif;
    font-size:40px;
    line-height:1.3;
    color:#b71c1c;
    margin-bottom:20px;
}
/* Image Box */
.about-image{
    position:relative;
    width:360px;
    flex-shrink:0;
}

/* Main Image */
.main-img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:22px;
    display:block;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* Small Image */
.small-img{
    position:absolute;
    width:170px;
    height:170px;
    object-fit:cover;
    right:-20px;
    bottom:-20px;
    border-radius:20px;
    border:6px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
}

/* Content */
.about-content{
    flex:1;
    max-width:550px;
}


.about-content p{
    font-size:16px;
    line-height:28px;
    color:#444;
    margin-bottom:16px;
    text-align:justify;
}

@media(max-width:768px){

.about-section{
    padding:50px 20px;
    gap:40px;
}

.about-image{
    width:300px;
    margin:auto;
}

.main-img{
    height:380px;
}

.small-img{
    width:120px;
    height:120px;
    right:-10px;
    bottom:-10px;
}

.about-heading{
    font-size:28px;
    text-align:center;
}

.about-content p{
    text-align:left;
    font-size:15px;
    line-height:26px;
}

}
.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    margin-top:15px;
    padding:13px 32px;

    background:linear-gradient(135deg,#b71c1c,#f57c00,#ffca28);
    color:#fff;

    text-decoration:none;
    font-size:16px;
    font-weight:600;
    font-family:"Poppins",sans-serif;

    border-radius:50px;
    border:none;

    box-shadow:0 10px 25px rgba(183,28,28,.25);

    transition:all .4s ease;
}

.about-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 16px 35px rgba(183,28,28,.35);

    background:linear-gradient(135deg,#9b1d20,#e65100,#ffb300);
}

.about-btn:active{

    transform:scale(.97);
}
.anushthan-section{
    padding: 25px 50px;
    background: linear-gradient(135deg,#fff8ee,#fdebd0);
    text-align: center;
}

.anushthan-title{
    font-size: 40px;
    color: #ff2310;
    margin-bottom: 50px;
    font-weight: bold;
}


.anushthan-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


.anushthan-card{
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    padding: 3px;
    z-index: 1;

    transition: 0.4s ease;
}


.anushthan-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;

    background: linear-gradient(
        90deg,
        #ff7300,
        #fffb00,
        #e89d5f,
        #f82f53,
        #f4ad2a,
        #6e0202,
        #ff0000
    );

    background-size: 400%;
    animation: glowing 6s linear infinite;

    z-index: -2;
}


.anushthan-card::after{
    content: "";
    position: absolute;
    inset: 4px;
    background: rgb(255, 228, 177);
    border-radius: 18px;
    z-index: -1;
}

.anushthan-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}


.anushthan-card img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

.anushthan-content{
    padding: 20px;
}

.anushthan-content h3{
       color: #f77d09;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 800;
}

.anushthan-content p{
    color: #080606;
    margin-bottom: 15px;
    font-size: 15px;
	text-align:justify;
}


.read-btn{
    padding: 10px 22px;
    border: none;
    border-radius: 30px;
    cursor: pointer;

    color: white;
    font-weight: bold;

    background: linear-gradient(
        169deg,
        rgb(198, 31, 1) 20%,
        rgb(168, 1, 51) 32%
    );

    transition: 0.4s ease;
}

.read-btn:hover{
    transform: scale(1.05);

    background: linear-gradient(
        169deg,
        rgb(214, 6, 72) 0%,
        rgb(209, 9, 9) 15%
    );
}


@keyframes glowing{
    0%{
        background-position: 0 0;
    }

    100%{
        background-position: 400% 0;
    }
}


@media(max-width:992px){

    .anushthan-container{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px){

    .anushthan-section{
        padding: 70px 20px;
    }

    .anushthan-container{
        grid-template-columns: 1fr;
    }

    .anushthan-title{
        font-size: 30px;
    }
}


/*================ MODAL ================*/

.custom-modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.75);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.4s;

    z-index:99999;
}

.custom-modal.show{

    opacity:1;
    visibility:visible;
}

.modal-box{

    width:800px;
    max-width:100%;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    transform:scale(.8);

    transition:.4s;

    animation:none;
}

.custom-modal.show .modal-box{

    transform:scale(1);
}

.modal-box img{

    width:100%;
    height:300px;
    object-fit:cover;
}

.modal-box h2{

    text-align:center;

    margin:20px 20px 5px;

    color:#ff0101;
}

.modal-box h5{

    text-align:center;

    color:#777;

    margin-bottom:20px;
}

.modal-box p{

    padding:0 30px;

    line-height:30px;

    color:#444;

    text-align:justify;
}

.modal-call-btn{

    display:table;

    margin:30px auto;

    background:#b40000;

    color:#fff;

    padding:14px 30px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;
}

.modal-call-btn:hover{

    background:#850000;

    color:#fff;
}

.close-modal{

    position:absolute;

    right:18px;

    top:12px;

    font-size:38px;

    color:#fff;

    cursor:pointer;

    z-index:2;
}

@media(max-width:768px){

.modal-box img{

height:220px;

}

.modal-box p{

padding:0 20px;

font-size:15px;

line-height:28px;

}

}
.why-section {
    padding: 100px 50px;
   
    text-align: center;
}


.why-title {
    font-size: 36px;
    font-family:  'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 50px;
}


.why-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}


.why-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s ease;
}


.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    padding: 20px;
    text-align: center;

    
    backdrop-filter: blur(8px);           
    -webkit-backdrop-filter: blur(8px);

    color: #f2f2f2; /* temple vibe text */

    transform: translateY(100%);
    transition: 0.4s ease;
}


.why-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.8); 
}

.why-card:hover .overlay {
    transform: translateY(0%);
}


.overlay h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color:rgb(51, 22, 22);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.overlay p {
    font-size: 14px;
    color:white;
}


@media(max-width: 992px){
    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .why-container {
        grid-template-columns: 1fr;
    }
}


.why-section {
    position: relative;
    padding: 100px 50px;
    text-align: center;
    overflow: hidden;
}


.why-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: -1;
}


.why-title,
.why-container {
    position: relative;
    z-index: 2;
}

.testimonial-section {
    padding: 100px 50px;
    text-align: center;
    background: linear-gradient(135deg, #ebdfcd, #fff8ee);
}


.testimonial-title {
    font-size: 36px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 10px;
}


.testimonial-subtitle {
    font-size: 15px;
    color: #474542;
    margin-bottom: 50px;
   font-weight: bold;
    font-family: Bahnschrift;
}


.testimonial-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);

    transition: 0.4s ease;
}


.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(216, 163, 116, 0.4);
}


.review {
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
	text-align:justify;
    font-family: 'Poppins', sans-serif;
}

.stars {
    font-size: 18px;
    margin-bottom: 10px;
}


.testimonial-card h4 {
    margin: 5px 0;
    font-size: 16px;
    color: #ff0000;
    font-family: 'Playfair Display', serif;
}


.testimonial-card span {
    font-size: 13px;
    color: #777;
}


@media(max-width: 992px){
    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px){
    .testimonial-container {
        grid-template-columns: 1fr;
    }
}

.gallery-section {
    padding: 100px 40px;
    text-align: center;
    background:#fee8bc;
}


.gallery-title {
    font-size: 36px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #ff0000;
}

.gallery-subtitle {
    color: #555;
    font-weight: bold;
    margin-bottom: 40px;
}


.gallery-wrapper {
    position: relative;
}


.gallery-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}


.gallery-container img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}


.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: linear-gradient(45deg, #ff3c00, #ff8c00);
    color: white;

    padding: 10px;
    border-radius: 50%;
    font-size: 20px;

    cursor: pointer;
    z-index: 10;
}


.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}


.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;

    border: none;
    outline: none;

    border-radius: 25px;

    background: rgba(255,255,255,0.15); /* 👈 transparent */
    color: rgb(59, 38, 38);
}






.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;

    border-radius: 30px;
    border: 1px solid rgba(160, 125, 11, 0.3);

   
    background: rgb(180 142 81 / 10%);
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #462a14;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}
form select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.1); /* glass effect */
    color: white; /* selected text color */

    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
form select option {
    background: #f4dca4;
   
    backdrop-filter: blur(3px);
   
    color: rgb(52, 39, 39);       
}
form select:focus {
    border: 1px solid #ffd700;
}
form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

   
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}
form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(150, 78, 78);
    padding: 10px;
    outline: none;
    backdrop-filter: blur(5px);
}
form select:focus,
form input:focus {
    border: 1px solid #ffd700; 
}




.contact-form-section{
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}


.bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}


.contact-form-section::before{
    content:"";
    position:absolute;
    inset:0;
    
    z-index:1;
}


.form-container{
    position:relative;
    z-index:2;

    width: 500px;
    max-width: 90%;
    padding: 40px 45px;  


    border-radius:20px;

 
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(6px);

    border:1px solid rgba(255,255,255,0.2);

    box-shadow:0 10px 30px rgba(0,0,0,0.3);

    text-align:center;
}


.form-container h2{
    color:#462121;
    margin-bottom:10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.form-container p{
    color:#2e1c1c;
    font-size:14px;
    margin-bottom:20px;
    font-family: Bahnschrift;
}


.form-container input,
.form-container textarea{
    width:100%;
    padding:12px;
    margin-bottom:12px;

    border:none;
    outline:none;
    border-radius:25px;

    background:rgba(133, 131, 131, 0.2);
    color:#673737;

    font-size:14px;
}


.form-container input::placeholder,
.form-container textarea::placeholder{
    color:#937547;
}

.form-container button{
    width:100%;
    padding:12px;

    border:none;
    border-radius:25px;

    background:linear-gradient(45deg,#583402,#fdcc81);
    color:#fffefe;

    font-weight:bold;
    cursor:pointer;

    transition:0.3s;
}

.form-container button:hover{
    transform:scale(1.05);
}

@media(max-width:768px){
    .form-container{
        width:90%;
        padding:25px;
    }
}



.footer {
    position: relative;
    overflow: hidden;

    background: #fffaf0;

    padding: 70px 60px 20px;
    color: #2b1b0f;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;

     background: linear-gradient(45deg, red, orange, yellow, red);
    background-size: 400%;

    animation: borderMove 10s linear infinite;

    z-index: 0;
    opacity: 0.25; 

}
.footer::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at center, rgba(255,140,0,0.3), transparent 70%);
    z-index: 0;
}


.footer-container,
.footer-divider,
.footer-bottom {
    position: relative;
    z-index: 1;
}


.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}


.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-title img {
    width: 50px;
}

.footer-logo-title h3 {
    font-size: 22px;
    font-family: Aparajita;
    font-weight: bold;
}


.footer-col p {
    font-size: 16px;
    margin: 11px 0;
    line-height: 1.6;
    font-family: Bahnschrift;

}
.footer-col h3{

    font-family: Garamond;
	font-weight: 700;
}


.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-family: Bahnschrift;
}

.footer-col ul li:hover {
    transform: translateX(5px);
    color: #7a4a00;
}

.footer-col i {
    margin-right: 10px;
}

.footer-social i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-social i:hover {
    transform: scale(1.2);
}


.subscribe-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-top: 10px;

    background: rgba(212, 205, 205, 0.3);
    color: white;
}



.subscribe-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 8px;
    border: none;

    background: linear-gradient(45deg, #e9653d, #ffc889);
    color: white;
    font-weight: bold;

    cursor: pointer;
}


.footer-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.footer-divider::before,
.footer-divider::after {
    content: "";
    height: 1px;
    width: 40%;
    background: #583c04;
    position: absolute;
    top: 50%;
}

.footer-divider::before { left: 0; }
.footer-divider::after { right: 0; }

.footer-divider span {
    font-size: 20px;
    color: #4d3603;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom p {
    color: #4d3603;
    font-family: Bahnschrift;
}

.footer-links a {
    margin-left: 15px;
    text-decoration: none;
    color: #7a4a00;
}


@media(max-width:768px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}


@keyframes borderMove {
    0% {background-position: 0%;}
    100% {background-position: 400%;}
}
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 60px;
    height: 60px;
    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 28px;
    color: white;

    z-index: 9999;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #50ce82;
}


.call-now-btn{
    position:fixed;
    left:20px;
    bottom:25px;
font-size: larger;
    background:linear-gradient(123deg,#fff 0%,#08e343 100%);
    color:#131313;

    padding:24px 24px;
    border-radius:100px;

    text-decoration:none;
    font-weight:600;

    display:flex;
    align-items:center;
    gap:10px;

    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
    transition:.3s;
}

.call-now-btn:hover{
    color:#000;
    transform:translateY(-3px);
}

.fade-up-image{
    width:400px;
    max-width:90%;
    opacity:0;
    transform:translateY(50px);
    animation:fadeUp 1.2s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.footer-whatsapp {
	position: fixed;
	z-index:999;
	bottom:80px;
	right:5px;
	display:block;
}
.footer-whatsapp  a{
background:transparent;
}
.footer-call  {
 position: fixed;
	z-index:999;
	bottom:80px;
	left:5px;
	display:block;
}
.footer-call  a{
background:transparent;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px 40px;

    height: 80px;
    overflow: visible;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.1);  
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 1000;
}


:root {
    --nav-gap: 40px;   
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;

    gap: var(--nav-gap);
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    text-decoration: none;
    color: rgb(101, 0, 0);
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 20px;   
    position: relative;
    padding-bottom: 6px;
}


.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0%;
    height: 2px;

    border-bottom: 2px dotted #db7211; 
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #561801;
}
.logo{
    display: flex;
    align-items: center;
}

.logo-text p{
    margin: 4px 0 0;
    font-size: 13px;
    color: #7b1e1e;
    font-weight: 600;
    letter-spacing: 1px;
}
.logo-img{
   
    margin-left:-25px;
   
}

.banner {
    height: 100vh;
 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.banner h1 {
    font-size: 45px;
    background: rgba(0,0,0,0.5);
    padding: 12px 25px;
    border-radius: 10px;
}

@media(max-width:768px){
    .dot-square {
        display: block;
    }
}

.dot-square span {
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
    position: absolute;
}
.dot-square {
    display: none;
    width: 30px;
    height: 30px;
    position: absolute;

    right: 20px;   
    top: 25px;     

    cursor: pointer;
    z-index: 2000;
}


.dot-square span:nth-child(1) { top: 0; left: 0; }
.dot-square span:nth-child(2) { top: 0; right: 0; }
.dot-square span:nth-child(3) { bottom: 0; left: 0; }
.dot-square span:nth-child(4) { bottom: 0; right: 0; }
.dot-square span:nth-child(5) { top: 0; left: 50%; transform: translateX(-50%); }
.dot-square span:nth-child(6) { bottom: 0; left: 50%; transform: translateX(-50%); }
.dot-square span:nth-child(7) { left: 0; top: 50%; transform: translateY(-50%); }
.dot-square span:nth-child(8) { right: 0; top: 50%; transform: translateY(-50%); }


@media(max-width:768px){

    .dot-square {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;

        background: rgba(250, 244, 244, 0.9);
        flex-direction: column;
        text-align: center;

        display: none;
        gap: 10px;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }
}


.logo img {
  
    height: 150px;   
    width: 100px;
}
.logo {
    position: absolute;
    top: -20px;   
    left: 40px;
    z-index: 2000;
}

.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;  
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 45px;
    background: rgba(0,0,0,0.4);
    padding: 12px 25px;
    border-radius: 10px;
}
.navbar {
    position: fixed;
    z-index: 1000;
}
.about-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 10%;
    gap:50px;
    background:#fffaf0;
}


.about-images{
    position:relative;
    width:50%;
    height:450px;
}


.img-box{
    position:absolute;
    width:100%;
    height:400px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.img1{ top:0; left:0; }
.img2{ top:0; right:0; }
.img3{ bottom:0; left:0; }
.img4{ bottom:0; right:0; }


.about-content{
    width:50%;
}

.about-content h2{
    font-size:32px;
    margin-bottom:20px;
    color:#ff2310;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	font-weight:700;
}

.about-content p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
    color:#080505;
	font-weight:600;
    font-family: Bahnschrift;
}


@media(max-width:900px){
    .about-section{
        flex-direction:column;
        text-align:center;
    }

    .about-images,
    .about-content{
        width:100%;
    }

    .about-images{
        height:400px;
    }
}
.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: all 0.4s ease;  
}


.img-box:hover img{
    transform: scale(1.1);
}
.temple-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:80px 10%;
    background:linear-gradient(135deg,#ffcc00,#ff9900);
}


.temple-text{
    width:50%;
}

.title{
    font-size:34px;
    font-weight:700;
    color:#e10e31;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom:15px;
}


.title span{
    position:relative;
    color:#321f02;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.title span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:3px;
    background:#ff9900;
    transition:0.5s;
}

.title:hover span::after{
    width:100%;
}


.temple-text p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
    color:#4f2929;
    font-family: Bahnschrift;
}

.spiritual-list{
    list-style:none;
    padding:0;
}

.spiritual-list li{
    position:relative;
    padding-left:30px;
    margin-bottom:12px;
    font-size:15px;
    color:#543030;
    font-family: Bahnschrift;
}


.spiritual-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:7px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:linear-gradient(45deg,#a00202,#facd8a);
    box-shadow:0 0 8px rgba(255,153,0,0.5);
}

.video-border{
    position: relative;
    padding: 6px;
    border-radius: 18px;
    background: #111; 
    overflow: hidden;
}


.video-border::before{
    content:"";
    position:absolute;
    top:-3px;
    left:-3px;
    right:-3px;
    bottom:-3px;
    z-index:0;

    background: linear-gradient(45deg,#ffe478,#ff3939,#ffd453,#b10440);
    background-size: 300% 300%;
    animation: borderGlow 4s linear infinite;

    border-radius: 28px;
}


.video-border video{
    position: relative;
    z-index: 1;
    width:100%;
    height:420px;
    border-radius:12px;
    object-fit:cover;
}


@keyframes borderGlow{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
}


@media(max-width:900px){
    .temple-section{
        flex-direction:column;
        text-align:center;
    }

    .temple-text,
    .video-box{
        width:100%;
    }

    .video-border video{
        height:300px;
    }

    .spiritual-list li{
        text-align:left;
        display:inline-block;
    }
}
.stats-section{
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:80px 10%;
    background:linear-gradient(135deg,#fdfdfd,#fff);
    text-align:center;
}

.stat-box h2{
    font-size:50px;
    color:#b8860b;
    margin-bottom:10px;
}

.stat-box p{
    font-size:16px;
    color:#333;
    font-family: Bahnschrift;

}

@media(max-width:768px){
    .stats-section{
        flex-direction:column;
        gap:30px;
    }
}

.footer {
    position: relative;
    overflow: hidden;

    
    background: #fffaf0;

    padding: 70px 60px 20px;
    color: #2b1b0f;
}


.footer::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(45deg, red, orange, yellow, red);
    background-size: 400%;

    animation: borderMove 10s linear infinite;

    z-index: 0;
    opacity: 0.25; 
}


.footer::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(circle at center, rgba(255,140,0,0.3), transparent 70%);
    z-index: 0;
}


.footer-container,
.footer-divider,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}


.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-title img {
    width: 50px;
}

.footer-logo-title h3 {
    font-size: 22px;
    font-family: Aparajita;
    font-weight: bold;
}


.footer-col p {
    font-size: 14px;
    margin: 15px 0;
    line-height: 1.6;
    font-family: Bahnschrift;

}
.footer-col h3{

    font-family: Garamond;
}


.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-family: Bahnschrift;
}

.footer-col ul li:hover {
    transform: translateX(5px);
    color: #7a4a00;
}


.footer-col i {
    margin-right: 10px;
}


.footer-social i {
    font-size:28px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-social i:hover {
    transform: scale(1.2);
}


.subscribe-input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-top: 10px;

    background: rgba(212, 205, 205, 0.3);
    color: white;
}


.subscribe-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 8px;
    border: none;

    background: linear-gradient(45deg, #e9653d, #ffc889);
    color: white;
    font-weight: bold;

    cursor: pointer;
}


.footer-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.footer-divider::before,
.footer-divider::after {
    content: "";
    height: 1px;
    width: 40%;
    background: #583c04;
    position: absolute;
    top: 50%;
}

.footer-divider::before { left: 0; }
.footer-divider::after { right: 0; }

.footer-divider span {
    font-size: 20px;
    color: #4d3603;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-bottom p {
    color: #4d3603;
    font-family: Bahnschrift;
}

.footer-links a {
    margin-left: 15px;
    text-decoration: none;
    color: #7a4a00;
}


@media(max-width:768px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@keyframes borderMove {
    0% {background-position: 0%;}
    100% {background-position: 400%;}
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 60px;
    height: 60px;
    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 28px;
    color: white;

    z-index: 9999;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #50ce82;
}


.call-now-btn{
    position:fixed;
    left:20px;
    bottom:25px;
font-size: larger;
    background:linear-gradient(123deg,#fff 0%,#08e343 100%);
    color:#131313;

    padding:24px 24px;
    border-radius:100px;

    text-decoration:none;
    font-weight:600;

    display:flex;
    align-items:center;
    gap:10px;

    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
    transition:.3s;
}

.call-now-btn:hover{
    color:#000;
    transform:translateY(-3px);
}



.trust-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
   
    z-index:0;
}


.trust-box{
    position:relative;
    z-index:1;
    max-width:700px;
    text-align:center;
    background:rgba(255,255,255,0.9); /* 👈 slight transparent */
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}




.trust-box h3{
    font-size:26px;
    color:#b8860b;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom:15px;
}

.trust-box p{
    font-size:15px;
    line-height:1.7;
    font-family: Bahnschrift;
    color:#333;
    margin-bottom:20px;
}


.trust-points{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.point{
    background:#fff5d6;
    padding:10px 18px;
    border-radius:25px;
    font-size:14px;
    color:#b8860b;
    font-weight:500;
    font-family: Bahnschrift;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}


.point:hover{
    background:#ffcc00;
    color:#fff;
}


@media(max-width:600px){
    .trust-box{
        padding:25px;
    }
}

.select-section{
    padding:80px 10%;
    text-align:center;
    background:#fffaf0;
}

.select-section h2{
    font-size:32px;
    color:#926a04;
    margin-bottom:40px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}


.card{
    cursor:pointer;
    position:relative;
}

.card input{
    display:none;
}


.card-content{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    transition:0.3s;
    border:2px solid transparent;
}


.icon{
    font-size:40px;
    margin-bottom:10px;
    color:#ff9900; 
}


.card:hover .card-content{
    transform:translateY(-5px);
}


.card input:checked + .card-content{
    border:2px solid #ff9900;
    background:#fff5d6;
}


.card-content h3{
    font-size:18px;
    margin-bottom:10px;
    color:#b8860b;
  font-family:Bahnschrift ;
    
}

.card-content p{
    font-size:14px;
    color:#333;
    font-family: Bahnschrift;
}







.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;

    border-radius: 30px;
    border: 1px solid rgba(160, 125, 11, 0.3);

    background: rgb(180 142 81 / 10%);

   
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #644c05;
    font-size: 14px;

    outline: none;
    transition: 0.3s;
}

form select option {
    background: #f4dca4;
      
    backdrop-filter: blur(3px);
   
    color: rgb(52, 39, 39);     
}
form select:focus {
    border: 1px solid #ffd700;
}
form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}
form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(150, 78, 78);
    padding: 10px;
    outline: none;
    backdrop-filter: blur(5px);
}
form select:focus,
form input:focus {
    border: 1px solid #ffd700; 
}
.contact-form-section{
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.form-container{
    position:relative;
    z-index:2;
    width:500px;
    max-width:90%;
    padding:40px 45px;
    border-radius:20px;

    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);

    border:1px solid rgba(255,255,255,0.2);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);

    text-align:center;
}

.form-container h2{
    color:#462121;
    margin-bottom:10px;
}

.form-container p{
    color:#2e1c1c;
    font-size:14px;
    margin-bottom:20px;
}

.form-container input,
.form-container select{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:none;
    outline:none;
    border-radius:25px;

    background:rgba(133,131,131,0.2);
    color:#673737;
}

.form-container button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:25px;

    background:linear-gradient(45deg,#583402,#fdcc81);
    color:rgb(254, 246, 246);
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.form-container button:hover{
    transform:scale(1.05);
}

.map-section{
    padding:80px 10%;
    text-align:center;
    background:#fffaf0;
}

.map-section h2{
    font-size:32px;
    color:#d00c06;
    margin-bottom:10px;
    font-family: Georgia, serif;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.map-section p{
    color:#555;
    margin-bottom:30px;
    font-family: Bahnschrift;
}


.map-container{
    width:100%;
    height:400px;

    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}


.map-container iframe{
    width:100%;
    height:100%;
    border:0;
}


@media(max-width:768px){
    .map-container{
        height:300px;
    }
}
.trust-line{
    padding:40px 10%;
    text-align:center;

    background:linear-gradient(100deg,#fffaf0,#fff3d6,#fffaf0);
}

.trust-line p{
    font-size:18px;
    color:#a00101;
    font-family: Georgia, serif;

    max-width:700px;
    margin:auto;

    line-height:1.6;
}
.divider{
    font-size:24px;
    color:#a80505;
    margin-bottom:10px;
}




.contact-cards{
    padding:80px 10%;
    text-align:center;
    background:#fffaf0;
}


.contact-cards h2{
    font-size:32px;
    color:#ba0404;
    margin-bottom:40px;
    font-family: Georgia, serif;
}


.cards-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}


.contact-card{
    text-decoration:none;
    background:#fff;
    padding:30px 20px;
    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,0.1);

    transition:0.3s;
    color:#333;

    position:relative;
    overflow:hidden;
    z-index:1;
}


.contact-card .icon{
    font-size:35px;
    margin-bottom:10px;
    color:#ff9900;
}


.contact-card h3{
    font-size:18px;
    margin-bottom:8px;
    color:#c70303;
    font-family: Bahnschrift;
}


.contact-card p{
    font-size:14px;
    color:#555;
    font-family: Bahnschrift;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,165,0,0.3);
}


.contact-card::before{
    content:"";
    position:absolute;
    top:-2px;
    left:-2px;
    right:-2px;
    bottom:-2px;

    border-radius:18px;
    background:linear-gradient(45deg,#ffcc00,#ff9900,#ffd700);

    z-index:-1;
    opacity:0;
    transition:0.3s;
}


.contact-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:#fff;
    border-radius:15px;
    z-index:-1;
}


.contact-card:hover::before{
    opacity:1;
}


@media(max-width:768px){
    .contact-cards{
        padding:60px 20px;
    }
}




.contact-form-section{
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}


.bg-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}


.contact-form-section::before{
    content:"";
    position:absolute;
    inset:0;
    
    z-index:1;
}


.form-container{
    position:relative;
    z-index:2;

    width:350px;
    padding:35px;

    border-radius:20px;

  
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(3px);
    -webkit-backdrop-filter:blur(6px);

    border:1px solid rgba(255,255,255,0.2);

    box-shadow:0 10px 30px rgba(0,0,0,0.3);

    text-align:center;
}


.form-container h2{
    color:#cb9707;
    margin-bottom:10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.form-container p{
    color:#2e1c1c;
    font-size:14px;
    margin-bottom:20px;
    font-family: Bahnschrift;
}


.form-container input,
.form-container textarea{
    width:100%;
    padding:12px;
    margin-bottom:12px;

    border:none;
    outline:none;
    border-radius:25px;

    background:rgba(133, 131, 131, 0.2);
    color:#673737;

    font-size:14px;
}


.form-container input::placeholder,
.form-container textarea::placeholder{
    color:#937547;
}

.form-container button{
    width:100%;
    padding:12px;

    border:none;
    border-radius:25px;

    background:linear-gradient(45deg,#583402,#fdcc81);
    color:#fffefe;

    font-weight:bold;
    cursor:pointer;

    transition:0.3s;
}

.form-container button:hover{
    transform:scale(1.05);
}

@media(max-width:768px){
    .form-container{
        width:90%;
        padding:25px;
    }
}



.process-section{
    padding:100px 10%;
    text-align:center;
    background:#fffaf0;
    position:relative;
    overflow:hidden;
}

.process-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(45deg,#ffcc00,#ff9900,#ffd700);
    background-size:400%;
    animation:moveBg 10s linear infinite;
    opacity:0.1;
    z-index:0;
}

@keyframes moveBg{
    0%{background-position:0%;}
    100%{background-position:400%;}
}

.process-title{
    font-size:36px;
    color:#8b0000;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight:bold;
    position:relative;
    z-index:1;
}

.process-subtitle{
    font-size:18px;
    color:#555;
    margin-bottom:50px;
    position:relative;
    z-index:1;
    font-family: Bahnschrift;
}


.process-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:1;
}

.process-step{
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s;
    position:relative;
}


.step-number{
    width:50px;
    height:50px;
    background:linear-gradient(45deg,#ff9900,#ffd700);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:bold;
    margin:0 auto 15px;
}

.process-step h3{
    font-size:18px;
    color:#b8860b;
    margin-bottom:10px;
     font-family: 'Times New Roman', Times, serif;
}

.process-step p{
    font-size:14px;
    color:#444;
     font-family: Bahnschrift;
}


.process-step:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(255,165,0,0.3);
}


@media(max-width:992px){
    .process-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .process-container{
        grid-template-columns:1fr;
    }
}





.puja-section {
    padding: 100px 50px;
    background: linear-gradient(135deg,#fff8ee,#fdebd0);
    text-align: center;
    
}

.puja-title {
    font-size: 36px;
    color: #8b0000;
    font-weight: bold;
    margin-bottom: 50px;
}

.puja-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    padding: 20px 20px 20px 20px ;
    background: rgb(255, 209, 124);
   
}

.puja-card {
    background: rgb(255, 228, 177);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);


}

.puja-card:hover {
    transform: translateY(-10px);
}

.puja-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.puja-content {
    padding: 15px;
}

.puja-content h3 {
    color: #8b0000;
    font-size: 18px;
    margin-bottom: 5px;
}

.puja-content p {
    font-size: 14px;
    color: #555;
}

.read-btn {
    margin-top: 10px;
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(45deg,#ff8c00,#ff3c00);
    color: white;
    cursor: pointer;
}


.puja-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.puja-card {
    background: rgb(255, 228, 177);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 3px;
}


.puja-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;

    background: linear-gradient(
        90deg,
        
        #ff7300,
        #fffb00,
        #e89d5f,
        #f82f53,
        #f4ad2a,
        #6e0202,
        #ff0000
    );

    background-size: 400%;
    animation: glowing 6s linear infinite;

    z-index: -2;
}


.puja-card::after {
    content: "";
    position: absolute;
    inset: 4px; 
    background: rgb(255, 228, 177);
    border-radius: 18px;
    z-index: -1;
}


.puja-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400% 0;
    }
}

.modal-box {
    width: 600px;
    max-width: 90%;
    background: #fffaf0;
    padding: 30px;
    border-radius: 20px;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity:0;}
    to {transform: scale(1); opacity:1;}
}

.close-btn {
    float: right;
    font-size: 22px;
    cursor: pointer;
}


@media(max-width:992px){
    .puja-container {grid-template-columns: repeat(2,1fr);}
}
@media(max-width:600px){
    .puja-container {grid-template-columns: 1fr;}
}


.modal-box {
    width: 600px;
    max-width: 90%;
    height: 400px;              
    
    background:url('./images/bb.jpg') ;
    background-size: cover;
    padding: 25px;
    border-radius: 20px;
    
    display: flex;
    flex-direction: column;  
    
    animation: zoomIn 0.4s ease;
}

.modal-box h2{

    color: #ff2f00;
font-weight: 600;

}
.modal-box p {
    overflow-y: auto;           
    margin-top: 10px;
    padding-right: 10px;
     flex: 1;
}


.modal-box p::-webkit-scrollbar {
    width: 6px;
}

.modal-box p::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg,#ff8c00,#ff3c00);
    border-radius: 10px;
}


.stats-section{
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:80px 10%;
    background:linear-gradient(135deg,#fdfdfd,#fff);
    text-align:center;
}

.stat-box h2{
    font-size:50px;
    color:#b8860b;
    margin-bottom:10px;
}

.stat-box p{
    font-size:16px;
    color:#333;
    font-family: Bahnschrift;

}


@media(max-width:768px){
    .stats-section{
        flex-direction:column;
        gap:30px;
    }
}

.pandit-section{
    padding:80px 10%;
    background:#fffaf0;
    text-align:center;
}


.pandit-title{
    font-size:34px;
    color:#8b0000;
    margin-bottom:50px;
    font-family: Georgia, serif;
}

.pandit-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}


.pandit-img img{
    width:300px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    transition:0.4s;
}

.pandit-img img:hover{
    transform:scale(1.05);
}


.pandit-content{
    max-width:500px;
    text-align:left;

 
    background:rgba(255,255,255,0.6);
    padding:30px;
    border-radius:20px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


.pandit-content h3{
    font-size:24px;
    color:#b8860b;
    margin-bottom:10px;
     font-family:'Times New Roman', Times, serif;
}


.experience{
    font-size:15px;
    color:#444;
    margin-bottom:10px;
     font-family: Bahnschrift;
}


.specialization{
    font-size:14px;
    color:#6b4b00;
    margin-bottom:15px;
     font-family: Bahnschrift;
}


.description{
    font-size:14px;
    color:#333;
    line-height:1.6;
    margin-bottom:20px;
     font-family: Bahnschrift;
}


.pandit-btn{
    display:inline-block;
    padding:10px 20px;
    background:linear-gradient(45deg,#ff9900,#ffcc00);
    color:white;
    text-decoration:none;
    border-radius:25px;
    font-weight:bold;
    transition:0.3s;
     font-family:'Times New Roman', Times, serif;
}

.pandit-btn:hover{
    transform:scale(1.05);
    background:linear-gradient(45deg,#ffcc00,#ff9900);
}

@media(max-width:768px){
    .pandit-content{
        text-align:center;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 60px;
    height: 60px;
    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 28px;
    color: white;

    z-index: 9999;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #50ce82;
}


.call-now-btn{
    position:fixed;
    left:20px;
    bottom:25px;
font-size: larger;
    background:linear-gradient(123deg,#fff 0%,#08e343 100%);
    color:#131313;

    padding:24px 24px;
    border-radius:100px;

    text-decoration:none;
    font-weight:600;

    display:flex;
    align-items:center;
    gap:10px;

    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
    transition:.3s;
}

.call-now-btn:hover{
    color:#000;
    transform:translateY(-3px);
}

.process-section{
    padding:100px 10%;
    text-align:center;
    background:#fffaf0;
    position:relative;
    overflow:hidden;
}

.process-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(45deg,#ffcc00,#ff9900,#ffd700);
    background-size:400%;
    animation:moveBg 10s linear infinite;
    opacity:0.1;
    z-index:0;
}

@keyframes moveBg{
    0%{background-position:0%;}
    100%{background-position:400%;}
}

.process-title{
    font-size:36px;
    color:#8b0000;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight:bold;
    position:relative;
    z-index:1;
}

.process-subtitle{
    font-size:18px;
    color:#555;
    margin-bottom:50px;
    position:relative;
    z-index:1;
    font-family: Bahnschrift;
}


.process-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:1;
}

.process-step{
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.3s;
    position:relative;
}


.step-number{
    width:50px;
    height:50px;
    background:linear-gradient(45deg,#ff9900,#ffd700);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:bold;
    margin:0 auto 15px;
}

.process-step h3{
    font-size:18px;
    color:#b8860b;
    margin-bottom:10px;
     font-family: 'Times New Roman', Times, serif;
}

.process-step p{
    font-size:14px;
    color:#444;
     font-family: Bahnschrift;
}


.process-step:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(255,165,0,0.3);
}


@media(max-width:992px){
    .process-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .process-container{
        grid-template-columns:1fr;
    }
}





.trust-section{
    padding:70px 10%;
    display:flex;
    justify-content:center;
    align-items:center;

  
    background: #ffd9ad;
background: linear-gradient(163deg, rgba(255, 217, 173, 1) 28%, rgba(255, 242, 222, 1) 48%, rgba(247, 239, 223, 1) 73%);

    position:relative;
}


.trust-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
   
    z-index:0;
}


.trust-box{
    position:relative;
    z-index:1;
    max-width:700px;
    text-align:center;
    background:rgba(255,255,255,0.9); 
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}




.trust-box h3{
    font-size:26px;
    color:#b8860b;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-bottom:15px;
}


.trust-box p{
    font-size:15px;
    line-height:1.7;
    font-family: Bahnschrift;
    color:#333;
    margin-bottom:20px;
}


.trust-points{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.point{
    background:#fff5d6;
    padding:10px 18px;
    border-radius:25px;
    font-size:14px;
    color:#b8860b;
    font-weight:500;
    font-family: Bahnschrift;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}


.point:hover{
    background:#ffcc00;
    color:#fff;
}


@media(max-width:600px){
    .trust-box{
        padding:25px;
    }
}


.puja-section {
    padding: 100px 50px;
    background: linear-gradient(135deg,#fff8ee,#fdebd0);
    text-align: center;
    
}

.puja-title {
    font-size: 36px;
    color: #8b0000;
    font-weight: bold;
    margin-bottom: 50px;
}

.puja-container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    padding: 20px 20px 20px 20px ;
    background: rgb(255, 209, 124);
   
}

.puja-card {
    background: rgb(255, 228, 177);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);


}

.puja-card:hover {
    transform: translateY(-10px);
}

.puja-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.puja-content {
    padding: 15px;
}

.puja-content h3 {
    color: #8b0000;
    font-size: 18px;
    margin-bottom: 5px;
}

.puja-content p {
    font-size: 14px;
    color: #555;
}

.read-btn {
    margin-top: 10px;
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(45deg,#ff8c00,#ff3c00);
    color: white;
    cursor: pointer;
}


.puja-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.puja-card {
    background: rgb(255, 228, 177);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 3px;
}


.puja-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;

    background: linear-gradient(
        90deg,
        
        #ff7300,
        #fffb00,
        #e89d5f,
        #f82f53,
        #f4ad2a,
        #6e0202,
        #ff0000
    );

    background-size: 400%;
    animation: glowing 6s linear infinite;

    z-index: -2;
}


.puja-card::after {
    content: "";
    position: absolute;
    inset: 4px; 
    background: rgb(255, 228, 177);
    border-radius: 18px;
    z-index: -1;
}


.puja-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400% 0;
    }
}

.modal-box {
    width: 600px;
    max-width: 90%;
    background: #fffaf0;
    padding: 30px;
    border-radius: 20px;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity:0;}
    to {transform: scale(1); opacity:1;}
}

.close-btn {
    float: right;
    font-size: 22px;
    cursor: pointer;
}


@media(max-width:992px){
    .puja-container {grid-template-columns: repeat(2,1fr);}
}
@media(max-width:600px){
    .puja-container {grid-template-columns: 1fr;}
}


.modal-box {
    width: 600px;
    max-width: 90%;
    height: 400px;              
    
    background:url('../images/bb.jpg') ;
    background-size: cover;
    padding: 25px;
    border-radius: 20px;
    
    display: flex;
    flex-direction: column;  
    
    animation: zoomIn 0.4s ease;
}



.modal-box p::-webkit-scrollbar {
    width: 6px;
}

.modal-box p::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg,#ff8c00,#ff3c00);
    border-radius: 10px;
}


.stats-section{
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:80px 10%;
    background:linear-gradient(135deg,#fdfdfd,#fff);
    text-align:center;
}

.stat-box h2{
    font-size:50px;
    color:#b8860b;
    margin-bottom:10px;
}

.stat-box p{
    font-size:16px;
    color:#333;
    font-family: Bahnschrift;

}


@media(max-width:768px){
    .stats-section{
        flex-direction:column;
        gap:30px;
    }
}

.pandit-section{
    padding:80px 10%;
    background:#fffaf0;
    text-align:center;
}


.pandit-title{
    font-size:34px;
    color:#8b0000;
    margin-bottom:50px;
    font-family: Georgia, serif;
}

.pandit-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}


.pandit-img img{
    width:300px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    transition:0.4s;
}

.pandit-img img:hover{
    transform:scale(1.05);
}


.pandit-content{
    max-width:500px;
    text-align:left;

 
    background:rgba(255,255,255,0.6);
    padding:30px;
    border-radius:20px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


.pandit-content h3{
    font-size:24px;
    color:#b8860b;
    margin-bottom:10px;
     font-family:'Times New Roman', Times, serif;
}


.experience{
    font-size:15px;
    color:#444;
    margin-bottom:10px;
     font-family: Bahnschrift;
}


.specialization{
    font-size:14px;
    color:#6b4b00;
    margin-bottom:15px;
     font-family: Bahnschrift;
}


.description{
    font-size:14px;
    color:#333;
    line-height:1.6;
    margin-bottom:20px;
     font-family: Bahnschrift;
}


.pandit-btn{
    display:inline-block;
    padding:10px 20px;
    background:linear-gradient(45deg,#ff9900,#ffcc00);
    color:white;
    text-decoration:none;
    border-radius:25px;
    font-weight:bold;
    transition:0.3s;
     font-family:'Times New Roman', Times, serif;
}

.pandit-btn:hover{
    transform:scale(1.05);
    background:linear-gradient(45deg,#ffcc00,#ff9900);
}

@media(max-width:768px){
    .pandit-content{
        text-align:center;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 60px;
    height: 60px;
    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 28px;
    color: white;

    z-index: 9999;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #50ce82;
}


.call-now-btn{
    position:fixed;
    left:20px;
    bottom:25px;
font-size: larger;
    background:linear-gradient(123deg,#fff 0%,#08e343 100%);
    color:#131313;

    padding:24px 24px;
    border-radius:100px;

    text-decoration:none;
    font-weight:600;

    display:flex;
    align-items:center;
    gap:10px;

    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
    transition:.3s;
}

.call-now-btn:hover{
    color:#000;
    transform:translateY(-3px);
}
.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 32px;
    background:#ff5c05;
    color:#fff;
    text-decoration:none;
    border:2px solid #ff5c05;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
}

.hero-btn:hover{
    background:#fff;
    color:#f43d00;
    border-color:#ff5c05;
}

.call-btn{
        margin-top: 10px;
    padding: 10px 18px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff8c00, #ff3c00);
    color: white
}

.call-btn:hover{
    background:#e60000;
    color:#fff;
}

.all-btn{
    margin-top: 10px;
    padding: 10px 18px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff8c00, #ff3c00);
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 500;
}

.all-btn:hover{
    background: linear-gradient(45deg, #e60000, #ff3c00);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}
/*============== Famous Places ==============*/

.famous-place-section{
    padding:90px 0;
    background:#fffdf5;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}



.section-title h2{
    font-size:42px;
    margin:10px 0;
    color:#ff0000;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight:700;
}



.place-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.place-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:400px;           /* Vertical Image */
    cursor:pointer;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.place-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.place-card:hover img{
    transform:scale(1.08);
}

.place-content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:18px;
    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
}

.place-content h3{
    color:#fff;
    margin:0;
    font-size:22px;
    font-weight:600;
}

@media(max-width:991px){

.place-wrapper{
grid-template-columns:repeat(2,1fr);
}

.place-card{
height:400px;
}

}

@media(max-width:576px){

.place-wrapper{
grid-template-columns:1fr;
}

.place-card{
height:500px;
}

.section-title h2{
font-size:32px;
}

}

/*==========================
      YANTRA SECTION
==========================*/

.yantra-section{

width:100%;

background:linear-gradient(135deg,#ffdf80,#ffffff);

padding:100px 0;

position:relative;

overflow:hidden;

}

/* Full Width Container */

.container-fluid{

width:100%;

max-width:1700px;

margin:auto;

padding:0 60px;

}

/* Heading */

.yantra-heading{

text-align:center;

margin-bottom:70px;

}

.yantra-heading span{

color:#FFD54F;

font-size:17px;

letter-spacing:3px;

font-weight:600;

}

.yantra-heading h2{

font-size:70px;

color:#ff0000;

margin:15px 0;

font-family:Georgia,serif;

}

.yantra-heading p{

color:#eee;

font-size:19px;

line-height:32px;

max-width:700px;

margin:auto;

}

/* Grid */

.yantra-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

}

/* Cards */

.yantra-card{

background:#790000;

border:2px solid rgba(255,215,0,.35);

border-radius:20px;

padding:35px;

text-align:center;

transition:.4s;

}

.yantra-card:hover{

transform:translateY(-10px);

box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.yantra-card img{

width:100%;

height:300px;

object-fit:contain;

}

.yantra-card h3{

margin-top:25px;

color:#FFD54F;

font-size:30px;

font-weight:700;

}

/* Tablet */

@media(max-width:992px){

.container-fluid{

padding:0 30px;

}

.yantra-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:576px){

.container-fluid{

padding:0 20px;

}

.yantra-grid{

grid-template-columns:1fr;

}

.yantra-heading h2{

font-size:42px;

}

}