:root {
    --primary-saffron: #ff9f00;
    --neutral-beige: #f5f5dc;
    --neutral-gray: #3A3A3C;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--neutral-beige);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--neutral-gray);
}

p {
    margin-bottom: 1rem;
    color: var(--neutral-gray);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--neutral-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    background: var(--neutral-beige);
    /* padding: 1rem 0; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    background-color: var(--neutral-beige);
    max-width: 280px;
}

.logo img {
    max-width: 280px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 700;
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-saffron);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neutral-beige);
    transition: 0.3s;
}

/* media quries */
@media (max-width: 768px) {
    .navbar {
        background: var(--primary-saffron);
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
}

.background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: contain;
    background-position: center;
    /* background-repeat: no-repeat; */
    background-color: var(--primary-saffron);
}

.slide.active {
    opacity: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: beige;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
}

.hero-title2 {
    font-size: 2.5rem;
    font-weight: 650;
    color: beige;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6)
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: beige;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6)
}

/* media quries */
@media (max-width: 768px) {
    .hero {
        width: 100%;
        height: 100vh;
        /* overflow: hidden; */
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-title2 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Button Styles */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: forwards;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.secondary-btn {
    background-color: var(--primary-saffron);
    border: 2px solid white;
    color: white;
}

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

.btn-secondary {
    padding: 0.8rem 1.5rem;
    text-decoration: underline;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s;
    margin-top: 5rem;
    /* background-color: var(--light-green); */
    color: var(--text-light);
}

/* ======= CONTAINER STYLES ======= */
.scroll-container {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    padding: 10px 0;
    width: 100%;
}

/* ======= GRID/SCROLLING CONTAINERS ======= */
.package-grid,
.facilities-grid,
.pooja-grid,
.article-grid,
.blog-grid,
.gallery-grid,
.astrology-services {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    padding: 15px 10px;
    gap: 20px;
    scroll-snap-type: x proximity; /* Smoother than mandatory */
    scroll-padding: 10px; /* Ensures proper snap points */
    margin: 0 -10px; /* Offset padding */
}

/* Hide scrollbar across browsers */
.package-grid::-webkit-scrollbar,
.gallery-grid::-webkit-scrollbar,
.facilities-grid::-webkit-scrollbar,
.pooja-grid::-webkit-scrollbar,
.article-grid::-webkit-scrollbar,
.blog-grid::-webkit-scrollbar,
.astrology-services::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* ======= CARD STYLES ======= */
.package-card,
.facility-card,
.pooja-card,
.article-card,
.blog-card,
.gallery-item,
.astrology-card {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 300px;
    min-height: 200px; /* Prevent layout shifts */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
    background-color: #fff;
    position: relative;
    padding: 1.5rem;
    align-items: center;
}

/* Card hover effect */
.package-card:hover,
.gallery-item:hover,
.facility-card:hover,
.pooja-card:hover,
.article-card:hover,
.blog-card:hover,
.astrology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* ======= NAVIGATION BUTTONS ======= */
.scroll-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 5px;
}

.scroll-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: #333;
    z-index: 2;
    opacity: 0.9;
}

