
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

:root {
    --primary: #FF7722;
    --secondary: #8C4130;
    --accent: #FFC988;
    --light: #FFF7ED;
    --dark: #331A15;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

section {
    padding: 5rem 10%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.header {
    height: 80vh;
    background: url('img/a1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    width: 100%;
    max-width: 100%;
}

.header-content {
    max-width: 800px;
    padding: 0 2rem;
    width: 100%;
}

.header-content h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.primary-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
}

.primary-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}
.section-title:hover{
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--dark);
}

.teachings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.teaching-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.teaching-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.teaching-image {
    height: 200px;
    overflow: hidden;
}

.teaching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.teaching-card:hover .teaching-image img {
    transform: scale(1.1);
}

.teaching-content {
    padding: 1.5rem;
}

.teaching-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.teaching-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.scripture-section {
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
color: white; /* Ensure text is readable */
overflow: hidden;
}

.scripture-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('./im1.jpg') no-repeat center center/cover;
opacity: 0.3; /* Adjust for better readability */
z-index: -1;
}


.scripture-container {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.scripture-card {
    width: 250px;
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.scripture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.scripture-image {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    font-size: 1.5rem;
    font-weight: bolder;
    color: var(--secondary);
}

.scripture-content {
    padding: 1.5rem;
}

.scripture-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}



@media (max-width: 768px) {
.scripture-card {
width: 90%; /* Increase width for better responsiveness */
margin: 0 auto; /* Center align */
}

.scripture-content {
padding: 1rem;
}

.scripture-content h3 {
font-size: 1.2rem; /* Slightly smaller font */
}
}

@media (max-width: 480px) {
.scripture-card {
width: 100%; /* Full width for small screens */
border-radius: 8px; /* Slightly reduce border-radius */
}

.scripture-image {
height: 180px; /* Adjust image height */
font-size: 2.5rem; /* Adjust font size */
}

.scripture-content {
padding: 0.8rem;
}

.scripture-content h3 {
font-size: 1rem;
}
}

.philosophy-section {
    background-color: var(--light);
}

.philosophy-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    display: flex;
    gap: 2rem;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    font-size: 2.5rem;
    color: var(--secondary);
}

.philosophy-content {
    padding: 1.5rem;
}

.philosophy-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.philosophy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    /* linear-gradient(to right, rgb(237 208 201 / 90%), rgba(255, 119, 34, 0.7)), */
    background: linear-gradient(to right, rgb(237 208 201 / 90%), rgba(255, 119, 34, 0.7)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    /* color: white; */
    padding: 5rem 10%;
}

.cta-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}


.about-content {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: flex-start;
}

.about-image {
display: flex;
flex-direction: column; /* stack images vertically */
gap: 10px; /* spacing between images */
flex: 1;
min-width: 300px;
}

.about-image img {
width: 100%;
height: auto; /* maintain image aspect ratio */
object-fit: cover;
border-radius: 10px;
}


.about-text {
flex: 2;
min-width: 300px;
}

/* Responsive stack layout on small screens */
@media (max-width: 768px) {
.about-content {
flex-direction: column;
}

.about-image img {
max-width: 100%;
}

.quote-line {
text-align: center;
margin-left: 0 !important;
}
}



.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    color: var(--dark);
}

.about-text h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
.about-content {
gap: 2rem; /* Reduce gap for smaller screens */
}
}

@media (max-width: 768px) {
.about-content {
flex-direction: column; /* Stack items vertically */
text-align: center; /* Center align text */
gap: 1.5rem;
}

.about-image {
width: 90%; /* Reduce width for better fit */
margin: 0 auto;
}

.about-text h3 {
font-size: 1.6rem; /* Reduce heading size */
}

.about-text p {
font-size: 0.95rem; /* Adjust text size */
}
}

@media (max-width: 480px) {
.about-content {
gap: 1rem;
}

.about-image {
width: 100%; /* Full width for small screens */
}

.about-text h3 {
font-size: 1.4rem;
}

.about-text p {
font-size: 0.9rem;
line-height: 1.6;
}
}

/* Services Section */
.services {
    background-color: var(--light);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    height: 100px;
    background-color: var(--accent);
    color: var(--secondary);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Events Section */
.events {
    background-color:#f9e8d5;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.event-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.event-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 3rem;
    position: absolute;
    left: -1rem;
    top: -1rem;
    color: var(--accent);
    opacity: 0.5;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--primary);
}

/* Donation Section */
.donation {
    background-color: white;
    text-align: center;
}

.donation-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.donation-option {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s;
}

.donation-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--primary);
    color: white;
}

.donation-option h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.donation-option p {
    color: var(--secondary);
    transition: color 0.3s;
}

.donation-option:hover p {
    color: white;
}

.custom-donation {
    margin-top: 2rem;
}

