/* General Styles */
:root {
    /* Primary Colors */
    --primary-gold: #D4AF37;      /* Soft, spiritual gold */
    --sage-green: #8BA888;        /* Calming sage */
    --deep-indigo: #1B365D;       /* Spiritual indigo */
    --deep-maroon: #800020;       /* Grounding maroon */
    
    /* Accent Colors */
    --soft-lavender: #E6E6FA;     /* Soft lavender */
    --muted-teal: #4F7C8C;        /* Peaceful teal */
    --pastel-orange: #FFB347;      /* Warm, muted orange */
    
    /* Background Colors */
    --bg-cream: #FDFBF7;          /* Soft cream */
    --bg-off-white: #FAF9F6;       /* Off white background */
    --bg-beige: #F5F2EA;          /* Beige background */
    --bg-light-sage: #EFF2EF;      /* Light sage */
    
    /* Text Colors */
    --text-dark: #2C3E50;         /* Soft black */
    --text-medium: #5D6D7E;       /* Medium gray */
    --text-light: #8894A0;        /* Light gray */
    
    /* Gradient Overlays */
    --gradient-spiritual: linear-gradient(135deg, rgba(75, 0, 130, 0.85), rgba(128, 0, 0, 0.85));
    --gradient-calm: linear-gradient(to right, rgba(139, 168, 136, 0.2), rgba(230, 230, 250, 0.2));
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header and Navigation */
.main-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo styles */
.logo, .logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
    z-index: 1002;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--deep-maroon);
}

/* Main Content */
/* main {
    padding: 2rem 0;
    margin-top: 80px; Add margin to account for fixed header
} */

section {
    padding: 2rem 0;
    /* margin: 2rem 0; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/HeroBanner.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sanskrit-quote {
    font-size: 2rem;
    margin: 1.5rem 0;
    font-family: var(--font-heading);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.quote-translation {
    font-style: italic;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}

/* Cards */
.card {
    background: var(--gradient-calm);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    box-shadow:
        0 8px 24px rgba(0,0,0,0.25),
        0 0 0 8px #fff,
        inset 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    margin: 0 auto;
    margin-bottom: 1.1em;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card-image::after {
    content: "";
    position: absolute;
    top: 13%;
    left: 20%;
    width: 60%;
    height: 22%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

/* Practice Tabs */
.practices-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 5%;
}

.practice-tab {
    padding: 1rem 2rem;
    background: var(--bg-off-white);
    border: 2px solid var(--deep-maroon);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    min-width: 120px;
}

.practice-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--deep-maroon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.practice-tab:hover::before {
    width: 300%;
    height: 300%;
}

.practice-tab:hover {
    color: white;
}

.practice-tab.active {
    background: var(--deep-maroon);
    color: white;
}

.practice-content {
    display: none;
}

.practice-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
}

.section-description{
    text-align: center;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 1rem 0.5rem;
}

.btn.primary {
    background: var(--deep-maroon);
    color: white;
}

.btn.primary1 {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--deep-maroon);
    color: var(--deep-maroon);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.main-footer {
    background-color: var(--bg-light-sage);
    color: var(--text-dark);
    padding: 4rem 0 1rem;
    width: 100%;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    grid-column: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h3,
.footer-compliance h3,
.footer-newsletter h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-links ul,
.footer-compliance ul {
    list-style: none;
}

.footer-links li,
.footer-compliance li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-compliance a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-compliance a:hover {
    color: var(--deep-maroon);
}

.footer-newsletter {
    grid-column: 4;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.footer-subscribe-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--text-dark);
    border-radius: 4px;
    background: #ffffff;
}

.footer-subscribe-form button {
    padding: 0.8rem 1.5rem;
    background: var(--deep-maroon);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-subscribe-form button:hover {
    background: var(--deep-indigo);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--text-dark);
}

.copyright {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--deep-maroon);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 1001;
    position: relative;
}

.hamburger i {
    font-size: 24px;
    color: var(--text-dark);
    transition: all 0.3s;
}

