/* Define Color Variables */
:root {
    --dark-gray: #3C4043;
    --orange: #FF7D33;
    --white: #FFFFFF;
    --black: #010101;
    --red: #ED0006;
    --gradient-bg: #c94422;
}

/* General Styles */
body {
    background-color: var(--white);
    color: var(--dark-gray);
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    margin: 0; /* Ensure no unintended margins */
    padding: 0;
}

  /* Parent container for buttons */
  .floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px; /* Space between buttons */
    z-index: 1000;
  }

  /* Shared styles for buttons */
  .whatsapp-button,
  .call-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .call-button {
    background-color: #007bff;
  }

  /* Hover effect for buttons */
  .whatsapp-button:hover,
  .call-button:hover {
    transform: scale(1.1);
  }

  /* Icon styles */
  .whatsapp-button img,
  .call-button img {
    width: 30px;
    height: 30px;
  }

/* Header Section */
/* Header */
header {
  background-color: var(--white);
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-img {
  max-height: 40px;
}

.nav-link {
  color: var(--dark-gray) !important;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--red) !important;
}

.btn-red {
  background-color: var(--red);
  color: var(--white);
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-red:hover {
  background-color: rgb(179, 51, 51);
  color: var(--white);
  /* transform: scale(1.05); */
}


/* Mute button styles */
.btn-mute {
  background-color: var(--red);
  color: var(--white);
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-mute:hover {
  background-color: var(--dark-gray);
}

/* Mobile-specific styles */
@media (max-width: 991.98px) {
  .navbar .btn-mute.d-lg-none {
    display: inline-block;
    margin-right: auto;
  }

  .navbar .btn-mute.d-lg-inline-block {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  
  
  border-radius: 10px; background-image: url("img/heroimg.png"); /* Add your image path here */
  background-size: cover; /* Ensure the image covers the entire section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent tiling */
  border-radius: 6px; /* Optional rounded corners */
  padding: 50px 20px; /* Add spacing around content */
  color: #fff; /* Text color to contrast with the background */
  text-align: center; /* Center-align the text */
  min-height: 400px; /* Ensure a minimum height for all devices */
}

.hero-section h1 {
  color: var(--red);
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-section p {
  color: var(--dark-gray);
  font-size: 1.2rem;
}

/* Buttons in Hero Section */
.hero-section .btn-red {
  margin-top: 15px;
  margin-right: 10px;
  padding: 10px 20px;
  font-size: 1rem;
}

.hero-section .btn-red:last-child {
  margin-right: 0;
}

/* Ensure buttons wrap properly in smaller screens */
@media (max-width: 768px) {
  .hero-section .btn-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }

  .hero-section .btn-red {
      flex: 1 1 auto;
      text-align: center;
  }
}

/* Align col-lg-8 content to the top on larger screens */
@media (min-width: 992px) {
  .hero-section .col-lg-8 {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
  }
  .price-img {
    max-width: 100%;
    height: 100px;
}
.price-text {
    font-size: 8px;
}
  header {
      padding: 5px 20px;
  }

  .logo-img {
      max-height: 35px;
  }
}



.form-section {
  /*background-image: url(img/bg-card.jpeg);*/
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 10px;
  margin-top: 20px;
}

.form-section h3 {
  color: var(--red);
  text-align: center;
}

.form-label {
  display: block; /* Ensures labels take up full width and align to left */
  text-align: left; /* Left align the text inside the label */
  color: var(--dark); /* Ensure label text color is dark */
}

@media (max-width: 576px) {
  .form-section {
    margin-top: 30px;
  }
}



/* Form Section Styling */
/*.form-section {*/
/*  background: #ffffff;*/
/*  border: 1px solid #e3e3e3;*/
/*  border-radius: 10px;*/
/*  overflow: hidden;*/
/*  max-width: 700px;*/
/*  margin: 0 auto;*/
/*}*/

/* Form Header */
/*.form-header {*/
  /*background-color: #ffc107;*/
  /*color: #343a40;*/
/*}*/

/*.form-header h2 {*/
/*  font-size: 1.8rem;*/
/*  font-weight: bold;*/
/*}*/

/*.form-header p {*/
/*  font-size: 0.9rem;*/
/*}*/



/* Form Controls */
/*.form-control,*/
/*.form-select {*/
/*  border-radius: 5px;*/
/*  border: 1px solid #dee2e6;*/
/*  transition: border-color 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.form-control:focus,*/
/*.form-select:focus {*/
/*  border-color: #007bff;*/
/*  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);*/
/*}*/

/* Submit Button */
/*.btn-primary {*/
/*  background: linear-gradient(45deg, #007bff, #0056b3);*/
/*  border: none;*/
/*}*/

/*.btn-primary:hover {*/
/*  background: linear-gradient(45deg, #0056b3, #004085);*/
/*  transform: translateY(-1px);*/
/*}*/

/*.btn-primary:focus {*/
/*  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);*/
/*}*/

/*@media (max-width: 576px) {*/
/*  .form-section {*/
/*    margin-top: 30px;*/
/*  }*/
  
/*  .form-section .row {*/
/*    display: block;*/
/*  }*/
/*}*/
/*.form-container {*/
/*            border: 1px solid #ddd;*/
/*            border-radius: 8px;*/
/*            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*            padding: 20px;*/
/*            background-color: #fff;*/
/*        }*/

/* What We Offer */

.offer-section {
    padding: 60px 15px;
  }

  .offer-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-gray);
    text-align: center;
  }

  .offer-title span {
    color: var(--orange);
  }

  .offer-description {
    text-align: center;
    color: var(--dark-gray);
    margin-top: 10px;
    font-size: 16px;
  }

  .image-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .carousel-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }



  .carousel-control-prev,
  .carousel-control-next {
    color: var(--orange);
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    color: var(--red);
  }


  /* featured section */

  .featured-section {
    background-color: var(--white);
  }
  
  .featured-section h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-gray);
  }
  
  .featured-section h2 span {
    color: var(--orange);
  }
  
  .card {
    border: none;
    border-radius: 15px;
    background-color: var(--white);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    height: 400px; /* Fixed height for all cards */
  }
  
  .card-img-top {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
    object-fit: cover;
  }
  
  .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-gray);
  }
  
  .card-text {
    font-size: 14px;
    color: var(--dark-gray);
  }
  
  .btn-orange {
    background-color: transparent;
    color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 5px;
    padding: 10px 20px;
    transition: all 0.3s ease;
  }
  
  .btn-orange:hover {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
  }




  /* Upcoming puja's */

  .puja-card {
    border-radius: 15px;
    background-color: var(--white);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
  }

  .puja-card-header img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
    object-fit: cover;
    width: 100%;
  }

  .puja-badge {
    font-size: 12px;
    font-weight: bold;
    background-color: var(--red);
    color: var(--white);
  }

  .puja-card-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-gray);
  }

  .puja-card-text {
    font-size: 14px;
    color: var(--dark-gray);
  }

  .puja-btn-orange {
    background-color: var(--orange);
    color: var(--white);
    border: none;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .puja-btn-orange:hover {
    background-color: var(--red);
    color: var(--white);
  }


/* Why choose */

.why-choose-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
}

