/* Color Scheme Based on Your Logo */
:root {
    --dark-green: #1a3e1a;  /* Deep green (from logo text) */
    --light-brown: #d2b48c;  /* Earthy brown (traditional Ayurveda) */
    --light-beige: #f5f5dc;  /* Soft background */
}

/* Top Bar & Footer */
.bg-dark-green {
    background-color: var(--dark-green);
}

.bg-light-brown {
    background-color: var(--light-brown);
}

.bg-light-beige {
    background-color: var(--light-beige);
}

/* Hero Banner with background color */
.hero-banner {
    background-color: #F5E8C6; /* Warm cream color (adjust to match your logo's secondary color) */
    padding: 100px 0;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #F5E8C6 0%, rgba(245,232,198,0.8) 50%, rgba(245,232,198,0) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner img {
    max-height: 500px;
    width: auto;
    margin-left: auto;
    display: block;
}

/* Buttons */
.btn-dark-green {
    background-color: var(--dark-green);
    color: white;
    border: none;
}
.btn-dark-green:hover {
    background-color: #0f2c0f;
}

/* Text Colors */
.text-dark-green {
    color: var(--dark-green);
}

.breadcrumb-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/breadcrumb.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: white;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.breadcrumb-item a {
    color: #f5e8c6; /* Light cream color */
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #f5e8c6; /* Light cream color for separator */
}


/* Add to custom.css */
.gallery-section {
    background-color: #f9f5f0; /* Light warm background */
}

.gallery-item {
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.btn-outline-dark-green {
    color: #1a3e1a;
    border-color: #1a3e1a;
}

.btn-outline-dark-green:hover,
.btn-outline-dark-green.active {
    background-color: #1a3e1a;
    color: white;
}

/* Lightbox adjustments */
.lb-data .lb-caption {
    font-size: 1rem;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        padding: 100px 0;
        text-align: center;
    }
}

/* Contact Addresses Section */
.contact-addresses {
    background-color: #f9f5f0;
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bg-success-light {
    background-color: rgba(26, 62, 26, 0.1); /* 10% dark green */
}

.btn-outline-dark-green {
    color: #1a3e1a;
    border-color: #1a3e1a;
}

.btn-outline-dark-green:hover {
    background-color: #1a3e1a;
    color: white;
}

address {
    font-style: normal;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-addresses .card {
        margin-bottom: 20px;
    }
}

/* Video Container with Play Button */
.video-container {
    position: relative;
    cursor: pointer;
    background: #000;
}

.video-poster {
    transition: opacity 0.3s;
}

.video-container:hover .video-poster {
    opacity: 0.9;
}

.play-button-overlay {
    z-index: 2;
    transition: transform 0.3s;
}

.play-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-container:hover .play-icon {
    transform: scale(1.1);
    background-color: #1a3e1a; /* Darker green on hover */
}

/* When video is playing */
.video-container.playing .video-poster,
.video-container.playing .play-button-overlay {
    display: none;
}

.video-container.playing video {
    display: block !important;
    width: 100%;
    height: auto;
    max-height: 400px;
}
.image-s{
    width: 50px;
    height: 50px;
}