.hamburger.active i {
    transform: rotate(90deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    text-align: center;
    margin: 0;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s forwards;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--deep-maroon);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav a:hover::after {
    width: 50%;
}

.mobile-nav a:hover {
    background-color: var(--bg-light-sage);
    color: var(--deep-maroon);
    padding-left: 30px;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for menu items */
.mobile-nav li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav li:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav li:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav li:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav li:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Media Queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 3%;
    }
    
    .grid-container {
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-logo-section {
        grid-column: span 2;
    }
    
    .practices-tabs {
        gap: 0.8rem;
    }
    
    .practice-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .main-header {
        padding: 0.5rem 0;
    }

    .main-nav {
        padding: 0.5rem 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .sanskrit-quote {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .quote-translation {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .card {
        padding: 1.5rem;
        margin: 0.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .card:hover {
        transform: translateY(-3px);
    }

    .practices-tabs {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
        gap: 0.8rem;
    }

    .practice-tab {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
        background: var(--bg-off-white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .practice-tab.active {
        background: var(--deep-maroon);
        color: white;
        box-shadow: 0 4px 12px rgba(128, 0, 32, 0.2);
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        /* width: 100%; */
        text-align: center;
        margin: 0.5rem 0;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .main-footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }

    .footer-logo-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .footer-logo {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .footer-links,
    .footer-compliance,
    .footer-newsletter {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links ul,
    .footer-compliance ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-links li,
    .footer-compliance li {
        margin-bottom: 0.5rem;
        width: 100%;
        text-align: left;
    }

    .footer-subscribe-form {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 300px;
    }

    .footer-subscribe-form input,
    .footer-subscribe-form button {
        width: 100%;
        padding: 1rem;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem 1rem 0;
    }

    .social-links {
        display: flex;
        justify-content: flex-start;
        gap: 2rem;
        width: 100%;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-nav {
        padding: 0.5rem;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .sanskrit-quote {
        font-size: 1.1rem;
    }

    .card {
        padding: 1.2rem;
        margin: 0.3rem;
    }

    .practice-tab {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .mobile-nav a {
        padding: 15px;
        font-size: 1.1rem;
    }

    .main-footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        padding: 0 0.5rem;
    }

    .footer-top {
        gap: 1.5rem;
    }

    .footer-logo img {
        height: 35px;
    }

    .footer-logo span {
        font-size: 1.1rem;
    }

    .footer-links h3,
    .footer-compliance h3,
    .footer-newsletter h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links a,
    .footer-compliance a,
    .footer-newsletter p {
        font-size: 0.85rem;
    }

    .footer-subscribe-form {
        max-width: 250px;
    }

    .footer-subscribe-form input,
    .footer-subscribe-form button {
        padding: 0.8rem;
    }

    .footer-bottom {
        gap: 1rem;
        padding: 1rem 0.5rem 0;
    }

    .copyright {
        font-size: 0.85rem;
        text-align: left;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }
}

/* Add smooth scrolling for better mobile experience */
html {
    scroll-behavior: smooth;
}

/* Add touch feedback for mobile */
@media (hover: none) {
    .practice-tab:active,
    .btn:active,
    .mobile-nav a:active {
        transform: scale(0.98);
    }
}

/* Add support for larger screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .grid-container {
        max-width: 1320px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Add support for landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-menu {
        padding-top: 60px;
    }
    
    .mobile-nav li {
        padding: 10px 0;
    }
    
    .hero-section {
        min-height: 80vh;
    }
}

/* Add support for dark mode */
/*@media (prefers-color-scheme: dark) {*/
/*    :root {*/
/*        --bg-off-white: #1a1a1a;*/
/*        --bg-cream: #1a1a1a;*/
/*        --bg-beige: #1a1a1a;*/
/*        --bg-light-sage: #1a1a1a;*/
/*        --text-dark: #ffffff;*/
/*        --text-medium: #cccccc;*/
/*        --text-light: #999999;*/
/*    }*/
    
/*    body {*/
/*        background-color: var(--bg-off-white);*/
/*        color: var(--text-dark);*/
/*    }*/
    
/*    .card {*/
/*        background: rgba(255, 255, 255, 0.05);*/
/*        color: var(--text-dark);*/
/*    }*/
    
/*    .main-header {*/
/*        background: #1a1a1a;*/
/*        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);*/
/*    }*/
    
/*    .mobile-menu {*/
/*        background-color: rgba(26, 26, 26, 0.98);*/
/*    }*/

/*    .nav-links a {*/
/*        color: var(--text-dark);*/
/*    }*/

/*    .nav-links a:hover {*/
/*        color: var(--primary-gold);*/
/*    }*/

/*    .logo-text {*/
/*        color: var(--text-dark);*/
/*    }*/

/*    .section-title {*/
/*        color: var(--text-dark);*/
/*    }*/

/*    .section-description {*/
/*        color: var(--text-medium);*/
/*    }*/

/*    .contact-form,*/
/*    .contact-info {*/
/*        background-color: rgba(255, 255, 255, 0.05);*/
/*        color: var(--text-dark);*/
/*    }*/

/*    .contact-form h2,*/
/*    .contact-info h2 {*/
/*        color: var(--text-dark);*/
/*    }*/

/*    .form-group label {*/
/*        color: var(--text-medium);*/
/*    }*/

/*    .form-group input[type="text"],*/
/*    .form-group input[type="email"],*/
/*    .form-group textarea {*/
/*        background-color: rgba(255, 255, 255, 0.1);*/
/*        color: var(--text-dark);*/
/*        border-color: rgba(255, 255, 255, 0.2);*/
/*    }*/

/*    .form-group input[type="text"]:focus,*/
/*    .form-group input[type="email"]:focus,*/
/*    .form-group textarea:focus {*/
/*        border-color: var(--primary-gold);*/
/*    }*/

/*    .contact-info p {*/
/*        color: var(--text-medium);*/
/*    }*/

/*    .contact-info a {*/
/*        color: var(--primary-gold);*/
/*    }*/

/*    .social-media-links a {*/
/*        color: var(--text-medium);*/
/*    }*/

/*    .social-media-links a:hover {*/
/*        color: var(--primary-gold);*/
/*    }*/

/*    .main-footer {*/
/*        background-color: #1a1a1a;*/
/*        color: var(--text-medium);*/
/*    }*/

/*    .footer-links a {*/
/*        color: var(--text-medium);*/
/*    }*/

/*    .footer-links a:hover {*/
/*        color: var(--primary-gold);*/
/*    }*/

/*    .footer-subscribe-form input {*/
/*        background-color: rgba(255, 255, 255, 0.1);*/
/*        color: var(--text-dark);*/
/*        border-color: rgba(255, 255, 255, 0.2);*/
/*    }*/

/*    .footer-subscribe-form button {*/
/*        background-color: var(--primary-gold);*/
/*        color: var(--text-dark);*/
/*    }*/

/*    .footer-subscribe-form button:hover {*/
/*        background-color: #b38f2d;*/
/*    }*/
/*}*/

/* CSS for Contact Page */

.contact-page {
    padding: 50px 0;
    overflow-x: hidden;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2,
.contact-info h2 {
    color: #444;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Cinzel', serif; /* Use your brand font */
    font-weight: 600;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: bold;
    font-family: 'Lato', sans-serif; /* Use your brand font */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #666;
    transition: border-color 0.3s;
    font-family: 'Lato', sans-serif; /* Use your brand font */
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #aaa;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #5cb85c;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
    font-family: 'Lato', sans-serif; /* Use your brand font */
}

.submit-button:hover {
    background-color: #449d44;
}

/* Contact Info Styles */
.contact-info p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
    font-family: 'Lato', sans-serif; /* Use your brand font */
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #0056b3;
}

.social-media-links {
    margin-top: 20px;
    text-align: center;
}

.social-media-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #333;
    transition: color 0.3s;
}

.social-media-links a:hover {
    color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 10px;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin: 10px 0;
        padding: 20px;
    }
}

/* Smaller screens adjustments */
@media (max-width: 480px) {
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.4em;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.9em;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
        font-size: 14px;
        padding: 8px;
    }

    .submit-button {
        font-size: 16px;
        padding: 10px 16px;
    }

    .contact-info p {
        font-size: 0.9em;
    }

    .social-media-links a {
        font-size: 20px;
        margin: 0 8px;
    }
}

/* Adjustment for very small screens */
@media (max-width: 320px) {
    .contact-form,
    .contact-info {
        padding: 15px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 1.2em;
    }

    .submit-button {
        font-size: 14px;
    }
}

/* Specific adjustments to ensure consistent theme */
body {
    font-family: 'Lato', sans-serif; /* Set a default font for the body */
    color: #333; /* Set a default text color */
}

.page-section {
    padding: 30px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5em;
    color: #222;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
    margin-top: 20px;
}

.section-description {
    font-size: 1.1em;
    color: #555;
}

/* CSS for About Us Page */

.about-page {
    padding: 50px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: 'Cinzel', serif; /* Use your brand font */
    color: #444;
    margin-top: 30px;
}

.about-content p,
.about-content ul {
    font-family: 'Lato', sans-serif; /* Use your brand font */
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about-content a {
    color: #007bff;
    text-decoration: underline;
}

.about-content a:hover {
    color: #0056b3;
}

.slide-content {
    background-color: #ffffff; /* White background for clarity */
    padding: 20px; /* Padding for spacing */
    border-radius: 8px; /* Rounded corners */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); Subtle shadow for depth */
    text-align: center; /* Center the text */
    margin: 20px; /* Margin around the content */
}

.slide-content p {
    font-family: 'Lato', sans-serif; /* Use your brand font */
    color: #333; /* Dark text color for readability */
    font-size: 1em; /* Slightly larger font size */
    line-height: 1.5; /* Improved line height for readability */
}

/* about us */

.about-visual {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.about-image {
    width: 50%;
    height: auto;
    margin-right: 20px;
}

.about-text {
    flex: 1;
}

.image-gallery {
    margin: 20px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery figure {
    flex: 1 1 calc(33.333% - 15px);
    text-align: center;
}

.faq-section {
    margin: 20px 0;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    cursor: pointer;
    background-color: #f1f1f1;
    padding: 10px;
    border: 1px solid #ccc;
}

.accordion-content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-top: none;
}

/* Banner Slider Enhanced Styles */
.banner-slider {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}
.slider-container {
    position: relative;
    max-width: 100vw;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    background: #fff;
}
.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), z-index 0s 0.7s;
    z-index: 1;
}
.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
    animation: slideIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes slideIn {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}
.slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 1.2s cubic-bezier(.4,0,.2,1);
}
.slide.active img {
    transform: scale(1.04);
    animation: zoomIn 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
}
.caption {
    position: absolute;
    left: 32px;
    bottom: 32px;
    max-width: 60%;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-align: left;
    padding: 18px 32px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    background: linear-gradient(90deg, rgba(30,30,30,0.7) 60%, rgba(30,30,30,0.2) 100%);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
    z-index: 5;
}
.slide.active .caption {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInCaption 0.8s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInCaption {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    color: #444;
    border: none;
    font-size: 2.4rem;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.slider-arrow:hover {
    background: #e0b13c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(224,177,60,0.25);
}
.slider-arrow.prev {
    left: 18px;
}
.slider-arrow.next {
    right: 18px;
}
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 12;
}
.dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.6;
    cursor: pointer;
    border: 2px solid #e0b13c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: opacity 0.2s, background 0.2s, border 0.2s;
}
.dot.active {
    opacity: 1;
    background: #e0b13c;
    border: 2px solid #fff;
}
@media (max-width: 900px) {
    .slider-container {
        height: 200px;
    }
    .slide img {
        height: 200px;
    }
    .caption {
        font-size: 1.1rem;
        left: 12px;
        bottom: 12px;
        padding: 10px 14px;
        max-width: 90%;
    }
}
@media (max-width: 600px) {
    .slider-container {
        height: 120px;
    }
    .slide img {
        height: 120px;
    }
    .caption {
        left: 0;
        right: 0;
        bottom: 0;
        max-width: 100%;
        text-align: center;
        font-size: 1rem;
        border-radius: 0 0 12px 12px;
        padding: 8px 4px;
        background: linear-gradient(0deg, rgba(30,30,30,0.7) 80%, rgba(30,30,30,0.1) 100%);
    }
    .slider-arrow {
        font-size: 1.3rem;
        padding: 4px 8px;
        left: 4px;
        right: 4px;
    }
    .slider-arrow.prev {
        left: 4px;
    }
    .slider-arrow.next {
        right: 4px;
    }
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 2px;
    }
}

/* Banner Slider Responsive Height */
.slider-container {
    height: 60vh;
    min-height: 320px;
    max-height: 600px;
}
.slide img {
    height: 60vh;
    min-height: 320px;
    max-height: 600px;
}
@media (max-width: 900px) {
    .slider-container, .slide img {
        height: 40vh;
        min-height: 180px;
        max-height: 350px;
    }
}
@media (max-width: 600px) {
    .slider-container, .slide img {
        height: 28vh;
        min-height: 120px;
        max-height: 200px;
    }
}
/* Centered Caption Overlay */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    background: rgba(20, 20, 20, 0.55);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    padding: 32px 18px 24px 18px;
    text-align: center;
    color: #fff;
    z-index: 5;
    opacity: 0.97;
}
.slider-title {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.slider-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
@media (max-width: 600px) {
    .caption {
        padding: 12px 6px 10px 6px;
        border-radius: 10px;
    }
    .slider-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    .slider-description {
        font-size: 0.85rem;
    }
}
/* Remove navigation arrow styles */
.slider-arrow { display: none !important; }

/* Offerings Hero Header Styles */
.offerings-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #6a82fb 0%, #5f6cff 50%, #a777e3 100%);
  opacity: 0.98;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 16px 0 16px;
  text-align: center;
  color: #fff;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.stat-label {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 400;
}
.hero-search-filter {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(80,80,120,0.10);
  padding: 32px 24px 18px 24px;
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#offerings-search-form {
  width: 100%;
  margin-bottom: 18px;
}
.search-input {
  width: 100%;
  padding: 14px 18px 14px 38px;
  border-radius: 30px;
  border: 1.5px solid #e0e0e0;
  font-size: 1.1rem;
  background: #f8f8ff url('data:image/svg+xml;utf8,<svg fill="%236a82fb" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99c.41.41 1.09.41 1.5 0s.41-1.09 0-1.5l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') no-repeat 12px center;
  outline: none;
  color: #333;
  transition: border 0.2s;
}
.search-input:focus {
  border: 1.5px solid #6a82fb;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
}
.filter-pill {
  background: #f3f4fa;
  color: #6a82fb;
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(80,80,120,0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
.filter-pill.active, .filter-pill:focus {
  background: linear-gradient(90deg, #6a82fb 0%, #a777e3 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(106,130,251,0.18);
}
@media (max-width: 700px) {
  .hero-title { font-size: 2rem; }
  .hero-content { padding-top: 24px; }
  .hero-stats { gap: 18px; }
  .stat-number { font-size: 1.2rem; }
  .hero-search-filter { padding: 18px 6px 10px 6px; }
  .search-input { font-size: 0.95rem; }
  .filter-pill { font-size: 0.85rem; padding: 7px 12px; }
}

.card h3 {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0.5em 0;
    line-height: 1.15;
    max-lines: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1.1em;
}


 /* --- About Intro Section (Image with Text Wrap) --- */
 .about-intro-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.about-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/lordshiva.png') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.about-intro-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-intro-image {
    flex: 1;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.about-intro-image:hover {
    transform: scale(1.02);
}

.about-intro-content {
    background: rgba(255, 255, 255, 0.616);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-intro-content .section-title {
    color: var(--deep-maroon);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-intro-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.about-intro-content p {
    color: black;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-content .btn.secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--deep-maroon);
    color: #fff;
    border: 2px solid var(--deep-maroon);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.about-intro-content .btn.secondary:hover {
    background: transparent;
    color: var(--deep-maroon);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .about-intro-section {
        padding: 60px 0;
        min-height: 500px;
        margin-top: 20px;
    }

    .about-intro-content {
        padding: 30px;
    }

    .about-intro-content .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .about-intro-section {
        padding: 40px 0;
        min-height: 400px;
    }

    .about-intro-content {
        padding: 25px;
    }

    .about-intro-content .section-title {
        font-size: 2rem;
    }

    .about-intro-content p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .about-intro-section {
        min-height: 350px;
    }

    .about-intro-content {
        padding: 20px;
    }

    .about-intro-content .section-title {
        font-size: 1.8rem;
    }

    .about-intro-content .btn.secondary {
        width: 100%;
        text-align: center;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-title {
    text-align: center;
    color: var(--deep-maroon);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(300px * 6); /* Adjust based on number of testimonials */
}

.testimonial-card {
    flex: 0 0 300px;
    margin: 0 15px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--deep-maroon);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-location {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.testimonial-photo {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid #b8860b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.testimonial-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #b8860b;
    background: #fff;
    margin: 0 auto 12px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.testimonial-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 3)); /* Half of total width */
    }
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .testimonial-title {
        font-size: 2rem;
    }

    .testimonial-card {
        flex: 0 0 250px;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* --- Redesigned Hero Section --- */
.redesigned-hero {
    position: relative;
    width: 100vw;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/Homepage/HeroBanner.jpeg') center center/cover no-repeat;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(34, 24, 6, 0.55); /* deep brown overlay for contrast */
    z-index: 1;
}
.hero-content-block {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 60px 20px 40px 20px;
    background: rgba(0,0,0,0.15);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero-title {
    font-size: 2.8rem;
    font-family: var(--font-heading, 'Cinzel', serif);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.sanskrit-quote-block {
    margin-bottom: 1.2rem;
}
.sanskrit-quote-devanagari {
    display: block;
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.sanskrit-quote-translation {
    display: block;
    font-size: 1.1rem;
    color: #fffbe7;
    font-style: italic;
    margin-bottom: 1rem;
}
.hero-description {
    font-size: 1.15rem;
    color: #f3e9d2;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.btn.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(90deg, #b8860b 0%, #8b4513 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: background 0.3s, color 0.3s;
    margin-top: 0.5rem;
}
.btn.hero-cta:hover {
    background: #fff;
    color: #8b4513;
    border: 2px solid #b8860b;
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 2rem; }
    .sanskrit-quote-devanagari { font-size: 1.3rem; }
    .hero-content-block { padding: 30px 10px 20px 10px; }
}
@media (max-width: 575.98px) {
    .redesigned-hero { min-height: 60vh; }
    .hero-content-block { padding: 18px 4px 12px 4px; }
    .btn.hero-cta { width: 100%; font-size: 1rem; }
}
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 2px solid #25D366;
    text-decoration: none;
}
.whatsapp-float:hover, .whatsapp-float:focus {
    box-shadow: 0 8px 32px rgba(37,211,102,0.25);
    transform: scale(1.08);
    outline: none;
}
.whatsapp-icon {
    width: 36px;
    height: 36px;
    display: block;
}
@media (max-width: 575.98px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}
.spiritual-guides-section {
    padding: 80px 0 60px 0;
    background: #f7f3ed;
}
.guides-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.guide-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 24px 24px 24px;
    text-align: center;
    max-width: 260px;
    flex: 1 1 220px;
}
.guide-photo {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 3px solid #b8860b;
}
.guide-title {
    color: #8b4513;
    font-weight: 600;
    margin-bottom: 6px;
}
.guide-credentials {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .guides-grid { flex-direction: column; gap: 20px; }
    .guide-card { max-width: 100%; }
}
.circle-carousel-section {
    width: 100vw;
    background: #fff;
    padding: 40px 0 32px 0;
    display: flex;
    justify-content: center;
}
.circle-carousel {
    display: flex;
    gap: 48px;
    overflow: hidden;
    align-items: center;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 4vw;
    justify-content: center; /* Ensure centering */
}
.circle-carousel-track {
    display: flex;
    gap: 48px;
    animation: circle-carousel-scroll var(--carousel-duration, 18s) linear infinite;
    will-change: transform;
}
@keyframes circle-carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--carousel-scroll-width, 0px))); }
}
@media (max-width: 991.98px) {
    .circle-carousel {
        gap: 24px;
        padding: 0 2vw;
    }
    .circle-carousel-track {
        gap: 24px;
    }
    .circle-carousel-item img {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 767.98px) {
    .circle-carousel {
        gap: 12px;
        padding: 0 1vw;
    }
    .circle-carousel-track {
        gap: 12px;
    }
    .circle-carousel-item img {
        width: 64px;
        height: 64px;
    }
}
.circle-carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #8b4513;
    transition: transform 0.2s;
    text-align: center;
    overflow: visible;
    position: relative;
}
.circle-carousel-item img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #b8860b;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    margin-bottom: 10px;
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
}
.circle-carousel-item span {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    color: #8b4513;
    line-height: 1.2;
    text-align: center;
    display: block;
}
.circle-carousel-item:hover img {
    box-shadow: 0 8px 32px rgba(184,134,11,0.18);
    transform: scale(1.10);
    z-index: 2;
    position: relative;
}

/* === Contact Page Modern Styles === */

/* Hero Section */
.hero-section.contact-hero {
    position: relative;
    background: url('../images/banner-lordshiva.jpeg') center/cover no-repeat;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 30, 30, 0.5);
    z-index: 1;
}
.hero-section .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
.hero-section .hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.hero-section .hero-content p {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
}

/* Contact Flex Layout */
.contact-flex-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1100px;
}

/* Card Styles */
.contact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 2rem 1.5rem 2rem;
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 450px;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s;
}
.contact-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.contact-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #2d3a4a;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

/* Form Styles */
.contact-form-card form .form-group {
    margin-bottom: 1.2rem;
}
.contact-form-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #2d3a4a;
    font-family: 'Lato', sans-serif;
}
.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background: #f9fafb;
    transition: border 0.2s;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #a78bfa;
    outline: none;
}
.contact-form-card .submit-button {
    background: linear-gradient(90deg, #8b4513, #b8860b);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.contact-form-card .submit-button:hover {
    background: linear-gradient(90deg, #b8860b 0%, #8b4513 100%)
}

/* Contact Info Card */
.contact-info-card .info-item {
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 0.7em;
}
.contact-info-card .info-item i {
    color: #b8860b;
    font-size: 1.2em;
    margin-top: 0.1em;
}
.contact-info-card a {
    color: #8b4513;
    text-decoration: none;
    word-break: break-all;
}
.contact-info-card a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.social-media-links {
    margin-top: 1.2rem;
    display: flex;
    gap: 1.2rem;
}
.social-media-links a {
    color: #b8860b;
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}
.social-media-links a:hover {
    color: #8b4513;
    transform: scale(1.15);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease;
}
.animate-slide-in {
    animation: slideIn 1s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(40px);}
    to   { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 900px) {
    .contact-flex-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    .contact-card {
        max-width: 100%;
    }
    .hero-section.contact-hero {
        min-height: 180px;
    }
}

/* === Blog Cards Styles (EXACT match to offering/puja cards) === */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    max-width: 1100px;
    margin: 2.5rem auto 2.5rem auto;
    justify-items: center;
}

.blog-card {
    background: linear-gradient(135deg, #fffbe7 0%, #f8faf7 100%);
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(139, 69, 19, 0.10);
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeInBlogCard 0.9s ease;
    min-width: 320px;
    max-width: 340px;
    width: 100%;
    position: relative;
    overflow: visible;
}

@keyframes fadeInBlogCard {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.blog-img-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(139, 69, 19, 0.10);
    margin-bottom: 1.1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid #fff;
}
.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s;
}
.blog-card:hover .blog-img {
    transform: scale(1.07) rotate(-2deg);
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: 1.18rem;
    color: #222;
    text-align: center;
    margin-bottom: 1.2rem;
    margin-top: 0.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-btn {
    background: linear-gradient(90deg, #b8860b, #8b4513);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 0;
    font-size: 1.08rem;
    font-family: 'Cinzel', serif;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: auto;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
}
.blog-btn:hover {
    background: linear-gradient(90deg, #8b4513 0%, #b8860b 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.13);
}

@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 730px;
    }
}
@media (max-width: 700px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 95vw;
    }
    .blog-card {
        min-width: 0;
        max-width: 100%;
        padding: 1.2rem 0.5rem 1.1rem 0.5rem;
    }
}

/* === Blog Hero Banner Styles === */
.blog-hero {
    position: relative;
    width: 100%;
    min-height: 260px;
    background: url('../images/banner-lordshiva.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.blog-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 30, 30, 0.45);
    z-index: 1;
}
.blog-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 2.5rem 1rem 2rem 1rem;
}
.blog-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.7rem;
    margin-bottom: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
}
.blog-hero-content p {
    font-size: 1.25rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .blog-hero {
        min-height: 150px;
    }
    .blog-hero-content h1 {
        font-size: 1.5rem;
    }
    .blog-hero-content p {
        font-size: 1rem;
    }
}
