/* Define @charset if needed */
@charset "UTF-8";


/* --------- RESPONSIVE ------------*/

/* For screens smaller than 768px (e.g., tablets and phones) */
@media (max-width: 767px) {
    .site-navbar {
        flex-direction: column;
        align-items: stretch;
    }

    .site-navbar ul {
        flex-direction: column;
    }

    .site-navbar ul li {
        padding: 10px 0;
    }

    .nav-toggler {
        display: block;
    }

    .intro-area {
        height: auto;
        padding: 100px 20px;
    }

    .creative h1 {
        font-size: 40px;
    }

    .creative p {
        font-size: 16px;
    }

    .mar_right {
        margin-right: 0;
    }
    .donate-button {
        position: static;
        width: 100%;
        margin-top: 20px; /* Adjust margin as needed */
    }
}

/* For screens between 768px and 1023px (e.g., tablets in landscape mode) */
@media (min-width: 768px) and (max-width: 1023px) {
    .site-navbar ul li {
        padding-right: 20px;
    }

    .nav-toggler {
        display: block;
    }
    .donate-button {
        position: absolute;
        right: 20px; /* Adjust positioning as needed */
        top: 20px; /* Adjust positioning as needed */
    }
}

/* For screens larger than 1023px (e.g., desktops) */
@media (min-width: 1024px) {
    .site-navbar {
        gap: 20px;
    }

    .site-navbar ul li {
        padding-right: 30px;
    }

    .nav-toggler {
        display: none;
    }
}



/* Your CSS styles go here */

/* ----------- Header ---------*/

/* Default styles */

/* Header styles */


/* Responsive styles */

@media screen and (max-width: 768px) {
    /* Adjustments for smaller screens */

    .logo a {
        font-size: 30px;
    }

    .site-navbar ul li {
        padding-right: 15px;
    }
}

@media screen and (max-width: 576px) {
    /* Further adjustments for even smaller screens */

    .logo a {
        font-size: 25px;
    }

    .site-navbar ul li {
        padding-right: 10px;
    }
}


/* Header area */
.header-area {
    border-top: darkorange solid 30px;
    width: 100%;
}

/* Site navigation */
.site-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.site-navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.site-navbar ul li {
    padding-right: 20px;
}

.site-navbar ul li:last-child {
    padding-right: 0;
}