.donation-input {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--accent);
    border-radius: 50px;
    font-size: 1rem;
    margin-right: 1rem;
    outline: none;
    transition: border-color 0.3s;
    width: 200px;
}

.donation-input:focus {
    border-color: var(--primary);
}

/* Contact Section */
.contact {
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.contact-text h3 {
    font-family: 'Lora', serif;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-text p {
    line-height: 1.7;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--accent);
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--primary);
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 10% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-links a {
    display: block;
    color: var(--light);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

   

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.8rem;
    }
}


@media (max-width: 992px) {
    .navbar {
        padding: 1.5rem 3%;
    }

    section {
        padding: 4rem 5%;
    }

    .header-content h1 {
        font-size: 2.8rem;
    }

    .philosophy-item {
        flex-direction: column;
    }

    .philosophy-icon {
        min-width: auto;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}



.gallery-container {
    padding: 20px;
}
.gallery-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}
.gallery-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}
.gallery {
display: flex;
justify-content: center;
/* flex-wrap: wrap; Enable wrapping */
gap: 15px;
width: auto;
}

.gallery img {
width: 100%;
max-width: 300px;
height: 285px;
border-radius: 10px;
transition: transform 0.3s;
/* object-fit: cover; Maintain aspect ratio */
background-color: #f0f0f0;
cursor: pointer;
}


.gallery img:hover {
transform: scale(1.05);
}

.gallery video {
width: 292px;
height: auto;
object-fit: contain;
border-radius: 10px;
}



@media (max-width: 768px) {
.gallery {
gap: 10px; /* Reduce gap for better spacing */
}

.gallery img {
width: 90%; /* Make images responsive */
height: auto; /* Maintain aspect ratio */
}
}


@media (max-width: 768px) {
.gallery img,
.gallery video {
width: 100%;
height: auto;
}
}

@media (max-width: 480px) {
.gallery img {
width: 100%; /* Full width for small screens */
border-radius: 8px; /* Slightly reduce border-radius */
}
}

.view-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #FF7722;
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-left: 45%;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.view-button:hover {
    background-color: #FF7722;
}

.gallery video {
    width: 395px;
    height: 385px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery video:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
.gallery {
gap: 10px; /* Reduce gap for better spacing */
}

.gallery video {
width: 90%; /* Make video responsive */
height: auto; /* Maintain aspect ratio */
}
}

@media (max-width: 480px) {
.gallery video {
width: 100%; /* Full width for small screens */
border-radius: 8px; /* Slightly reduce border-radius */
}
}

@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        align-items: center;
    }
    .gallery video {
        max-width: 90%;
    }
    .view-button{
        margin-left: 90px;
    }
}

.description {
    margin: 20px auto;
    width: 80%;
    font-size: 18px;
    line-height: 1.5;
}
.video-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}
.video-card {
    width: 45%;
    max-width: 600px;
    margin-bottom: 10px;
}
.video-frame {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    background-color: #f9f1e6;
    background-image: linear-gradient(rgba(255,165,0,0.3), rgba(255,165,0,0.3));
    border-radius: 8px;
    overflow: hidden;
}
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.play-button {
    width: 80px;
    height: 80px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.play-button::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 30px solid white;
    border-bottom: 20px solid transparent;
    margin-left: 8px;
}
.video-title {
    font-size: 40px;
    font-weight: bold;
    color: #8b4513;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: absolute;
    width: 100%;
    text-align: center;
    top: 30%;
}
.video-date {
    position: absolute;
    bottom: 15%;
    right: 15%;
    background-color: red;
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
}
.location-title {
    color: #8b4513;
    font-size: 24px;
    margin-top: 15px;
}
.watch-on {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
}
.youtube-icon {
    width: 80px;
    margin-left: 5px;
}


@media (max-width: 1024px) {
.video-card {
width: 60%; /* Slightly increase width for tablets */
}
}

@media (max-width: 768px) {
.video-card {
width: 80%; /* Make it take more space on smaller screens */
}

.description {
font-size: 16px; /* Reduce font size for better readability */
}
}

@media (max-width: 480px) {
.video-card {
width: 100%; /* Full width for mobile screens */
}

.description {
width: 90%;
font-size: 14px; /* Further reduce text size for mobile */
}

.play-button {
width: 60px; /* Reduce play button size */
height: 60px;
}

.play-button::after {
border-top: 15px solid transparent;
border-left: 25px solid white;
border-bottom: 15px solid transparent;
}
}