.scroll-nav-btn:hover {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.scroll-nav-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.scroll-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.scroll-nav-btn.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ======= INDICATOR DOTS ======= */
.scroll-indicator-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-bottom: 5px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator-dot.active {
    background-color: var(--neutral-gray);
    width: 10px;
    height: 10px;
}

/* Add loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-container {
    animation: fadeIn 0.6s ease-out;
}

/* ======= RESPONSIVE STYLES ======= */
/* Large screens (default) */
@media (min-width: 1201px) {
    .package-card,
    .facility-card,
    .pooja-card,
    .article-card,
    .blog-card,
    .gallery-item,
    .astrology-card {
        width: 320px;
    }
    
    .scroll-container {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Medium-large screens */
@media (min-width: 993px) and (max-width: 1200px) {
    .package-card,
    .facility-card,
    .pooja-card,
    .article-card,
    .blog-card,
    .gallery-item,
    .astrology-card {
        width: 300px;
    }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 992px) {
    .package-card,
    .facility-card,
    .pooja-card,
    .article-card,
    .blog-card,
    .gallery-item,
    .astrology-card {
        width: 280px;
    }
    
    .scroll-nav-btn {
        width: 38px;
        height: 38px;
    }
}

/* Small screens */
@media (min-width: 481px) and (max-width: 768px) {
    .package-card,
    .facility-card,
    .pooja-card,
    .article-card,
    .blog-card,
    .gallery-item,
    .astrology-card {
        width: 260px;
    }
    
    .scroll-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .scroll-container {
        padding: 5px 0;
    }
    
    .scroll-indicator-dots {
        margin-top: 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .package-card,
    .facility-card,
    .pooja-card,
    .article-card,
    .blog-card,
    .gallery-item,
    .astrology-card {
        width: 80%;
        min-width: 220px;
    }
    
    .scroll-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .scroll-nav-buttons {
        top: 45%;
    }
    
    .package-grid,
    .facilities-grid,
    .pooja-grid,
    .article-grid,
    .blog-grid,
    .gallery-grid,
    .astrology-services {
        padding: 10px 5px;
        gap: 15px;
    }
    
    .scroll-indicator-dots {
        margin-top: 8px;
        gap: 6px;
    }
    
    .indicator-dot {
        width: 6px;
        height: 6px;
    }
    
    .indicator-dot.active {
        width: 8px;
        height: 8px;
    }
}

/* Very narrow screens */
@media (max-width: 350px) {
    .package-card,
    .facility-card,
    .pooja-card,
    .article-card,
    .blog-card,
    .gallery-item,
    .astrology-card {
        width: 90%;
        min-width: 200px;
    }
    
    .scroll-nav-btn {
        width: 28px;
        height: 28px;
    }
}

/* Fix for touch devices */
@media (hover: none) {
    .scroll-nav-btn {
        opacity: 1;
    }
    
    .package-card:hover,
    .facility-card:hover,
    .gallery-item:hover,
    .pooja-card:hover,
    .article-card:hover,
    .blog-card:hover,
    .astrology-card:hover {
        transform: none;
    }
}

/* Package Cards */
.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 500;
}

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background: var(--primary-saffron);
    max-width: 100vw;
}

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

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

.facilities-section .section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.facilities-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0 auto;
    line-height: 1.6;
}

.facility-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.facility-image {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.facility-content {
    padding: 1rem;
}

.facility-title {
    font-size: 1.5rem;
    color: var(--neutral-gray);
    margin-bottom: 15px;
}

.facility-description {
    color: var(--neutral-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-item {
    color: var(--neutral-gray);
    margin-bottom: 1px;
    padding-left: 25px;
    position: relative;
}

.feature-item:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-saffron);
    position: absolute;
    left: 0;
    top: 2px;
}

/* why-choose-us section */
#why-choose-us {
    background-color: var(--neutral-beige);
    padding: 5rem 2rem;
}

.why-choose-us {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 20px; */
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    transition: transform 0.3s ease-in-out;
    margin: 0.5rem;
}

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

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--primary-saffron);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-gray);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: var(--neutral-gray);
}


@media (max-width: 768px) {
    #why-choose-us {
        padding: 1rem 0.2rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}


/* Articles Section */
.articles {
    padding: 5rem 2rem;
    background: beige;
}

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

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 0.5rem;
}

.article-category {
    color: var(--primary-saffron);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.article-title {
    font-size: 1.3rem;
    color: var(--primary-saffron);
    margin-bottom: 1rem;
    text-align: center;
}

.article-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Pooja Services Section */
.pooja-services {
    padding: 5rem 2rem;
    background: var(--primary-saffron);
}

.pooja-services .section-title {
    color: white;
}

.pooja-services .section-subtitle {
    color: white;
}

.pooja-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pooja-card h3 {
    color: var(--primary-saffron);
}

.pooja-icon {
    font-size: 2.5rem;
    color: var(--primary-saffron);
    margin-bottom: 1rem;
}

.pooja-image {
    height: 200px;
    overflow: hidden;
}

.pooja-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pooja-card:hover .pooja-image img {
    transform: scale(1.1);
}

.pooja-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-saffron);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Astrology Services Section */
.astrology {
    padding: 5rem 2rem;
    background-color: white;
}

.astrology-services .section-title {
    color: var(--neutral-gray);
}

.astrology-services .section-subtitle {
    color: var(--neutral-gray);
}

.astrology-card{
    scroll-snap-align: start;
    flex: 0 0 auto;
    background-color: beige;
    width: 500px; /* Set a fixed width for consistent scrolling */
    max-width: calc(100% - 40px); /* Adjusted from 80% for better responsiveness */
    transition: transform 0.3s ease;
    margin: 5px; /* Add margin around cards */
    will-change: transform; /* Performance optimization for animations */
    padding: 1.5rem;
}

.astrology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Blog Section */
/* Blog Carousel Styles */
#blog {
    padding: 5rem 2rem;
    background: var(--primary-saffron);
}

#blog .section-title {
    color: white;
}

#blog .section-subtitle {
    color: white;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}