.why-choose-icon {
    color: var(--orange);
    font-size: 40px;
    margin-bottom: 10px;
}

.why-choose-title {
    font-weight: bold;
    color: var(--black);
}

.why-choose-text {
    color: var(--dark-gray);
    font-size: 14px;
}

.why-choose-heading {
    font-size: 28px;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 20px;
}

.why-choose-image {
    width: 100%;
    border-radius: 10px;
}



/* faq section css */

/* style.css */


.review-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-duration), box-shadow var(--transition-duration);
}

.review-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.review-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-gray);
}

.review-author {
  font-size: 14px;
  font-weight: bold;
  color: var(--orange);
  margin-top: 10px;
}

.review-rating {
  margin-top: 10px;
}

.star {
  font-size: 18px;
  color: var(--orange); /* Gold color for the stars */
  transition: color var(--transition-duration);
}

.star-empty {
  color: var(--light-gray); /* Empty star color */
}


/*      .faq-section {*/
/*    max-width: 900px;*/
/*    width: 100%;*/
/*    padding: 30px;*/
/*    border-radius: 16px;*/
/*    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);*/
/*    background: var(--gradient-bg);*/
/*    color: var(--white);*/
/*    margin: auto;*/
/*}*/

/*.faq-header {*/
/*    font-size: 30px;*/
/*    color: var(--red);*/
/*    text-align: center;*/
/*    margin-bottom: 40px;*/
/*    font-weight: bold;*/
/*    text-transform: uppercase;*/
/*    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);*/
/*}*/

/*.accordion-item {*/
/*    background-color: var(--white);*/
/*    color:var(--red);*/
/*    border-radius: 12px;*/
/*    transition: background var(--transition-duration);*/
    margin-bottom: 15px; /* Adds gap between boxes */
