/* Global Styles */
:root {
    --primary-color: #ad0002;
    --secondary-color: #cc0000;
    --accent-color: #ff6600;
    --dark-color: #333333;
    --white-color: #ffffff;
    --light-color: #f8f9fa;
    --text-color: #444444;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);   
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #5d1916;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: darken;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.announcement-text marquee {
    font-family: 'Sofia', cursive;
    color: #ad0002;
    font-size: 1.2rem;
}

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

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(173, 0, 2, 0.3);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(173, 0, 2, 0.3);
}

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: #F05522;
    font-family: 'Sofia', cursive;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 18px;
    color: #777;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: rgb(253, 190, 87);
    background: linear-gradient(90deg, rgba(253, 190, 87, 1) 0%, rgba(252, 187, 88, 1) 10%, rgba(244, 119, 40, 1) 40%, rgb(248 38 38) 100%);
    border-bottom: 3px solid var(--primary-color);
    border-bottom-left-radius: 6rem;
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo span.highlight {
    font-size: x-large;
    color: #ffffff;
}

.logo img {
    height: 80px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--white-color);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.logo a h2 {
    color: var(--white-color);
    margin-top: 10px;
   
}

.logo a {
    margin-top: -40px;
    position: absolute;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    user-select: none;
    outline: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding-top: 115px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffebcc 100%); /* Light orange/cream background */
}

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

.hero-content {
    flex: 1;
    padding: 40px;
    margin-right: 30px;
    animation: fadeInLeft 1s ease-out;
   
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
}

.hero-content h1 .highlight{    
    font-family: 'Sofia', cursive;
    color: #ad0002;
    font-size: 3rem;
}

/* Add a pseudo-element to ensure content remains readable 
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: -1;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
    */

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #F05522;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #666;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Hero Carousel Styles */
.hero-carousel {
    flex: 1;
    text-align: right;
    animation: fadeInRight 1s ease-out;
}

.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.03);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    z-index: 10;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); */
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.feature {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(5px);
}

.feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* Services Section */
.services {
    background-color: #fff8dc; /* Light yellow/cream color */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(173, 0, 2, 0.1); /* Updated to match primary color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Products Section */
.products {
    background-color: #fffaf0; /* Floral white */
}

.products-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #e07c24;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-info p {
    margin-bottom: 20px;
}

.product-btn {
    padding: 8px 20px;
    font-size: 14px;
    background-color: var(--primary-color);
    color: white;
}

.product-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(173, 0, 2, 0.3);
    color:white;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background-color: #ffe6e6; /* Very light red/pink */
}

.testimonials-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #800000;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-text p::before, .testimonial-text p::after {
    content: '"';
    font-size: 50px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text p::before {
    top: -20px;
    left: 0;
}

.testimonial-text p::after {
    bottom: -40px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    transition: var(--transition);
}

.testimonial:hover .testimonial-author img {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 3px;
    color: var(--dark-color);
}

.author-info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: #f9f9f9; /* Very light gray */
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    color: #b8860b; /* Dark golden rod for contact icons */
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
}
.contact-form .contact-item {
    margin-bottom: 0px;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(173, 0, 2, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error, .form-group textarea.error {
    border-color: #ff3333;
    box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    animation: fadeIn 0.5s ease;
}

/* Footer */
footer {
    background-color: #5d1916; /* Darker red for footer */
    color: #fff;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links, .footer-services, .footer-newsletter {
    flex: 1;
    min-width: 200px;
}

footer h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

footer h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ccc;
    transition: var(--transition);
}

footer ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter input.error {
    border: 1px solid #ff3333;
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Keyframe Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 50vh);
        background-color: #ba7875;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    header {
        border-bottom-left-radius: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .products-slider {
        flex-direction: column;
    }
    
    .product-card {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .testimonial {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-services, .footer-newsletter {
        margin-bottom: 30px;
    }
}

/* Navigation Active State */
.nav-links a.active {
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
}

/* Update section headers with section-specific colors */
.about .section-header h2::after {
    background-color: var(--primary-color);
}

.services .section-header h2::after {
    background-color: #e07c24; /* Orange accent */
}

.products .section-header h2::after {
    background-color: #ad0002; /* Primary red color */
}

.testimonials .section-header h2::after {
    background-color: #800000; /* Dark red */
}

.contact .section-header h2::after {
    background-color: #b8860b; /* Dark golden rod */
}

/* Gradient background for header buttons to provide visual consistency */
.cta-buttons .primary-btn {
    background: linear-gradient(to right, var(--primary-color), #800000);
    border: none;
}

.cta-buttons .primary-btn:hover {
    background: linear-gradient(to right, #800000, var(--primary-color));
}

/* Subtle decorative element */
.services::before, .testimonials::before, .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), #e07c24, var(--primary-color));
}

.services, .testimonials, .contact {
    position: relative;
}

/* Product card styling */
.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #e07c24;
}

/* About features styling */
.about-features .feature i {
    color: #e07c24; /* Orange accent for about features */
}

/* Add subtle section transition elements */
section:not(.hero) {
    position: relative;
    overflow: hidden;
}

section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.7;
}