.site-navbar ul li a {
    color: #E60000;
    font-size: 16px;
    display: block;
    text-decoration: none;
    padding: 10px 15px;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.site-navbar ul li a:hover {
    background-color: darkorange;
    color: #fff;
}

.site-navbar ul li a.active {
    color: darkorange;
    background-color: white;
    border: 1px solid darkorange;
    padding: 10px 15px;
    text-decoration: underline;
    border-radius: 10px;
}

/* Nav toggler button */
.nav-toggler {
    border: 3px solid #363636;
    padding: 5px;
    cursor: pointer;
    height: 39px;
    background-color: #fff;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
    width: 28px;
    height: 3px;
    background-color: #363636;
    display: block;
    transition: .3s;
}

.nav-toggler span:before {
    content: '';
    transform: translateY(-9px);
}

.nav-toggler span:after {
    content: '';
    transform: translateY(6px);
}

.nav-toggler.toggler-open span {
    background-color: #f9f8f4;
}

.nav-toggler.toggler-open span:before {
    transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
    transform: translateY(-3px) rotate(-45deg);
}

.intro-area {
    height: calc(100vh - 61px);
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}
.donate-button {
    position: absolute;
    padding: 10px 20px;
    background-color: #E60000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
  }
  
  .donate-button:hover {
    background-color: darkorange;
  }

  /* Dropdown menu */
/* Dropdown menu */
.dropdown {
    position: relative;
    display: flex;
    z-index: 1000; /* Set a higher z-index value */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000; /* Set a higher z-index value */
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Style the dropdown button */
.dropbtn {
    color: #E60000;
    font-size: 16px;
    display: block;
    text-decoration: none;
    padding: 2px;
    font-family: "Poppins", sans-serif;
}

/* Active state for the dropdown button */
.dropbtn.active {
    color: darkorange;
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    text-decoration: underline;
    border: 1px solid darkorange; 
}


/** end header **/


/** banner section **/

.full_bg {
    background: url(../images/banner.png);
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.slider_main {
    padding: 80px 0;
}

.relative {
    position: inherit;
    left: 0;
    right: 0;
    text-align: center;
    position: inherit;
}

.carousel-item {
    height: 100%;
    width: 100%;
}

.creative {
    text-align: center;
}

.creative h1 {
    font-size: 80px;
    color: #FF3131;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #FF3131, #F86C6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite alternate;
}

.creative p {
    color: #101010;
    padding: 30px 0 55px 0;
    line-height: 30px;
    font-size: 20px;
    font-weight: 400;
}

.creative .read_more {
    display: inline-block;
    margin-right: 5px;
}

.mar_right {
    margin-right: -90px;
}

.agency figure {
    margin: 0;
}

.agency figure img {
    filter: drop-shadow(4px 6px 5px #0d03034f);
}

.slider_main .carousel-indicators {
    display: none;
}

#banner1 .carousel-control-prev,
#banner1 .carousel-control-next {
    width: 76px;
    height: 76px;
    background-color: #fff;
    color: #000;
    font-size: 40px;
    opacity: 1;
    top: 109%;
    box-shadow: 0 0 10px rgba(13, 3, 3, 0.38);
    z-index: 999;
    border-radius: 50px;
}

#banner1 .carousel-control-prev {
    left: 44.7%;
}

#banner1 .carousel-control-next {
    right: 44.7%;
}

#banner1 .carousel-control-next:focus,
#banner1 .carousel-control-next:hover,
#banner1 .carousel-control-prev:focus,
#banner1 .carousel-control-prev:hover {
    color: #fff;
    background: darkorange;
}


/*-----------Gallery--------------*/

.gallery-pagination {
    margin: 0 auto; /* Center align the content */
    text-align: center; /* Center align the text */
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.gallery a {
    max-width: calc(50% - 20px); /* Two images per row with 20px gap */
    margin-bottom: 20px; /* Vertical gap between rows */
}

  

.gallery-full-section {
    padding: 20px;
    width: 100%;
  }
  
  .gallery-full-pagination {
    display: relative;
  }
  
  .gallery-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    width: 100%;
  }
  
  .gallery-full-page-2 {
    display: none; /* Hide the second page initially */
  }
  
  .gallery-full-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .gallery-full-item img:hover {
    transform: scale(1.05);
  }
  
  .gallery-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .gallery-controls button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: darkorange;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .gallery-controls button:hover {
    background-color: #B30000;
  }
  


/* ----------about------------------*/
  .facebook-container {
    background-color: #f9f8f4;
    border-radius: 10px;
    width: 100%; /* Take full available width */
    max-width: 600px; /* Limit maximum width for better readability */
    padding: 20px; /* Add padding for spacing */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add subtle shadow for depth */
  }
  
  .facebook-container h2{
    color: darkorange;
    margin-bottom: 10px;
    font-size: 25px; /* Increase font size for headings */
    font-weight: 600;
  }
  .about-section h1{
    color: darkorange;
    margin-bottom: 50px;
    font-size: 40px; /* Increase font size for headings */
    font-weight: 600;
    background-color: #f9f8f4;
    max-width: 80%;
    text-align: center;
    margin-left: 10%;
  }