/*}*/

/*.accordion-item:hover {*/
/*    background: var(--white);*/
/*    color:#000000;*/
/*}*/

/*.accordion-button {*/
/*    color: var(--red);*/
/*    font-size: 20px;*/
/*    font-weight: bold;*/
/*    background: transparent;*/
/*    transition: background var(--transition-duration),*/
/*        color var(--transition-duration);*/
/*}*/

/*.accordion-button:not(.collapsed)  background-color: var(--white); {*/
   /* Changes question box to white when clicked 
    color: #000000   /* Changes text to red 
    border-radius: 12px; /* Optional: maintain rounded corners 
/*}*/

/*.accordion-body {*/
/*    font-size: 16px;*/
/*    line-height: 1.6;*/
/*    color: var(--red);*/
/*}*/

/*      @media (max-width: 768px) {*/
/*        .faq-section {*/
/*          padding: 20px;*/
/*        }*/

/*        .faq-header {*/
/*          font-size: 24px;*/
/*        }*/

/*        .accordion-button {*/
/*          font-size: 18px;*/
/*        }*/

/*        .accordion-body {*/
/*          font-size: 15px;*/
/*        }*/
/*      }*/



/*faq*/
.faq-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .accordion-button:focus {
            box-shadow: none;
        }



.vedic-card {
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  text-align: left;
  padding: 1.5rem;
  border-radius: 10px;
 height:150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.vedic-card.bg-red {
  background: url('img/bg-card.jpeg'), #c94422;
  background-blend-mode: multiply;
}

.vedic-card.bg-orange {
  background: url('img/bg-card.jpeg'), #d67b32;
  background-blend-mode: multiply;
}

.cust-vedic-card{
    padding:30px !important;
    height:unset !important;
}
.cust-vedic-text{
    display: flex ;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #dbbf42;
}

/* Responsive Adjustments for Small Screens */
@media (max-width: 576px) {
  .carousel-inner .row {
    flex-wrap: nowrap; /* Prevent wrapping */
    justify-content: center; /* Center items */
  }

  .carousel-inner .col-sm-12 {
    flex: 0 0 100%; /* Each card takes full width */
    max-width: 100%;
  }
}



/* 
Puja Page Css */

.hero-banner {
  background-image: url("img/bg-img.png"); /* Add your image path here */
  background-size: cover; /* Ensure the image covers the entire section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent tiling */
  border-radius: 10px; /* Optional rounded corners */
  padding: 50px 20px; /* Add spacing around content */
  color: #fff; /* Text color to contrast with the background */
  text-align: center; /* Center-align the text */
  min-height: 400px; /* Ensure a minimum height for all devices */
}

.hero-banner .hero-content h2 {
  font-size: 2rem; /* Adjust font size for better responsiveness */
  margin-bottom: 20px;
}

.hero-banner .hero-content i {
  font-style: italic;
  font-size: 1rem; /* Adjust font size as needed */
  display: block;
  margin-top: 15px;
}

.hero-banner.bg-danger-subtle {
  background-color: transparent; /* Override any solid color */
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) { /* Tablet and below */
  .hero-banner {
    padding: 30px 15px; /* Reduce padding */
    min-height: 300px; /* Adjust height for smaller screens */
    background-size: contain; /* Ensure the image fits well */
  }

  .hero-banner .hero-content h2 {
    font-size: 1.8rem; /* Smaller font for titles */
  }

  .hero-banner .hero-content i {
    font-size: 0.9rem; /* Adjust font size for smaller screens */
  }
}

@media (max-width: 576px) { /* Mobile screens */
  .hero-banner {
    padding: 20px 10px; /* Reduce padding further */
    min-height: 250px; /* Adjust height for phones */
    background-size: cover; /* Ensure the image fills the section */
    background-position: top center; /* Adjust the focus point */
  }

  .hero-banner .hero-content h2 {
    font-size: 1.5rem; /* Smaller font for better fit */
  }

  .hero-banner .hero-content i {
    font-size: 0.8rem; /* Adjust font size further */
  }
}



/* Blog page css */

.pagination .page-link {
  color: #ff7f50; /* Custom orange color for links */
  border: 1px solid #ff7f50;
  transition: background-color 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #ff7f50;
  color: white;
}

.pagination .active .page-link {
  background-color: #ff7f50;
  border-color: #ff7f50;
  color: white;
}



    .filter-section {
            background-color: #fff8f2;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .filter-section h5 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .btn-orange {
            background-color: #f86c2d;
            color: #fff;
        }
        .btn-orange:hover {
            background-color: #e05d23;
        }
        .filter-buttons button {
            font-size: 0.9rem;
            margin: 3px 0;
        }
/* About page css */


.about-section {
     
      color: white;
      padding: 30px 10px;
    }
    .about-section h2 {
      font-weight: 700;
      margin-bottom: 10px;
      color:black;
    }
    .about-section p {
      font-size: 1rem;
      margin-bottom: 20px;
      color:black;
    }
    .about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }
    .udgam-section {
      background-color: #f9f9f9;
      padding: 50px 20px;
    }
    .udgam-section h3 {
      font-weight: 700;
      margin-bottom: 15px;
    }
    .udgam-section p {
      font-size: 1rem;
    }

    /* Styling for the image container */