@media (max-width: 768px) {
    .video-container {
        flex-direction: column;
        align-items: center;
    }
    .video-card {
        width: 90%;
    }
    .description {
        width: 90%;
    }
}
.main-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #8C4130;
}
.red-bar {
    background-color: #FF7722;
    color: white;
    padding: 10px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.slider-container {
position: relative;

height: 90vh;
width: 100%;
margin: auto;
overflow: hidden;
position: relative;

box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.slider {
display: flex;
transition: transform 0.5s ease-in-out;
}

.slide {

position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
width: 100%;
display: block;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide.active img {
    transform: scale(1.1);
}

.text {
position: absolute;
top: 50%;
margin-left: -20%;
transform: translate(-50%, -50%);
/* background: rgba(0, 0, 0, 0.6); Black transparent background */
color: #fff;
padding: 10px 20px;
font-size: 30px;
font-weight: bold;
border-radius: 5px;
}

/* Responsive font size and layout for small screens */
@media (max-width: 768px) {
.text {
font-size: 15px;
padding: 8px 16px;
margin-left: 190px;
}
}

@media (max-width: 480px) {
.text {
font-size: 15px;
padding: 6px 12px;
}
}

/* Navigation Buttons */
.prev, .next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 0, 0.5);
color: white;
border: none;
cursor: pointer;
padding: 10px;
font-size: 24px;
z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
background-color: rgba(0, 0, 0, 0.8);
}


/* Dots (Indicators) */
.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 5px;
    background-color: gray;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

@media (max-width: 768px) {
.slider-container {
height: 205px;
margin-top: 85px;
max-width: 100%; /* Full width on smaller devices */
}


.slide img{
height: 25vh;
}
}

@media (max-width: 480px) {
.text {
       font-size: 10px;
padding: 5px 10px;
margin-left: 125px;
}
}
.logo-img{
height: 110px;
padding: 13px;
margin: -37px;

}
@media (max-width: 480px) {
.logo-img {
height: 110px;
padding: 13px;
margin-left: -15px;  
}
}

@media(max-width:480px){
.mobile-menu{
margin-left: 35px;
}
}
.footer-logo{
height: 130px;
/* padding: 13px; */
margin-left: 80px; 
}
@media (max-width: 480px) {
.footer-logo {
height: 110px;
/* padding: 13px; */
margin-left: -25px;  
}
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 10px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid #FF7722;
        color: #8C4130;
        font-weight: bolder;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu {
        display: block;
               margin-left: 35px;
    }

    .nav-links.show {
        margin-top: 35px;
        display: flex;
        color: #FF7722;
        background-color: #FFC988;
        
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: relative;
        top: 0;
        display: none;
        background-color: #444;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: white;
    }
}

/* From Uiverse.io by mawi-man */ 
.custom-button {
background-color: #FF7722; /* Button background color */
color: #fff; /* Text color */
border: none;
padding: 15px 30px;
font-size: 14px;
font-weight: bold;
border-radius: 30px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
z-index: 1;
}

/* Tablet view */
@media (max-width: 768px) {
.custom-button {
padding: 12px 24px;
font-size: 13px;
}
}

/* Mobile view */
@media (max-width: 480px) {
.custom-button {
padding: 10px 20px;
font-size: 12px;
/* width: 100%; Optional: makes the button full-width */
text-align: center;
}
}

.custom-button::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 300%;
height: 300%;
background-color: #FF7722;
color: #fff;
transition: all 0.3s ease;
border-radius: 50%;
z-index: -1;
transform: translate(-50%, -50%) scale(0);
}

.custom-button:hover::before {
transform: translate(-50%, -50%) scale(1);
opacity: 0.9;
}

.custom-button:hover {
box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
transform: translateY(-5px);
color: #fff;
}

/* Effect of waves under pressure */
.custom-button:active::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
transform: translate(-50%, -50%) scale(0);
animation: ripple 0.6s ease-out;
z-index: -1;
}

@keyframes ripple {
to {
transform: translate(-50%, -50%) scale(4);
opacity: 0;
}
}

/* Animated text glow effect */
.custom-button::after {
content: "";
position: absolute;
top: 0;
left: -75%;
width: 50%;
height: 100%;
background: linear-gradient(
120deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.8) 50%,
rgba(255, 255, 255, 0) 100%
);
transform: skewX(-25deg);
transition: all 0.3s ease;
}

.custom-button:hover::after {
left: 100%;
transition: all 0.5s ease;
}

.slide video {
width: 100%;
height: 100%;
object-fit: cover;
}

/* From Uiverse.io by misaraadel */ 
.socail-media {
display: flex;
align-items: center;
align-content: center;
justify-content: center;
gap: 20px;
list-style: none;
margin-top: -30px;
}

/* Base style (Desktop First) */
.socail-media-1,
.socail-media-2,
.socail-media-3 {
width: 50px;
height: 50px;
border-radius: 50%;
color: white;
display: flex;
overflow: hidden;
align-items: center;
justify-content: center;
position: relative;
z-index: 9;
font-size: 20px; /* You can adjust this based on your icons */
}