.about_bg {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.about-section {
    padding: 50px 0;
    text-align: center;
  }
  
  .about-container {
    max-width: 600px;
    margin: 0;
  }
  
  .bod_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bod_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bod {
    text-align: center;
    margin: 20px;
    flex: 1 1 calc(50% - 40px); /* Set each container to take 50% width */
    max-width: 300px; /* Set maximum width to prevent excessive stretching */
}

.center-img {
    margin: 0 auto; /* Center the image */
}

.circle-image {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    border-radius: 50%; /* Ensures the image is circular */
    margin-bottom: 10px; /* Add spacing between image and name */
}

h2 {
    margin: 0; /* Remove default margin */
}

@media screen and (max-width: 768px) {
    .bod {
        flex: 1 1 100%; /* Change to full width on smaller screens */
    }
}


  
  .mission-vision {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 700px;
  }
  
  .vision,
  .mission {
    width: calc(50% - 40px); /* Adjust as needed */
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f8f4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    border-top-left-radius: 30px;
    border-bottom-right-radius:30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .vision::before,
  .mission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 10px;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }
  
  .vision:hover::before,
  .mission:hover::before {
    background-color: darkorange;
  }
  
  .vision h2,
  .mission h2 {
    color: darkorange;
    margin-bottom: 10px;
    font-size: 25px; /* Increase font size for headings */
    font-weight: 600;
  }
  
  .vision p,
  .mission p {
    color: #666;
    line-height: 1.6;
  }
  
  .join-us {
    background-color: #f9f8f4;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top-left-radius: 30px;
    border-bottom-right-radius:30px;
    border:1px dotted darkorange;
  }
  .join-us:hover{
    border-top-left-radius: 30px;
    border-bottom-right-radius:30px;
    border:5px solid darkorange;
  }
  .join-us h2 {
    color: darkorange;
    margin-bottom: 10px;
    font-size: 25px; /* Increase font size for headings */
    font-weight: 600;
  }
  
  .join-us p {
    color: #777;
    line-height: 1.6;
  }
  
  .join-us p:last-child {
    margin-bottom: 0;
  }
  
  .join-us .read_more {
    display: inline-block;
    background-color: darkorange;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
  }
  
  .join-us .read_more:hover {
    background-color: #B30000;
  }
  
      
  
  
  
/*----------------------Payment-section---------*/

.payment-section {
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid darkorange;
    background-color:darkorange;
}

.donation-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid darkorange;
    border-radius: 10px;
    background-color: #f9f8f4;
}

.donation-box h2 {
    font-size: 34px;
    color: darkorange;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(179, 174, 174, 0.2);
    text-align: center;
}

.donation-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.donation-box ul {
    list-style-type: none;
    padding: 0;
}

.donation-box ul li {
    font-size: 20px;
    margin-bottom: 10px;
    color: #555;
    display: inline;
    margin: 10px;
}

.donation-box ul li button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: darkorange;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donation-box ul li button:hover {
    background-color:#B30000;
}

/* ----------------MAP section-------------------\*/
  .combined-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.about-container {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-content,
.contact-details {
    flex-basis: calc(50% - 30px);
    padding: 0 15px;
}

.about-content h2,
.contact-details h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.about-content p,
.address-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    padding: 12px 24px;
    background-color: #B30000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #8c0000;
}