.image-container {
      padding: 10px;
      
    }
    
    /* Styling for the text container */
    .text-container {
      padding: 10px;
    }
    
    /* Styling for the heading */
    .main-heading {
      color: #333; /* Dark text for heading */
    }
    
    /* Styling for the paragraph and list items */
    /* .description-text, .list-items { */
      /* color: #555; Slightly lighter gray for text */
    /* } */


    .enlight-container {
 
      background-color: seashell;
  }
  
  .enlight-section h1 {
      font-size: 2rem;
      font-weight: bold;
  }
  .enlight-section p {
      font-size: 1rem;
      color: #555;
  }
  .enlight-form-container {
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .enlight-btn-submit {
      background-color: #ff7d47;
      border: none;
      color: #fff;
  }
  .enlight-btn-submit:hover {
      background-color: #e36933;
  }
    
.serv-card {
  margin-bottom: 20px;
  border: 1px solid #ddd; /* Light gray border */
  border-radius: 8px; /* Optional rounded corners */
  height: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional subtle shadow for better aesthetics */
}

.serv-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.serv-card-body h5{
    font-size: 1.02rem;
    font-weight:600;
    margin-top:13px;
    
}
.serv-card-body p{
    font-size:0.95rem;
    margin-top:13px;
    
}



    /*.contact-section {*/
    /*  padding: 20px 0;*/
    /*}*/

    .contact-section h2 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .contact-card {
      background: #fff;
      border: none;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 50px;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #f39c12;
    }

    .btn-submit {
      background-color: #f39c12;
      color: #fff;
      border: none;
    }

    .btn-submit:hover {
      background-color: #d87e0b;
    }



/* About page End css */


    .cust-offer{
        height:120px !important;
    }
    

      .box{
  background: url("https://image.ibb.co/nJHGgk/about_us1.jpg");
  color: white;
  text-align:center;
  z-index:1;
}
.text{
    padding: 100px 0;
}
.box p{
  font-size:18px;
}
.cust-gallery img { border-radius: 10px; }
        .post-title { color: #fff; }
        .popup-content {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: #fff;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            z-index: 10;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: opacity 0.3s, visibility 0.3s;
        }
        .popup-trigger:hover .popup-content {
            visibility: visible;
            opacity: 1;
        }


.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    text-align: center;
    overflow: auto;
}
.modal-content {
    margin-top: 5%;
   width: 50%;
    height:500px;
    margin: 0 auto;
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    color:black;
    font-size: 40px;
    margin-top: -22px;
    font-weight: bold;
    transition: 0.3s;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
figure{
    margin:2px -6px !important;
}
 @media (max-width:768px){
     .modal-content{
    height: unset !important;
    margin-top: 80% !important;
}
 }



.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    overflow: auto;
}

.modal-content {
    margin-top: 5%;
    max-width: 90%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    color: black;
    font-size: 40px;
    margin-top: -22px;
    font-weight: bold;
    transition: 0.3s;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        height: unset !important;
        margin-top: 80% !important;
    }
}

/*blog details*/

.blog-img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .blog-section {
    margin-top: 20px;
  }
  .recent-blogs {
    margin-top: 20px;
  }
  .recent-blogs h5 {
    border-bottom: 2px solid #ff7d47;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .blog-card {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .blog-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  @media (max-width: 576px) {
    .col-8, .col-4 {
      width: 100%;
    }
  }


.cc-card {
  background-color: white; /* Default color */
  color: black;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  width: 200px; /* Adjust as needed */
  transition: background-color 0.3s, color 0.3s; /* Smooth hover effect */
}

.cc-card:hover {
  background-color: #e05d23; /* Orange color on hover */
  color: white; /* Optional: change text color on hover */
}

.cc-card .icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
}



