/* Specific colors */
.socail-media-1 {
background-color: #82b3f3;
border: 1px solid #2247ff;
}
.socail-media-2 {
background-color: #E1306C;
border: 1px solid #E1306C;
}
.socail-media-3 {
background-color: #FF0000;
border: 1px solid #FF0000;
}

/* Responsive adjustments for small screens */
@media (max-width: 768px) {
.socail-media-1,
.socail-media-2,
.socail-media-3 {
width: 40px;
height: 40px;
font-size: 16px;
}
}

@media (max-width: 480px) {
.socail-media-1,
.socail-media-2,
.socail-media-3 {
width: 35px;
height: 35px;
font-size: 14px;
}
}



.socail-media li a {
width: 50px;
height: 50px;
border-radius: 50%;
/* background-color: #2268ff; */
display: flex;
overflow: hidden;
align-items: center;
align-content: center;
justify-content: center;
position: relative;
z-index: 9;
/* border: 1px solid #2247ff; */
}


.socail-media li a svg {
width: 24px;
height: 24px;
-o-object-fit: contain;
object-fit: contain;
filter: invert(100%) sepia(0%) saturate(7455%) hue-rotate(57deg) brightness(108%) contrast(105%);
}

.socail-media li a::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
-webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
background-color: #fff;
z-index: -1;
top: 0;
left: 0;
opacity: 0;
}

.socail-media li a:hover::after {
animation: sideClip 0.5s linear;
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
opacity: 1;
}

.socail-media li a:hover svg {
animation: fadeInLeft 0.3s linear both;
filter: invert(52%) sepia(85%) saturate(2286%) hue-rotate(54deg) brightness(92%) contrast(84%);
}

@keyframes sideClip {
0% {
clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
}

50% {
clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
}

100% {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
}

@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}

to {
opacity: 1;
transform: none;
}
}



/* Responsive Design */
@media (max-width: 768px) {
.socail-media {
justify-content: center;
gap: 10px;
}
.socail-media li a {
width: 40px;
height: 40px;
}
.socail-media li svg {
width: 18px;
height: 18px;
}
}

@media (max-width: 480px) {
.socail-media {
  gap: 5px;
margin-top: -25px;
}
.socail-media li a {
width: 35px;
height: 35px;
margin-top: 0px;
}
.socail-media li svg {
width: 16px;
height: 16px;
}
}

/* Optional animation (fadeInLeft) */
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translateX(-20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}


.events .section-title {
text-align: center;
font-size: 2rem;
margin-bottom: 30px;
color: #222;
}

.events p {
margin-bottom: 20px;
}

.events h4 {
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.3rem;
color: #FF7722;
}

.events blockquote {
border-left: 4px solid #FF7722;
padding-left: 20px;
margin: 20px 0;
font-style: italic;
background: #f9f9f9;
}

.events .points-list {
padding-left: 20px;
margin-bottom: 30px;
}

.events .points-list li {
margin-bottom: 12px;
list-style-type: disc;
}

.events .quote-line {
margin-top: 30px;
font-size: 1.1rem;
text-align: center;
}

.events .final-slogan {
margin-top: 20px;
font-weight: bold;
text-align: center;
font-size: 1.2rem;
color: #444;
}


.cta-section {
background-color: #fff7f0;
padding: 40px 20px;
border-radius: 12px;

margin: 0 auto;
box-shadow: 0 0 10px rgba(0,0,0,0.08);
font-family: 'Segoe UI', sans-serif;
}

.cta-title {
font-size: 1.8rem;
color: #FF7722;
text-align: center;
margin-bottom: 20px;
}

.cta-text {
font-size: 1.1rem;
margin-bottom: 20px;
/* color: #fff; */
line-height: 1.6;
}

.cta-points {
padding-left: 20px;
margin-bottom: 25px;
}

.cta-points li {
margin-bottom: 12px;
font-size: 1rem;
color: #fff;
}

.cta-contact {
font-size: 1.1rem;
text-align: center;
color: #fff;
font-weight: 600;
}