.address-details h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.map-container iframe {
    width: 80%;
    height: 250px;
    border: none;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}




  
 
  /* ----------------------BUY PAGE------------------------*/

  .buy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
  }
  
  .stylish-form {
    width: 600px;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .stylish-form h2 {
    font-size: 34px;
    color: #E60000;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(179, 174, 174, 0.2);
    text-align: center;  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
  }
  
  .form-group textarea {
    height: 100px;
    resize: none;
  }
  
  button[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #E60000;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button[type="submit"]:hover {
    background-color: #B30000;
  }
  

/* Container for the monthly donation section */
/* Monthly Donation Section */
.monthly-donation {
    position: relative;
    height: auto; /* Adjust the height to auto for responsiveness */
    overflow: hidden;
}

.monthly-donation img {
    width: 100%;
    height: auto; /* Adjust height to auto */
    object-fit: cover;
    filter: brightness(70%);
}

.monthly-donation-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.monthly-donation-content h2 {
    font-size: 3.5vw; /* Responsive font size */
    margin-bottom: 2vw;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #fff131, #f6f86b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite alternate;
}

.monthly-donation-content p {
    font-size: 2vw; /* Responsive font size */
    margin-bottom: 2vw;
    text-shadow: 2px 2px 4px rgba(179, 174, 174, 0.2);
    background: linear-gradient(to right, rgb(255, 233, 207), darkorange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.monthly-donate-button {
    margin-top: 2vw; /* Responsive margin */
    font-size: 1.5vw; /* Responsive font size */
    padding: 1vw 2vw; /* Responsive padding */
    background-color: #E60000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}
.monthly-donate-button:hover{
    background-color: darkorange;
    color: #fff;
    text-decoration: none;
}
/* Media queries for responsiveness */
@media only screen and (max-width: 768px) {
    .monthly-donation-content h2 {
        font-size: 5vw;
    }

    .monthly-donation-content p {
        font-size: 3vw;
    }

    .monthly-donate-button {
        margin-top: 4vw;
        font-size: 3vw;
        padding: 2vw 4vw;
    }
}

@media only screen and (max-width: 480px) {
    .monthly-donation-content h2 {
        font-size: 6vw;
    }

    .monthly-donation-content p {
        font-size: 5vw;
    }

    .monthly-donate-button {
        margin-top: 6vw;
        font-size: 4vw;
        padding: 3vw 6vw;
    }
}

/*----------SCROLL UP---------------*/

  .scroll-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: darkorange;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
  }
  
  .scroll-up:hover {
    background-color: #E60000;
  }
  
  .donate-button {
    position: absolute;
    padding: 10px 20px;
    background-color: #E60000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
  }
  
  .donate-button:hover {
    background-color: darkorange;
  }
  

  
  /* Style for the Sadhu Seva section */
.sadhu-seva-section {
    padding: 50px 0; /* Add padding for spacing */
    background-color: #f9f8f4; /* Add background color */
}

/* Container styles */
.sadhu-seva-container {
    max-width: 960px;
    margin: 0 auto;
}

/* Content styles */
.sadhu-seva-content {
    text-align: center; /* Center-align the content */
}

/* Style for the heading */
.sadhu-seva-content h2 {
    font-size: 36px;
    color: #FF3131;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #FF3131, #F86C6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite alternate;
}

/* Style for the list of pointers */
.sadhu-seva-content ul {
    list-style: none; /* Remove default list styles */
    padding: 0; /* Remove default padding */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Use grid layout */
    gap: 30px; /* Add gap between grid items */
}

/* Style for individual grid items */
.sadhu-seva-content li {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for smooth hover effect */
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Hover effect for grid items */
.sadhu-seva-content li:hover {
    transform: translateY(-5px); /* Move grid item upward on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); /* Enhance box shadow on hover */
    color: darkorange;
}



/*-------------Sadhu Section---------*/
.sadhu-section {
    padding: 80px 0;
}

.sadhu-container {
    width: 90%;
    margin: 0 auto;
}

.sadhu-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sadhu-section-content {
    padding-right: 30px;
}

.sadhu-section-content h2 {
    font-size: 36px;
    color: #FF3131;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #FF3131, #F86C6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite alternate;
}

.sadhu-section-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .sadhu-row {
        flex-direction: column;
    }
}


/* Social Contribution Section */
.social-contribution-section {
    padding: 50px 0;
}



/* Title */
.titlepage {
    text-align: center;
    margin-bottom: 30px;
}

.titlepage h2 {
    font-size: 48px;
    color: #FF3131;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #FF3131, #F86C6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite alternate;
}

.titlepage p {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
}

/* Statistics Container */
.statistics-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Statistics Item */
.statistics-container > div {
    text-align: center;
    margin-bottom: 30px;
    width: calc(20% - 20px);
}

.statistics-container > div .icon {
    font-size: 36px;
    color: #FF3131;
    margin-bottom: 10px;
}

.statistics-container > div .statistic {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;

}

.statistics-container > div .statistic-label {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;

}


/* Shlok*/

/* Shloka Section */
.shloka-section {
    padding: 50px 0;
    text-align: center;
    background-color: #f9f8f4;
}

/* Shloka Container */
.shloka-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Shloka Text */
.shloka-text {
    font-size: 32px;
    color: #FF6347; /* Tomato Red */
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Meaning in Hindi and English */
.meaning-hindi,
.meaning-english {
    font-style: italic;
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Meaning in English */
.meaning-english {
    margin-top: 10px;
}

  
  /* Additional styling for a spiritual look */
  .shloka-section {
    background-image: url('spiritual_background.jpg'); /* Add your spiritual background image */
    background-size: cover;
    background-position: center;
    color: #333;
  }
  
  .shloka {
    border: 1px solid #ccc;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background to blend with the image */
  }
  
  .shloka-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .shloka-text {
    font-family: 'Times New Roman', serif; /* Spiritual font */
  }
  
  .meaning-hindi, .meaning-english {
    font-family: 'Georgia', serif; /* Spiritual font */
  }

  /* Foundation */

/* Foundation Section */
.foundation-section {
    padding: 50px 0;
    text-align: center;
}

/* Container */
.foundation-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Content */
.foundation-content {
    margin-bottom: 30px;
}

/* Section Title */
.section-title {
    font-size: 48px;
    color: #FF3131;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #FF3131, #F86C6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite alternate; /* Add animation */
}

@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Foundation Benefits */
.foundation-benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Foundation Benefit */
.foundation-benefit {
    width: calc(33.33% - 40px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    animation: pulse 1.5s infinite alternate; /* Add animation */
}
@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.foundation-benefit:hover {
    transform: translateY(-5px);
}

/* Icon */
.foundation-benefit i {
    font-size: 48px;
    color: #FF3131;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

/* Benefit Title */
.foundation-benefit h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}





/* Benefit Description */
.foundation-benefit p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

/* Hover Effect */
.foundation-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.foundation-benefit:hover i {
    transform: translateY(-3px);
}

.foundation-benefit:hover h3 {
    color: darkorange;
}

.foundation-benefit:hover p {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .foundation-benefit {
        width: calc(50% - 40px);
    }
}

@media (max-width: 576px) {
    .foundation-benefit {
        width: calc(100% - 40px);
    }
}


/* -------------------DONATION-----------*/

/* Donation Section */
.donation-section {
    padding: 50px 0;
    background-color: #f9f8f4;
}

/* Container */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

/* Section Title */
.section-title {
    font-size: 48px;
    color: #FF3131;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Section Description */
.section-description {
    font-size: 22px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

/* Donation Item */
.donation-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.donation-item:hover {
    transform: translateY(-5px);
}

/* Donation Title */
.donation-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Donation Description */
.donation-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Read More Link */
.read-more {
    color: #FF3131;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #F86C6B;
}



/* -----------------------about section----------------------*/

/* About Section */
.about-section {
    padding: 50px 0;
    background-color: #f9f8f4;
}



/* About Content */
.about-content {
    padding: 0 30px;
}

.about-content h2 {
    font-size: 48px;
    color: #FF3131;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #FF3131, #F86C6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite alternate;
}

.about-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-content a {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FF3131;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-content a:hover{
    color: #ffdcdc;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* About Image */
.about-img {
    overflow: hidden;
    border-radius: 8px;
}

.about-img img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.05);
}

/* Read More Link */
.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FF3131;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: darkorange;
    color: #fff;
}

/* -------------recent updates-------------------*/

/* Recent Updates Section */
.recent-updates-section {
    padding: 50px 0;
}

/* Title */
.titlepage h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.titlepage p {
    font-size: 22px;
    color: #666;
    font-weight: 400;
}

/* Latest Events */
.latest {
    background-color: #f9f8f4;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.latest:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.latest img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.latest:hover img {
    transform: scale(1.05);
}

.latest figcaption {
    font-size: 14px;
    color: #fff;
    background-color: #FF3131;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 20px;

}

.latest figcaption.yellow {
    background-color: #FFD700;
}

.latest .event-details h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.latest .event-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.latest .event-details .date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.latest .event-details a {
    color: #FF3131;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.latest .event-details a:hover {
    transition: all 0.3s ease;
    transform: translateY(-5px);   
}


/* --------------volunteer------------------*/

/* Container for Volunteer section */
.volunteer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
  }
  
  /* Individual container for each volunteer element */
  .volunteer-container {
    width: 32%; /* Adjust the width as needed */
    text-align: center;
    margin: 0 20px;
  }
  
  /* Heading styles */
  .volunteer-container h2 {
    font-size: 48px;
    color: #FF3131;
    margin-bottom: 40px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #FF3131, #F86C6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite alternate;
  }
  
  /* Paragraph styles */
  .volunteer-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  /* Button styles */
  .volunteer-container .btn-donate,
  .volunteer-container .btn-volunteer {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FF3131;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .volunteer-container .btn-donate:hover,
  .volunteer-container .btn-volunteer:hover {
    background-color: darkorange;
    color: white;
  }
    
  

/*--------------------------------------------------------------------- 
basic 
---------------------------------------------------------------------*/




html {
    overflow-x: hidden;
}

body {
    color: #666666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
}

a {
    color: #1f1f1f;
    text-decoration: none;
    outline: none ;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0;
    line-height: normal;
    color: #111111;
    margin: 0
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 13px
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none;
    opacity: 1
}

button:focus {
    outline: none;
}

ul,
li,
ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

p {
    margin: 0px;
    font-weight: normal;
    font-size: 17px;
    line-height: 28px;
    color: #2d2d2d;
}

a {
    color: #222222;
    text-decoration: none;
    outline: none;
}

a,
.btn {
    text-decoration: none ;
    outline: none ;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

 :focus {
    outline: 0;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent ;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}

.form-control:focus {
    border-color: #ffffff ;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
    border: none;
}

.badge {
    font-weight: 500;
}

blockquote {
    margin: 20px 0 20px;
    padding: 30px;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.full {
    float: left;
    width: 100%;
}

.full {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

.titlepage {
    padding-bottom: 40px;
}

.titlepage h2 {
    font-size: 45px;
    color: #FF3131;
    line-height: 50px;
    font-weight: bold;
    padding: 0;
    display: inline-block;
}

.titlepage p {
    padding-top: 0px;
}

.d_flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.read_more {
    font-size: 16px;
    background: #363636;
    max-width: 204px;
    width: 100%;
    transition: ease-in all 0.5s;
    color: #fff;
    display: block;
    height: 61px;
    line-height: 61px;
    text-align: center;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.read_more:hover {
    background: darkorange;
    color: #fff;
}

.text_align_left {
    text-align: left;
}

.text_align_right {
    text-align: right;
}

.text_align_center {
    text-align: center;
}

.img_responsive {
    max-width: 100%;
}


/**-- heading section --**/


/*---------------------------- preloader area ----------------------------*/

.loading_bg {
    position: fixed;
    z-index: 9999999;
    background: #fff;
    width: 100%;
    height: 100%;
}

.loading {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading img {
    width: 280px;
}



/*-- header --*/



/** end banner section **/




/** blog section **/

.blog {
    background: #fff;
    padding-top: 90px;
    padding-bottom: 60px;
}

.latest {
    background: #fff;
    padding: 10px;
    box-shadow: 0 0 69px rgba(13, 3, 3, 0.06);
    margin-bottom: 55px;
}

.latest figure {
    margin: 0;
}

.latest span {
    display: block;
    background: #121212;
    width: 98px;
    height: 43px;
    margin: 0 auto;
    text-align: center;
    z-index: 999999;
    line-height: 43px;
    color: #fff;
    margin-top: -43px;
    position: relative;
}

.yellow {
    background: #fdc001 !important;
}

.nostrud {
    padding: 20px 20px 0 20px;
}

.nostrud h3 {
    color: #333333;
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
}

.nostrud p {
    padding: 10px 0 40px 0;
    color: #272727;
}

.nostrud .read_more {
    margin: 0 auto;
    display: block;
    margin-bottom: -35px;
}


/** end blog section **/


/** schedule section **/


/** about section **/

.about {
    background: #fdc001;
    padding-top: 90px;
    padding-bottom: 90px;
}

.container_width {
    padding: 0 15px;
    margin: 0 auto;
    display: block;
    clear: both;
    width: 100%;
    max-width: 1380px;
}

.about_img  {
    margin: 0;
    position: relative;
}

.about_img ::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 60%;
    height: 100%;
    left: -30px;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.about_img  img {
    position: relative;
    z-index: 9999;
    padding: 30px 0;
}

.about .titlepage {
    padding-bottom: 0;
    max-width: 550px;
    width: 100%;
    float: left;
}

.about .titlepage p {
    padding-top: 20px;
}

.about .read_more {
    margin-top: 35px;
}

.about .read_more:hover {
    box-shadow: 0 0 16px 3px #635d5d38;
}


/** end about section **/


/** customers **/

.customers {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 110px;
}

.clients_banner .relative {
    position: inherit;
    bottom: 0;
    padding: 0;
}

.pro_file i img {
    border-radius: 50%;
}

.pro_file h4 {
    margin-top: 10px;
    color: #2d2d2d;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.pro_file span {
    display: block;
    line-height: 20px;
    font-size: 15px;
    color: #fdc001;
}

.test_box p {
    color: #2d2d2d;
    font-size: 17px;
    line-height: 30px;
    border: #bcbcbb solid 1px;
    padding: 60px 30px;
    border-radius: 10px;
}



/** end clients **/


/** footer **/
.footer-bottom { 
    display: flex; 
    justify-content: center; 
    border-top: 1px solid rgba(138, 208, 153, 0.36); 
    padding: 1em; 
    width: 100%; 
} 

.mekk { 
    width: 100%; 
    align-items: center; 
    text-align: center; 
    white-space: nowrap; 
    margin: 0;
}


.phone-email:hover{
    color: darkorange;
    }
          
          footer {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      color: #fff;
      background: rgb(105, 58, 0);
    }
    footer ul {
      list-style: none;
    }
    footer p {
      color: #fff;
      max-width: 25em;
      font-size: 0.9em;
      line-height: 23px;
    }
    footer a {
      color: #fff;
      text-decoration: none;
    }
    footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2em;
    }
    .footer .container {
      display: flex;
      justify-content: space-between;
      gap: 2em;
    }
    .brand {
      display: block;
      font-size: 1.8em;
      font-weight: 600;
      margin-bottom: 1em;
      text-decoration: none;
    }
    .brand:hover{
       color:darkorange;
    }
    .media-icons li,
    .services-icons li {
      display: inline-block;
      margin: 0.5em 0.5em 0.5em 0;
    }
    .media-icons a {
      font-size: 1.1em;
      width: 2em;
      height: 2em;
      border: 1px #fff solid;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: 0.3s;
    }
    .media-icons a:hover {
      background: darkorange;
      color:#fff;
    }
    .services-icons a {
      font-size: 1.6em;
    }
    .services-icons a:hover {
      color: #94fbab;
    }
    .footer-bottom {
      display: flex;
      justify-content: center;
      border-top: 1px solid rgba(138, 208, 153, 0.36);
      padding: 1em;
      width: 100%;
    }
    .footer .menu {
      margin-bottom: 2em;
    }
    .footer .menu li {
      display: inline-block;
      margin: 0 0.7em 0.7em 0;
      text-align: center;
    }
    .footer .menu a {
      transition: 0.3s;
      font-weight: 600;
      font-size: 17px;
    }
    .footer .menu a:hover {
      color: #FF3131;
    }
    .input-wrap {
      margin: 1em 0;
      display: flex;
    }
    .input-wrap input {
      padding: 0.5em;
      border: none;
      background: #20232a;
      color: #ccc;
    }
    .input-wrap input:focus {
      outline: none;
    }
    .input-wrap button {
      padding: 0.8em;
      background: #94fbab;
      border: none;
      color: #217634;
      transition: 0.3s;
    }
    .input-wrap button:hover {
      background: #fff;
      color: #111;
    }
    /* == responsive == */
    @media screen and (max-width: 900px) {
      .footer .container {
        flex-direction: column;
      }
    }

    .blog_page .footer {
        margin-top: 0px;
   }
   .inner_page .full_bg {
       height: 100%;
   }
   .inner_page .about {
        margin-top: 90px;
   }
   .inner_page .appointment {
        margin-top: 90px;
   }
   
   .portfolio_page .footer {
       margin-top: 60px;
   }
   #google_translate_element {
    text-align: center;
    margin: 0 auto;
    max-width: 1200px; /* Adjust this value according to your layout */
}