.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-saffron);
}

.package-content1 h3 {
    color: var(--primary-saffron);
}

/* FAQ Section */
#faq {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: var(--primary-saffron);
    color: var(--neutral-beige);
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
}

.faq-answer.active {
    padding: 1rem;
    max-height: 200px;
}

/* Gallery */
/* Gallery */
.gallery {
    background-color: var(--primary-saffron);
}

.gallery .section-title {
    color: var(--white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
/* Google Ratings Styling */
.google-ratings-summary {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.google-ratings-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    max-width: max-content;
    width: 100%;
}

.google-logo {
    margin-right: 20px;
}

.ratings-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.average-rating {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-saffron);
}

.star-rating {
    margin: 5px 0;
}

.star {
    color: #fbbc04;
    font-size: 24px;
    letter-spacing: 2px;
}

.star.half {
    position: relative;
}

/* .star.half:after {
    content: "☆";
    position: absolute;
    right: 0;
    top: 0;
    color: #fbbc04;
    width: 50%;
    overflow: hidden;
} */

.review-count {
    color: #5f6368;
    font-size: 14px;
}

/* Navigation Controls */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.nav-button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
    background: #f5f5f5;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.nav-button:focus {
    outline: none;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #1a73e8;
}

/* Carousel Container */
.testimonial-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

/* Updated Testimonial Card Styling */
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    min-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.testimonial-author {
    font-weight: bold;
    margin: 0;
    color: #202124;
}

.reviewer-location {
    color: #5f6368;
    font-size: 14px;
    margin: 2px 0 5px;
}

.google-stars {
    font-size: 14px;
    color: #fbbc04;
    letter-spacing: 1px;
}

.testimonial-quote {
    color: #4d4d4d;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.google-review-link {
    text-align: center;
    margin-top: 30px;
}

.google-review-link .btn {
    background-color: #1a73e8;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.google-review-link .btn:hover {
    background-color: #0d62d1;
}

/* Shimmer animation */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-100%, -100%) rotate(30deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(30deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: calc(100% - 20px);
        flex: 0 0 calc(100% - 20px);
    }

    .google-ratings-box {
        flex-direction: row;
        text-align: center;
    }

    .google-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* About Us Section */
.about-us {
    padding: 5rem 2rem;
    background: var(--primary-saffron);
}

.about-us .section-title {
    color: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    height: 500px;
    background-color: var(--neutral-beige);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.about-text {
    padding: 2rem;
}

.about-text h3 {
    color: var(--neutral-beige);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.experience-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.number-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.number-box h4 {
    font-size: 2.5rem;
    color: var(--primary-saffron);
    margin-bottom: 0.5rem;
}

/* Tablet styles - for screens up to 1024px */
@media screen and (max-width: 1024px) {
    .about-content {
        max-width: 90%;
        gap: 2rem;
    }

    .about-image {
        height: 400px;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }
}

/* Mobile styles - for screens up to 768px */
@media screen and (max-width: 768px) {
    .about-us {
        padding: 3rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .about-text {
        padding: 0;
    }

    .experience-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .number-box {
        padding: 1rem;
    }

    .number-box h4 {
        font-size: 2rem;
    }
}

/* Small mobile styles - for screens up to 480px */
@media screen and (max-width: 480px) {
    .about-us {
        padding: 2rem 1rem;
    }

    .about-image {
        height: 250px;
    }

    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .number-box {
        padding: 0.8rem;
    }

    .number-box h4 {
        font-size: 1.8rem;
    }
}


/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--primary-saffron);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card .section-title {
    color: var(--white);
}

/* Add new styles for the booking form */
#booking {
    background-color: var(--primary-saffron);
    padding: 2rem;
}

.booking-form {
    background: white;
    color: #000;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff9933;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.submit-btn {
    background: #ff9933;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        display: flex;
        flex-direction: column;
    }
}

/* Footer */
.footer {
    background: var(--neutral-gray);
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}


/* Additional Styles */
.contact-info {
    padding: 2rem;
    background: var(--primary-saffron);
    color: var(--white);
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.contact-info a {
    text-decoration: none;
    color: white;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-links h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--neutral-beige);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--neutral-beige);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-saffron);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    flex-grow: 1;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--white);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

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

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

/* Enhanced Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .experience-numbers {
        grid-template-columns: 1fr 1fr;
    }
}

/* WhatsApp Button Styles */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

#whatsapp-button img {
    width: 35px;
    height: 35px;
}