.call-now {
width: 45px;
height: 45px;
position: fixed;
/* bottom: 20px; */
right: 24px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 12px 20px;
font-size: 1.1rem;
color: #fff;
background: linear-gradient(90deg, hsl(229, 81%, 51%), #0B57D0);
/* Orange Gradient */
border-radius: 50%;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
cursor: pointer;
animation: slideIn 1.5s ease-in-out;
transition: transform 0.3s ease, box-shadow 0.3s ease;
z-index: 1000;
bottom: 110px;
/* Ensures it stays on top */
}


.whatsapp-icon {      
width: 45px; /* Adjust width */
height: 45px; /* Adjust height */
object-fit: contain; /* Ensure aspect ratio is maintained */
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25D366;
color: white;
border-radius: 50%;
padding: 10px; /* Adjust padding to fit icon better */
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
cursor: pointer;
z-index: 1000;
display: flex; /* Center the image */
align-items: center; /* Center vertically */
justify-content: center; /* Center horizontally */
margin-bottom: 40px;
margin-right: 0px;

}

/* Add this CSS to your existing styles */

/* General Responsive Styles */
body {
font-size: 16px; /* Adjust base font size */
}

.navbar {
width: 100%;
padding: 1.5rem 10%;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
font-family: 'Lora', serif;
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
text-decoration: none;
display: flex;
align-items: center;
}

.logo-icon {
margin-right: 10px;
font-size: 2rem;
color: var(--primary);
}

.nav-links {
display: flex;
gap: 2rem;
margin-left: 25px;
}

.nav-links a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
position: relative;
transition: color 0.3s;
}

.nav-links a:hover {
color: var(--primary);
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary);
transition: width 0.3s;
}

.nav-links a:hover::after {
width: 100%;
}

.donate-btn {
background-color: var(--primary);
color: white;
border: none;
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s;
}

.donate-btn:hover {
background-color: var(--secondary);
}

.mobile-menu {
display: none;
font-size: 1.5rem;
cursor: pointer;
}

@media (max-width: 768px) {
.navbar {
padding: 1rem 5%;
}
.nav-links {
display: none;
}
.mobile-menu {
display: block;
        margin-left: 35px;
}
.section-title {
font-size: 2rem;
}
}

@media (max-width: 576px) {
.section-title {
font-size: 1.8rem;
}
}

.about-content {
display: flex;
align-items: stretch; /* Text aur image ko same height me stretch karne ke liye */
gap: 30px; /* Image aur text ke beech thoda gap */
flex-wrap: wrap; /* Responsive ke liye, chhoti screen pe wrap kar jaaye */
}

.about-image {
flex: 1; /* Image aur text ka ratio barabar karne ke liye */
min-width: 300px; /* Responsive me image chhoti screen pe bhi acchi dikhe */
}

.about-image img {
width: 100%;
height: 100%; /* Parent ke hisaab se poori height le */
object-fit: cover; /* Image ko achha dikhane ke liye bina stretch kiye */
border-radius: 10px; /* Aapke image ke jaise soft corners */
}

.about-text {
flex: 2; /* Text ko thoda zyada space dena */
min-width: 300px;
display: flex;
flex-direction: column;
justify-content: center; /* Text ko vertical center karne ke liye */
}


.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    color: var(--dark);
}

.about-text h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
.about-content {
gap: 2rem; /* Reduce gap for smaller screens */
}
}

@media (max-width: 768px) {
.about-content {
flex-direction: column; /* Stack items vertically */
text-align: center; /* Center align text */
gap: 1.5rem;
}

.about-image {
width: 90%; /* Reduce width for better fit */
margin: 0 auto;
}

.about-text h3 {
font-size: 1.6rem; /* Reduce heading size */
}

.about-text p {
font-size: 0.95rem; /* Adjust text size */
}
}




@media (max-width: 480px) {
.about-content {
gap: 1rem;
}

.about-image {
width: 100%; /* Full width for small screens */
}

.about-text h3 {
font-size: 1.4rem;
}

.about-text p {
font-size: 0.9rem;
line-height: 1.6;
}
}

/* Services Section */
.services {
    background-color: var(--light);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    height: 100px;
    background-color: var(--accent);
    color: var(--secondary);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Events Section */
.events {
    background-color:#f9e8d5;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.event-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.event-content p {
font-size: 1.6rem; /* Further adjust font size for section titles */
}

.section-subtitle {
font-size: 0.9rem; /* Further adjust font size for section subtitles */
}

.service-card, .event-card, .teaching-card, .scripture-card, .philosophy-item, .testimonial {
padding: 0.8rem; /* Further adjust padding for cards */
}

.service-card h3, .event-card h3, .teaching-card h3, .scripture-card h3, .philosophy-item h3, .testimonial h3 {
font-size: 1.1rem; /* Further adjust font size for card titles */
}

.service-card p, .event-card p, .teaching-card p, .scripture-card p, .philosophy-item p, .testimonial p {
font-size: 0.9rem; /* Further adjust font size for card text */
}

.footer-content p, .footer-links a {
font-size: 0.8rem; /* Further adjust font size for footer text */
}


@media (max-width: 480px) {
.navbar {
       padding: 1.9rem 1%; /* Further adjust padding for very small screens */
}

.header {
height: 50vh; /* Further adjust header height */
}

.header-content h1 {
font-size: 1.6rem; /* Further adjust font size for header */
}

.header-content p {
font-size: 0.8rem; /* Further adjust font size for header */
}

.section-title {
font-size: 1.4rem; /* Further adjust font size for section titles */
}

.section-subtitle {
font-size: 0.8rem; /* Further adjust font size for section subtitles */
}

.service-card, .event-card, .teaching-card, .scripture-card, .philosophy-item, .testimonial {
padding: 0.6rem; /* Further adjust padding for cards */
}

.service-card h3, .event-card h3, .teaching-card h3, .scripture-card h3, .philosophy-item h3, .testimonial h3 {
font-size: 1rem; /* Further adjust font size for card titles */
}

.service-card p, .event-card p, .teaching-card p, .scripture-card p, .philosophy-item p, .testimonial p {
font-size: 0.8rem; /* Further adjust font size for card text */
}

.footer-content p, .footer-links a {
font-size: 0.7rem; /* Further adjust font size for footer text */
}
}


.rama-style {
font-family: 'Lohit Devanagari';
font-size: 48px;
color: white;
margin-top: -47px;
/* background-color: black; */
padding: 20px;
display: inline-block;
}
.txt-1{
margin-left: -7%;
}

@media (max-width: 480px) {
.txt-1 {
margin-right: 0px;      
}
}

.mrg{
margin-left: 100px;
}
.mrg-1{
margin-left: 55px;
}

@media (max-width: 768px) {
.mrg{
margin-left: 30px;
}
}

@media (max-width: 768px) {
.mrg-1{
margin-left: 15px;
}
}





#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.3;
}

