        html {
    scroll-behavior: smooth;
}
        :root {
            --maroon: #800000;
            --saffron: #FF9933;
            --muted-gold: #D4A017;
            --ivory: #FFFFF0;
            --grey: #D3D3D3;
        }
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            overflow-x: hidden;
            background: linear-gradient(180deg, #011415 0%, #062B2E 100%);    
            color: var(--ivory);
        }
        h2, h3, h4, h5, h6 {
            font-family: 'Noto Serif Gurmukhi', serif;
        }
        h1 {
            font-family: 'Playfair Display', serif;
            color: var(--saffron);
        }
        section {
            width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            padding-top: 8rem;
        }
        #hero-section {
            background: transparent;
            position: relative;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }
        .hero-carousel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
        }
        .hero-carousel-track {
            display: flex;
            width: 500%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        .hero-carousel-slide {
            flex: 0 0 20%;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
        }
        .hero-carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            /* color: var(--ivory); */
            text-align: center;
            max-width: 100%;
            padding-left: 1.25rem;
            width: auto;
            padding-top: 10rem;
        }
        #hero-section h1 {
            color: var(--saffron);
            font-size: 80px;
            text-shadow: 0 0 10px rgba(255, 153, 51, 0.5);
        }
        #hero-section h2, #hero-section p, section h2, section p {
            text-shadow: 0 0 5px rgba(255, 255, 240, 0.3);
        }
        #about-us-section {
            background: transparent;
            align-items: center;
            text-align: left;
            flex-direction: row;
        }
        #services-section {
            background: transparent;
            align-items: center;
            text-align: center;
            justify-content: center;
        }
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-card:hover {
            transform: scale(1.05);
        }
        .font-gurmukhi { font-family: 'Noto Serif Gurmukhi', serif; }
        .font-sans { font-family: 'Inter', sans-serif; }
        .growing-line {
            background: var(--maroon);
            top: 0;
            transition: height 0.1s ease;
            z-index: 5;
        }
        .paper-texture {
            background: url('paper-texture.png') repeat;
            background-size: 200px;
            border: 1px solid var(--muted-gold);
        }
        .sepia { filter: sepia(100%) hue-rotate(-50deg) saturate(400%); }
        #community-newsletter-section {
            position: relative;
            background: var(--ivory);
            min-height: 100vh;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }
        .partners-carousel {
            width: 100%;
            overflow: hidden;
            position: relative;
            z-index: 2;
        }
        .partners-track {
            display: flex;
            width: max-content;
            animation: scroll 20s linear infinite;
        }
        .partners-track:hover {
            animation-play-state: paused;
        }
        .partner-logo {
            flex: 0 0 auto;
            width: 200px;
            height: 120px;
            margin: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            transition: transform 0.3s ease;
        }
        .partner-logo:hover {
            transform: scale(1.1);
        }
        .partner-logo img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .newsletter-form {
            max-width: 600px;
            width: 100%;
            text-align: center;
            margin-top: 4rem;
            z-index: 2;
        }
        .newsletter-input-container {
            position: relative;
            width: 100%;
            border: 1px solid var(--muted-gold);
            border-radius: 2rem;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            color: var(--maroon);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
        }
        .newsletter-input:focus {
            outline: none;
        }
        .newsletter-button {
            background: linear-gradient(45deg, var(--muted-gold), var(--saffron));
            color: var(--maroon);
            padding: 1rem 1.5rem;
            border-radius: 0 0 0 0;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: box-shadow 0.3s ease;
        }
        .newsletter-button:hover {
            box-shadow: 0 0 12px rgba(255, 153, 51, 0.5);
        }
        .newsletter-button.pulse {
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.5); }
            70% { box-shadow: 0 0 0 10px rgba(255, 153, 51, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0); }
        }
        .toast-message {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--saffron);
            color: var(--maroon);
            padding: 1rem 2rem;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            z-index: 100;
        }
        @media (max-width: 768px) {
            #community-newsletter-section {
                padding: 2rem 1rem;
            }
            .section{
                min-height: 100vh;
            }
            section{
                min-height: auto;
            }
            .partner-logo {
                width: 150px;
                height: 100px;
                margin: 0 1rem;
            }
            .newsletter-form {
                margin-top: 2rem;
            }
            .newsletter-input-container {
                flex-direction: row;
            }
            .newsletter-input {
                padding: 0.75rem 1rem;
            }
            .newsletter-button {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
            #hero-section h1{
                font-size: 36px;
            }
        }
        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon) 50%, var(--maroon) 100%);
            color: var(--ivory);
            border: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.4);
        }
        .floating {
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        #about-us-section .services-left {
            width: 35%;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        #about-us-section .services-right {
            width: 65%;
            height: 700px;
            display: flex;
            justify-content: right;
            align-items: center;
        }
        .services-card {
            background: white;
            border-radius: 56px 0 0 56px;
            padding: 2rem;
            right: -1;
            width: 100%;
            max-width: 800px;
            height: 560px;
            color: var(--maroon);
        }
        .service-item {
            display: flex;
            margin-bottom: 1.5rem;
            opacity: 0;
        }
        .service-item i {
            font-size: 2rem;
            margin-right: 1rem;
            color: var(--saffron);
        }
        .service-item div {
            flex: 1;
        }
        .service-item h3 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: var(--maroon);
        }
        .service-item p {
            font-size: 1rem;
            color: #666;
            text-shadow: none;
        }
        .services-carousel {
            width: 100%;
            overflow: hidden;
            margin: 2rem 0;
        }
        .services-track {
            display: flex;
            width: max-content;
            animation: scroll-services 15s linear infinite;
        }
        .services-track img {
            width: 120px;
            height: 60px;
            margin: 0 1rem;
            object-fit: contain;
        }
        .logo-container {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            margin-right: 5px;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .logo-container img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }
        @keyframes scroll-services {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @media (max-width: 768px) {
            #about-us-section {
                flex-direction: column;
            }
            #about-us-section .services-left {
                width: 100%;
                padding: 1rem;
            }
            #about-us-section .services-right {
                width: 100%;
                padding: 1rem;
            }
            .services-card {
                padding: 1.5rem;
                border-radius: 0px 56px 0px 56px;
            }
            .service-item i {
                font-size: 1.5rem;
            }
            .service-item h3 {
                font-size: 1.1rem;
            }
            .service-item p {
                font-size: 0.9rem;
            }
            .services-track img {
                width: 80px;
                height: 40px;
            }
            .logo-container {
                width: 80px;
                height: 80px;
            }
        }
        #services-section {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem 1rem;
        }
        .donation-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            width: 100%;
            gap: 2rem;
        }
        .donation-card {
            background: white;
            border-radius: 36px;
            padding: 1.5rem;
            max-width: 300px;
            height: 400px;
            width: 100%;
            color: var(--maroon);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            opacity: 0;
        }
        .donation-card:hover {
            transform: scale(1.05);
        }
        .donation-card h3 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .donation-card p {
            font-size: 0.875rem;
            color: black;
            font-weight: 600;
            text-shadow: none;
        }
        .donation-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex: 1;
        }
        .donation-content {
            margin-bottom: 1rem;
        }
        .donation-content h2 {
            opacity: 0;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        #h2-bar {
            opacity: 0;
            margin: 0 auto;
            height: 3px;
            background-color: var(--ivory);
            width: 5rem;
            border-radius: 50%;
            margin-bottom: 8px;
        }
        .donation-content p {
            opacity: 0;
            font-size: 1.125rem;
            max-width: 600px;
        }
        .donation-center .inner-cards {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .donation-wrapper > .donation-center > .flex > .donation-card{
            background-image: url('../../images/WhatsApp%20Image%202025-06-03%20at%2015.31.55_3b14067a.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .inner-cards > .donation-card:nth-of-type(1){
            background-image: url('../../images/WhatsApp Image 2025-07-01 at 12.02.41.jpeg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .inner-cards > .donation-card:nth-of-type(2){
            background-image: url('../../images/Gulph-Gurdwara-0073.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
       .donation-wrapper > .donation-center > .flex > .langar{
            background-image: url('../../images/Exksn2JU4AEy-pN.jfif');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .donation-card {
            transition: 2s;
            transform: scale(1) rotate(0deg)!important;
            height: 400px;
            width: 300px;
            overflow: hidden!important;
        }
        .donation-card:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            transition: 2s;
            transform: scale(1.05) rotate(-2deg)!important;
        }
        @media (max-width: 768px) {
            .donation-wrapper {
                flex-direction: column;
                gap: 1rem;
            }
            .donation-center .inner-cards {
                flex-direction: column;
                align-items: center;
                width: auto;
            }
            .donation-card h3 {
                font-size: 1.1rem;
            }
            .donation-card p {
                font-size: 0.8rem;
            }
            .donation-content h2 {
                font-size: 26px;
            }
            .donation-content p {
                font-size: 1rem;
            }
        }
        #astrology-section {
            position: relative;
            background: transparent;
            align-items: center;
            text-align: center;
            justify-content: center;
            padding: 4rem 1rem;
        }
        .astrology-content h2 {
            color: var(--ivory);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            opacity: 0;
        }
        .astrology-content p {
            color: var(--ivory);
            font-size: 1.125rem;
            max-width: 100%;
            margin: 0 auto 2rem;
            opacity: 0;
        }
        .astrology-images {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .astrology-image {
            width: 300px;
            height: 400px;
            border-radius: 68px;
            overflow: hidden;
            transition: transform 0.3s ease;
            opacity: 0;
            z-index: 8;
        }
        .astrology-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .astrology-image:hover {
            transform: scale(1.1);
        }
        @media (max-width: 768px) {
            .astrology-content h2 {
                font-size: 2rem;
            }
            .astrology-content p {
                font-size: 1rem;
            }
            .astrology-image {
                width: 150px;
                height: 150px;
            }
        }
        #testimonials-section {
            position: relative;
            background: transparent;
            min-height: 100vh;
            padding: 4rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }
        .testimonials-container {
            position: relative;
            max-width: 800px;
            width: 100%;
            max-height: 700px;
            height: 70%;
            overflow: hidden;
            margin-top: 2rem;
        }
        .testimonials-track {
            display: flex;
            gap: 56px;
            transition: transform 0.5s ease;
        }
        .testimonial-card {
            /* margin-left: 45px; */
            flex: 0 0 100%;
            backdrop-filter: blur(12px);
            border: 2px solid var(--ivory);
            border-radius: 36px;
            /* max-width: 700px; */
            display: flex;
            max-height: auto;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .testimonial-image {
            width: 250px;
            height: 300px;
            border-radius: 48px;
            overflow: hidden;
            flex-shrink: 0;
            z-index: 10;
            opacity: 1;
        }
        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 10;
            opacity: 1;
        }
        .testimonial-content {
            flex: 1;
            color: var(--ivory);
        }
        
        .testimonial-content p {
            font-size: 1rem;
            color: var(--grey);
            margin-bottom: 2rem;
            text-shadow: none;
        }
        .testimonial-rating {
            display: flex;
            gap: 0.5rem;
            bottom: 2rem;
        }
        .testimonial-rating i {
            color: var(--saffron);
            font-size: 1.2rem;
            bottom: 2rem;
        }
        .quote-icon {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            font-size: 2rem;
            border: 1px solid #666;
            padding: 0.5rem;
            border-radius: 10px;
            background: #666;
            color: var(--ivory);
            opacity: 0.8;
        }
        .testimonials-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0);
            color: var(--ivory);
            padding: 14px;
            border: 1px solid white;
            cursor: pointer;
            border-radius: 50%;
            z-index: 3;
        }
        .testimonials-nav.left {
            left: -56px;
        }
        .testimonials-nav.right {
            right: -56px;
        }
        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .testimonials-dot {
            width: 10px;
            height: 10px;
            background: var(--grey);
            border-radius: 50%;
            cursor: pointer;
        }
        .testimonials-dot.active {
            background: var(--saffron);
        }
        .testimonial-content h3 {
            font-size: 3rem;
            font-weight: 500;
            color: var(--ivory);
            margin-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            .testimonial-card {
                text-align: center;
            }
            .testimonial-image {
                width: 100px;
                height: 100px;
                margin: 0 auto;
            }
            .testimonials-nav {
                display: none;
            }
            .quote-icon {
                top: 0.5rem;
                right: 0.5rem;
                font-size: 1.5rem;
            }
        }
        #blog-section {
            position: relative;
            background: transparent;
            min-height: 100vh;
            padding: 4rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
            width: 100vw;
        }
        .blog-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 70%;
            overflow: hidden;
            margin-top: 2rem;
        }
        .blog-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.5s ease;
            width: calc(100% * 5 / 2);
        }
        .blog-card {
            flex: 0 0 calc(50% - 1rem);
            backdrop-filter: blur(12px);
            border: 2px solid var(--ivory);
            border-radius: 36px;
            max-height: auto;
            max-width: 500px;
            padding: 2rem;
            display: flex;
            align-items: center;
            gap: 3rem;
            margin: 10px;
        }
        .blog-image {
            width: auto;
            height: auto;
            /* display: flex; */
            border-radius: 48px;
            overflow: hidden;
            flex-shrink: 0;
            z-index: 10;
            opacity: 1;
        }
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 10;
            opacity: 1;
        }
        .blog-content {
            flex: 1;
            color: var(--ivory);
        }
        .blog-content h3 {
            font-size: 2rem;
            font-weight: 500;
            color: var(--ivory);
            margin-bottom: 0.5rem;
        }
        .blog-content p {
            font-size: 0.9rem;
            color: var(--grey);
            margin-bottom: 1rem;
            text-shadow: none;
        }
        .blog-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0);
            color: var(--ivory);
            padding: 0.5rem;
            cursor: pointer;
            border-radius: 50%;
            z-index: 3;
        }
        .blog-nav.left {
            left: 0rem;
        }
        .blog-nav.right {
            right: 0rem;
        }
        .blog-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .blog-dot {
            width: 10px;
            height: 10px;
            background: var(--grey);
            border-radius: 50%;
            cursor: pointer;
        }
        .blog-dot.active {
            background: var(--saffron);
        }
        @media (max-width: 768px) {
            
            .blog-card {
                flex: 0 0 100%;
                flex-direction: column;
                text-align: center;
            }
            .blog-image {
                width: 100px;
                height: 100px;
                margin: 0 auto;
            }
            .blog-nav {
                display: none;
            }
            .blog-content h3 {
                font-size: 1.5rem;
            }
            .blog-content p {
                font-size: 0.8rem;
            }
        }
        #map-section {
            position: relative;
            min-height: 90vh;
            /* padding: 4rem 1rem; */
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
            background: transparent;
        }
        .map-wrapper {
            width: 100%;
            bottom: 0;
            max-width: 100vw;
            height: 80vh;
            /* border-radius: 36px; */
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .map-wrapper.visible {
            opacity: 1;
        }
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        @media (max-width: 768px) {
            .map-wrapper {
                height: 300px;
            }
        }
        #contact-us-section {
            position: relative;
            min-height: 100vh;
            padding: 4rem 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* overflow: hidden; */
        }
        .contact-container {
            position: relative;
            display: flex;
            justify-content: left;
            align-items: center;
            width: 90%;
            margin: auto;
        }
        .contact-form-card {
            border: 2px solid #FFFFFF !important;
            border-radius: 56px;
            padding: 2rem;
            position: relative;
            width: 90%;
            max-width: 1000px;
        }
        .contact-info-card {
            position: absolute;
            right: 30px;
            /* bottom: -60px; */
            width: 100%;
            /* height: 450px; */
            max-width: 600px;
            background: white;
            border: 1px solid black;
            border-radius: 56px;
            padding: 15px 28px;
            z-index: 20;
        }
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                align-items: center;
            }
            .contact-form-card {
                width: 100%;
                max-width: 100%;
            }
            .contact-info-card {
                position: relative;
                bottom: 0;
                width: 100%;
                max-width: 100%;
                margin-top: 2rem;
                right: -9px;
            }
            
            .testimonial-content h3{
                font-size: 2rem;
            }
        }
        button.bg-gradient-to-r {
            background-color: var(--saffron);
        }
        