/* Form submit button */
.contact-form .primary-btn {
    background: linear-gradient(to right, var(--primary-color), #800000);
    border: none;
}

.contact-form .primary-btn:hover {
    background: linear-gradient(to right, #800000, var(--primary-color));
}

/* Footer styling enhancements */
.footer-content h3 {
    color: #ffcc99;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-content h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f1f1f1;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Star Rating Styles */
.rating {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.rating i {
    color: #F05522;
    font-size: 16px;
}

.rating .far {
    color: #ddd;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

/* Donate Button in Navigation */
.donate-btn {
    background-color: #800000;
    color: var(--white-color) !important;
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(173, 0, 2, 0.3);
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background-color:var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(173, 0, 2, 0.4);
}

.donate-btn i {
    font-size: 14px;
}

.donate-btn::after {
    display: none;
}

/* Donation Section */
.donate {
    background-color: #fff8f0;
    position: relative;
}

.donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #800000, var(--primary-color), #800000);
}

.donate-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.donate-info {
    flex: 1;
    min-width: 300px;
}

.donate-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #5d1916;
}

.donate-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.donation-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 24px;
    color: var(--primary-color);
    background-color: rgba(173, 0, 2, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.benefit-item p {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
}

.donate-options {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.donation-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    border-left: 3px solid var(--primary-color);
}

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

.donation-card h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #5d1916;
}

.donation-card p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.amount-btn {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover, .amount-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.amount-btn.custom {
    background-color: transparent;
    border: 1px dashed #aaa;
}

.amount-btn.custom:hover {
    background-color: #f0f0f0;
    color: var(--dark-color);
    border-color: #999;
}

.donate-now-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.donate-now-btn i {
    font-size: 18px;
}

.donation-card.monthly {
    border-left: 3px solid #800000;
    border-top: 3px solid #800000;
    transform: scale(1.03);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #800000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.donation-note {
    margin-top: 40px;
    text-align: center;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    font-size: 14px;
}

.donation-note p {
    margin-bottom: 0;
    color: #666;
}

.donation-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Update section headers */
.donate .section-header h2::after {
    background-color: #800000;
}

/* Donation card QR code styling */
.qr-code {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.qr-code img {
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    width: auto;
}

.qr-instructions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.qr-instructions i {
    color: var(--primary-color);
    font-size: 18px;
}

.qr-image {
    height: 200px;
    width: 200px;
}

.location-barcode {
    text-align: center;
}

.location-barcode img { 
    height: 240px;
}

/* Email link styling */
a[href^="mailto:"] {
    color: #ffaa00;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: underline;
}

a[href^="mailto:"]:hover {
    color: #e07c24;
    text-decoration: none;
}

/* Razorpay Payment Section */
.razorpay-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.razorpay-options .donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.razorpay-options .amount-btn {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 100px;
}

.razorpay-options .amount-btn:hover,
.razorpay-options .amount-btn.active {
    background-color: var(--primary-color) !important;
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.razorpay-options .amount-btn.custom {
    background-color: transparent;
    border: 1px dashed #aaa;
}

.razorpay-options .amount-btn.custom:hover {
    background-color: #f0f0f0;
    color: var(--dark-color);
    border-color: #999;
}

.razorpay-options .donate-now-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(to right, var(--primary-color), #800000);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.razorpay-options .donate-now-btn:hover {
    background: linear-gradient(to right, #800000, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 0, 2, 0.3);
}

.razorpay-options .donate-now-btn i {
    font-size: 18px;
}

/* Sponsors & Donors Section */
.sponsors-section {
    background-color: #f9f5f0;
}

.sponsors-categories {
    margin-top: 50px;
}

.sponsor-category {
    margin-bottom: 60px;
}

.category-title {
    position: relative;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
    padding-bottom: 10px;
}

.category-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.sponsors-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.sponsor-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.donor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sponsor-card:hover .donor-img {
    transform: scale(1.05);
}

.sponsor-info {
    padding: 20px;
    text-align: center;
}

.sponsor-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.donor-contribution {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 20px;
    margin: 8px 0;
}

.sponsors-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.sponsor-logo {
    text-align: center;
    width: 180px;
    transition: transform 0.3s ease;
}

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

.sponsor-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sponsor-logo:hover img {
    filter: grayscale(0%);
}

.sponsor-logo p {
    font-size: 14px;
    color: var(--dark-color);
}

.become-donor {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(to right, rgba(173, 0, 2, 0.05), rgba(204, 0, 0, 0.05));
    border-radius: 10px;
}

.become-donor h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.become-donor p {
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Sponsors Section */
@media (max-width: 768px) {
    .sponsors-row {
        gap: 20px;
    }
    
    .sponsor-card {
        width: 280px;
    }
    
    .sponsor-logo {
        width: 130px;
    }
    
    .sponsor-logo img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .sponsors-row {
        gap: 15px;
    }
    
    .sponsor-card {
        width: 100%;
        max-width: 300px;
    }
    
    .sponsors-logos {
        gap: 20px;
    }
    
    .sponsor-logo {
        width: 110px;
    }
    
    .sponsor-logo img {
        width: 80px;
        height: 80px;
    }
}

/* Festival Gallery Section */
.gallery-section {
    margin-top: 60px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-title {
    text-align: center;
    font-size: 28px;
    color: #F05522;
    margin-bottom: 10px;
    font-family: 'Sofia', cursive;
}

.gallery-description {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.year-tab {
    padding: 10px 25px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.year-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), #800000);
    transition: width 0.3s ease;
    z-index: -1;
}

.year-tab:hover::before, .year-tab.active::before {
    width: 100%;
}

.year-tab:hover, .year-tab.active {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(173, 0, 2, 0.2);
}

.gallery-container {
    position: relative;
    min-height: 300px;
}

.gallery-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
}

.gallery-grid.active {
    display: grid;
    opacity: 1;
    position: relative;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    margin-bottom: 5px;
    color: white;
    font-size: 18px;
}

.gallery-caption p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.8;
}

.gallery-view-more {
    text-align: center;
    margin-top: 40px;
}

.gallery-view-more .btn {
    padding: 12px 30px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .gallery-section {
        padding: 30px 20px;
    }
    
    .year-tab {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 160px;
    }
    
    .gallery-caption h4 {
        font-size: 16px;
    }
    
    .gallery-caption p {
        font-size: 12px;
    }
    
    .year-tab {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Hero image styles */
.hero-carousel img {
    width: 100%;
    /*height: 400px;*/
    border-radius: 8px;
    object-fit: cover;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
}

/* Announcement bar styles 
.announcement-bar {
    background-color: rgba(240, 85, 34, 0.1);
    padding: 8px 0;
    border-bottom: 1px solid rgba(240, 85, 34, 0.2);
}
*/
/* Highlight class for text */
.highlight {
    color: #F05522;
    font-family: 'Sofia', cursive;
    font-weight: 600;
}

/* Video Items in Gallery */
.video-item {
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(173, 0, 2, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.video-item:hover .play-button {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-tag {
    display: inline-block;
    background-color: rgba(173, 0, 2, 0.8);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 500;
}

.video-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.video-container.active {
    display: flex;
}

.video-container video {
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.video-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-close:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .video-container {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .play-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.video-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1;
}

.video-item:hover .video-logo {
    transform: scale(1.1);
}

.video-logo img {
    width: 60px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-logo img {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .video-logo img {
        width: 40px;
    }
    
    .video-logo {
        bottom: 5px;
        right: 5px;
        padding: 2px;
    }
}

/* PWA Installation Styles */
.install-app-container {
    text-align: center;
    margin-top: 30px;
}

.add-to-home-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(173, 0, 2, 0.2);
}

.add-to-home-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(173, 0, 2, 0.3);
}

.add-to-home-btn::before {
    content: "\f019";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

.ios-install-instructions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
}

.ios-install-banner {
    background-color: var(--white-color);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--primary-color);
}

.ios-install-content {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 5px;
}

.ios-install-icon {
    font-size: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.ios-install-text {
    flex-grow: 1;
}

.ios-install-text p {
    margin: 0;
}

.ios-install-close {
    background: transparent;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.ios-install-close:hover {
    color: var(--primary-color);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.offline-indicator {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 9999;
    display: none;
    animation: fadeIn 0.3s ease;
}

.offline-indicator.show {
    display: block;
}

/* Offline page styles */
.offline-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.offline-page h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offline-page p {
    margin-bottom: 30px;
    max-width: 500px;
}

.offline-icon {
    font-size: 80px;
    color: #999;
    margin-bottom: 30px;
}

.retry-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.retry-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.daily-rituals span {
    display: block;
}

/* Make the site work better for standalone mode */
@media all and (display-mode: standalone) {
    /* Adjust header to account for iOS safe areas */
    header {
        padding-top: env(safe-area-inset-top);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    /* Adjust footer padding for iOS safe areas */
    footer {
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    /* Hide browser UI related elements when in app mode */
    .header-back-to-site {
        display: none;
    }
}

/* Add to home screen animation */
.add-to-home-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(173, 0, 2, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(173, 0, 2, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(173, 0, 2, 0);
    }
}