.navbar {
    width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}


.header {
height: 60vh;
opacity: 0.7;
background:  url('img/banner.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
margin-top: 80px;
}


.header-content {
    max-width: 800px;
    padding: 0 2rem;
}

.header-content h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.primary-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
}

.primary-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

section {
    padding: 5rem 10%;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}
.section-title:hover{
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--dark);
}

.teachings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.teaching-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.teaching-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.teaching-image {
    height: 200px;
    overflow: hidden;
}

.teaching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.teaching-card:hover .teaching-image img {
    transform: scale(1.1);
}

.teaching-content {
    padding: 1.5rem;
}

.teaching-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.teaching-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.scripture-section {
position: relative;
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
color: white; /* Ensure text is readable */
overflow: hidden;
}

.scripture-section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('./im1.jpg') no-repeat center center/cover;
opacity: 0.3; /* Adjust for better readability */
z-index: -1;
}


.scripture-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.scripture-card {
    width: 250px;
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.scripture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.scripture-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    font-size: 3rem;
    color: var(--secondary);
}

.scripture-content {
    padding: 1.5rem;
}

.scripture-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}



@media (max-width: 768px) {
.scripture-card {
width: 90%; /* Increase width for better responsiveness */
margin: 0 auto; /* Center align */
}

.scripture-content {
padding: 1rem;
}

.scripture-content h3 {
font-size: 1.2rem; /* Slightly smaller font */
}
}

@media (max-width: 480px) {
.scripture-card {
width: 100%; /* Full width for small screens */
border-radius: 8px; /* Slightly reduce border-radius */
}

.scripture-image {
height: 180px; /* Adjust image height */
font-size: 2.5rem; /* Adjust font size */
}

.scripture-content {
padding: 0.8rem;
}

.scripture-content h3 {
font-size: 1rem;
}
}

.philosophy-section {
    background-color: var(--light);
}

.philosophy-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    display: flex;
    gap: 2rem;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    font-size: 2.5rem;
    color: var(--secondary);
}

.philosophy-content {
    padding: 1.5rem;
}

.philosophy-content h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.philosophy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    background: linear-gradient(to right, rgba(140, 65, 48, 0.9), rgba(255, 119, 34, 0.7)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 10%;
}

.cta-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.about-content {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: flex-start;
}

.about-image {
display: flex;
flex-direction: column; /* stack images vertically */
gap: 10px; /* spacing between images */
flex: 1;
min-width: 300px;
}

.about-image img {
width: 100%;
height: auto; /* maintain image aspect ratio */
object-fit: cover;
border-radius: 10px;
}


.about-text {
flex: 2;
min-width: 300px;
}

/* Responsive stack layout on small screens */
@media (max-width: 768px) {
.about-content {
flex-direction: column;
}

.about-image img {
max-width: 100%;
}

.quote-line {
text-align: center;
margin-left: 0 !important;
}
}


.about-text {
flex: 2; /* Text ko thoda zyada space dena */
min-width: 300px;
display: flex;
flex-direction: column;
justify-content: center; /* Text ko vertical center karne ke liye */
}




.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    color: var(--dark);
}

.about-text h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
.about-content {
gap: 2rem; /* Reduce gap for smaller screens */
}
}

@media (max-width: 768px) {
.about-content {
flex-direction: column; /* Stack items vertically */
text-align: center; /* Center align text */
gap: 1.5rem;
}

.about-image {
width: 90%; /* Reduce width for better fit */
margin: 0 auto;
}

.about-text h3 {
font-size: 1.6rem; /* Reduce heading size */
}

.about-text p {
font-size: 0.95rem; /* Adjust text size */
}
}