#whatsapp-link {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 65px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    #whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    #whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }

    #whatsapp-button img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {

    /* Add swipe hint text */
    .swipe-hint {
        text-align: center;
        color: black;
        margin: 10px 0;
        font-size: 14px;
        display: none;
    }

    @media (max-width: 768px) {
        .swipe-hint {
            display: block;
        }
    }
}

/* language */
.translate-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .translate-wrapper {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
}


.content {
    margin-top: 80px;
}

#google_translate_element select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    max-width: 150px;
}

/* Hide the default Google Translate widget */
.goog-te-banner-frame {
    display: none;
}

.goog-te-gadget {
    font-family: Arial, sans-serif !important;
    color: #666;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.goog-te-gadget span {
    display: none;
}


/* styles.css additions */
.fade-in {
    opacity: -1;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.typing-animation {
    overflow: hidden;
    border-right: 2px solid black;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 60%
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: black
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


@media (max-width: 768px) {

    /* Base resets and optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-font-smoothing: antialiased;
    }

    /* Enhanced visibility animations */
    .visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
        filter: blur(0) !important;
    }

    /* New fade in with blur effect */
    .fade-blur-in {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Enhanced sliding animations */
    .slide-in-left,
    .slide-in-right {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        filter: blur(5px);
    }

    /* 3D flip effect for cards */
    .card-3d-effect {
        perspective: 1000px;
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
    }

    .card-3d-effect:active {
        transform: rotateX(5deg) rotateY(5deg);
    }

    /* Ripple effect for buttons */
    .ripple-effect {
        position: relative;
        overflow: hidden;
    }

    .ripple-effect::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
        transform: scale(0);
        opacity: 0;
        transition: transform 0.5s, opacity 0.3s;
    }

    .ripple-effect:active::after {
        transform: scale(2);
        opacity: 0;
        transition: 0s;
    }

    /* Glowing effect */
    .glow-effect {
        position: relative;
    }

    .glow-effect::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
        border-radius: inherit;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: -1;
    }

    .glow-effect:active::before {
        opacity: 0.5;
        animation: glowPulse 1s ease-in-out;
    }

    @keyframes glowPulse {
        0% {
            opacity: 0.5;
        }

        50% {
            opacity: 0.8;
        }

        100% {
            opacity: 0.5;
        }
    }

    /* Shimmer effect */
    .shimmer {
        position: relative;
        overflow: hidden;
    }

    .shimmer::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(to right,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%);
        transform: rotate(30deg);
        animation: shimmerEffect 3s infinite;
    }

    @keyframes shimmerEffect {
        from {
            transform: translateX(-100%) rotate(30deg);
        }

        to {
            transform: translateX(100%) rotate(30deg);
        }
    }

    /* Enhanced floating animation */
    .floating {
        animation: enhancedFloat 3s ease-in-out infinite;
    }

    @keyframes enhancedFloat {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-8px) scale(1.02);
        }
    }

    /* Tilt effect for images */
    .tilt-effect {
        transition: transform 0.3s ease;
        transform-style: preserve-3d;
    }

    .tilt-effect:active {
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    }

    /* Progressive reveal */
    .progressive-reveal {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        animation: revealContent 0.8s ease forwards;
    }

    @keyframes revealContent {
        to {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }

    /* Card stack effect */
    .card-stack {
        position: relative;
    }

    .card-stack::before,
    .card-stack::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: inherit;
        z-index: -1;
        transition: transform 0.3s ease;
    }

    .card-stack::before {
        transform: rotate(-3deg);
    }

    .card-stack::after {
        transform: rotate(3deg);
    }

    .card-stack:active::before {
        transform: rotate(-5deg);
    }

    .card-stack:active::after {
        transform: rotate(5deg);
    }

    /* Apply effects to specific elements */
    .cta-btn {
        @extend .ripple-effect;
    }

    .feature-card {
        @extend .card-3d-effect;
    }

    .astrology-card {
        @extend .card-3d-effect;
    }

    .hero-title {
        @extend .progressive-reveal;
    }

    .gallery-item {
        @extend .tilt-effect;
    }

    .package-card {
        @extend .card-stack;
    }

    .testimonial-card {
        @extend .shimmer;
    }

    .feature-icon {
        @extend .glow-effect;
    }

    /* Loading state animations */
    .loading-state {
        position: relative;
        overflow: hidden;
    }

    .loading-state::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent);
        animation: loadingShimmer 1.5s infinite;
    }

    @keyframes loadingShimmer {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    /* Optimized touch feedback */
    .touch-feedback:active {
        transform: scale(0.97);
        transition: transform 0.2s ease;
    }
}

/* Support for reduced motion */
@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
    * {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .visible {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}