@media (max-width: 480px) {
.about-content {
gap: 1rem;
}

.about-image {
width: 100%; /* Full width for small screens */
}

.about-text h3 {
font-size: 1.4rem;
}

.about-text p {
font-size: 0.9rem;
line-height: 1.6;
}
}





        /* Contact Section */
        .contact {
            background-color: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-top: 0.2rem;
        }

        .contact-text h3 {
            font-family: 'Lora', serif;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .contact-text p {
            line-height: 1.7;
        }

        .contact-form {
            text-align: center;
    margin-left: 235px;
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
            font-weight: 500;
        }

        .form-input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--accent);
            border-radius: 5px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            border-color: var(--primary);
        }

        .form-textarea {
            height: 150px;
            resize: vertical;
        }

       
.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

.contact-box {
    background: #fff;
    text-align: center;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease-in-out;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease-in-out;
}

.contact-box:hover .icon {
    background: #f39c12; /* Change as per your theme */
}

.icon i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.contact-box:hover .icon i {
    color: #fff;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}



/* Responsive Design */
@media (max-width: 768px) {
    .contact-box {
        width: 90%;
        padding: 20px;
    }
}


        .contact-form h2 {
            margin-bottom: 15px;
            color: #FF7722;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .contact-form button {
            width: 100%;
            padding: 10px;
            background: #FF7722;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
        }

        .contact-form button:hover {
            background: #FF7722;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 20px;
            }

            .contact-form, .contact-map {
                width: 100%;
            }
        }



       

        .philosophy-section {
            background-color: var(--light);
        }

        .philosophy-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 3rem;
        }

        .philosophy-item {
            display: flex;
            gap: 2rem;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .philosophy-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .philosophy-icon {
            min-width: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent);
            font-size: 2.5rem;
            color: var(--secondary);
        }

        .philosophy-content {
            padding: 1.5rem;
        }

        .philosophy-content h3 {
            font-family: 'Lora', serif;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .philosophy-content p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

       

        /* Events Section */
        .events {
            background-color:#f9e8d5;
        }

        .event-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .event-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .event-image {
            height: 200px;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .event-card:hover .event-image img {
            transform: scale(1.1);
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-date {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }

        .event-content h3 {
            font-family: 'Lora', serif;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .event-content p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        

        .gallery-container {
            padding: 20px;
        }
        .gallery-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .gallery-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }
    .gallery-container {
    padding: 20px;
}


/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery {
        gap: 10px; /* Reduce gap for better spacing on smaller screens */
    }

    .gallery img {
        width: 90%; /* Make images responsive */
        height: auto; /* Maintain aspect ratio */
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 100%; /* Full width for small screens */
        border-radius: 8px; /* Slightly reduce border-radius */
    }
}


        .view-button {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #FF7722;
            color: white;
            text-decoration: none;
            font-size: 16px;
            margin-left: 45%;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .view-button:hover {
            background-color: #FF7722;
        }

        .gallery video {
            width: 395px;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .gallery video:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
    .gallery {
        gap: 10px; /* Reduce gap for better spacing */
    }

    .gallery video {
        width: 90%; /* Make video responsive */
        height: auto; /* Maintain aspect ratio */
    }
}

@media (max-width: 480px) {
    .gallery video {
        width: 100%; /* Full width for small screens */
        border-radius: 8px; /* Slightly reduce border-radius */
    }
}
       
        @media (max-width: 768px) {
            .gallery {
                flex-direction: column;
                align-items: center;
            }
            .gallery video {
                max-width: 90%;
            }
            .view-button{
                margin-left: 90px;
            }
        }


       

        .philosophy-section {
            background-color: var(--light);
        }

        .philosophy-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 3rem;
        }

        .philosophy-item {
            display: flex;
            gap: 2rem;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .philosophy-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .philosophy-icon {
            min-width: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent);
            font-size: 2.5rem;
            color: var(--secondary);
        }

        .philosophy-content {
            padding: 1.5rem;
        }

        .philosophy-content h3 {
            font-family: 'Lora', serif;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .philosophy-content p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .cta-section {
            text-align: center;
            background: linear-gradient(to right, rgba(140, 65, 48, 0.9), rgba(255, 119, 34, 0.7)), url('/api/placeholder/1200/600');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 10%;
        }

        .cta-title {
            font-family: 'Lora', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-text {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

       
      

.terms-conditions {
  margin-top: 40px;
  padding: 25px;
  background-color: #fff8f1;
  border: 2px solid #FF7722;
  border-radius: 10px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.terms-conditions h3 {
  font-size: 24px;
  color: #FF7722;
  margin-bottom: 20px;
}

.terms-conditions p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.terms-conditions ul {
  list-style-type: square;
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-conditions ul li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.terms-conditions ul ul {
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: 20px;
}

.terms-conditions a {
  color: #FF7722;
  text-decoration: underline;
}

.terms-conditions a:hover {
  color: #cc5e1a;
}





.disclaimer-section {
margin-top: 40px;
padding: 25px;
background-color: #fff9f5;
border: 2px solid #FF7722;
border-radius: 10px;
font-family: 'Arial', sans-serif;
color: #333;
}

.disclaimer-section h3 {
font-size: 24px;
color: #FF7722;
margin-bottom: 20px;
}

.disclaimer-section p {
font-size: 16px;
margin-bottom: 20px;
line-height: 1.6;
}

.disclaimer-section ul {
list-style-type: square;
padding-left: 20px;
margin-bottom: 20px;
}

.disclaimer-section ul li {
font-size: 16px;
margin-bottom: 10px;
line-height: 1.5;
}

.disclaimer-section ul ul {
list-style-type: disc;
margin-top: 5px;
margin-left: 20px;
margin-bottom: 10px;
}

.disclaimer-section a {
color: #FF7722;
text-decoration: underline;
}

.disclaimer-section a:hover {
color: #cc5e1a;
}




.donation-section {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 40px;
            margin: 40px auto;
            max-width: 800px;
        }
        
        .donation-section h3 {
            color: var(--primary);
            margin-bottom: 30px;
            text-align: center;
            font-size: 1.8rem;
        }
        
        .amount-options {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
            justify-content: center;
        }
        
        .amount-option {
            background-color: var(--light);
            border: 2px solid var(--primary);
            border-radius: 5px;
            padding: 15px 25px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .amount-option:hover, .amount-option.selected {
            background-color: var(--primary);
            color: white;
        }
        
        .custom-amount {
            width: 100%;
            margin: 20px 0;
        }
        
        .custom-amount input {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1.1rem;
        }
        
        .manual-donation {
            margin-top: 40px;
            padding: 20px;
            background-color: #f8f8f8;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
        }
        
        .manual-donation h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .bank-details, .upi-details {
            margin-bottom: 20px;
        }
        
        .bank-details p, .upi-details p {
            margin-bottom: 5px;
        }
        
        .qr-code {
            display: flex;
            justify-content: center;
            margin: 15px 0;
        }
        
        .note {
            font-style: italic;
            background-color: var(--light);
            padding: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
        }
        
        .donor-info {
            margin: 30px 0;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .btn-donate {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 5px;
            cursor: pointer;
            display: block;
            width: 100%;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-donate:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .secure-badge {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .causes {
            padding: 60px 20px;
            background-color: var(--light);
            text-align: center;
        }
        
        .causes h3 {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .causes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .cause-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .cause-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .cause-img {
            height: 300px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }
        
        .cause-content {
            padding: 20px;
        }
        
        .cause-content h4 {
            margin-bottom: 10px;
            color: var(--secondary);
        }
        @media (max-width: 768px) {
            .donation-section {
                padding: 20px;
            }
          
            
            .causes-grid {
                grid-template-columns: 1fr;
            }
        }



.privacy-policy {
  margin-top: 40px;
  padding: 25px;
  background-color: #fef8f5;
  border: 2px solid #FF7722;
  border-radius: 10px;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.privacy-policy h3 {
  font-size: 24px;
  color: #FF7722;
  margin-bottom: 20px;
}

.privacy-policy p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.privacy-policy ul {
  list-style-type: square;
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy ul li {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.privacy-policy ul ul {
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: 20px;
}

.privacy-policy a {
  color: #FF7722;
  text-decoration: underline;
}

.privacy-policy a:hover {
  color: #cc5e1a;
}


   


.refund-policy-section {
padding: 25px;
margin-top: 40px;
background-color: #fff8f3;
border: 2px solid #FF7722;
border-radius: 10px;
font-family: 'Arial', sans-serif;
color: #333;
}

.refund-policy-section h3 {
font-size: 24px;
color: #FF7722;
margin-bottom: 20px;
}

.refund-policy-section p {
font-size: 16px;
margin-bottom: 20px;
line-height: 1.6;
}

.refund-policy-section ul {
list-style-type: square;
padding-left: 20px;
margin-bottom: 20px;
}

.refund-policy-section ul li {
font-size: 16px;
margin-bottom: 10px;
line-height: 1.5;
}

.refund-policy-section ul ul {
list-style-type: disc;
margin-left: 20px;
margin-top: 5px;
margin-bottom: 10px;
}

.refund-policy-section a {
color: #FF7722;
text-decoration: underline;
}

.refund-policy-section a:hover {
color: #cc5e1a;
}





   