:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --gold-color: #d4af37;
    --dark-text: #2c3e50;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #ebebeb;
}

.navbar {
    background: #ebebeb !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-orange) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    border-radius: 5px;
    object-fit: cover;
}

.nav-link {
    color: var(--primary-orange) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--dark-text) !important;
}

.hero-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(255, 140, 66, 0.75)),
                url('../img/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.ge-logo {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-orange), var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
    font-weight: 500;
}

.hero-services {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #f0f6fc;
    line-height: 1.8;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
    border: none;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 45px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-orange), var(--gold-color));
    border-radius: 2px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-orange);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.tours-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

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

.tour-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-orange), var(--gold-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    overflow: hidden;
}

.tour-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.contact-section {
    background: var(--dark-text);
    color: white;
    padding: 80px 0;
}

.contact-card {
    background:var(--primary-orange);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}
.email-info{
    margin-bottom: 1rem;

}
.email-info a{
    font-size: 0.9rem;
    color: #efe9d3;
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.decorative-element {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.temple-icon {
    top: 20%;
    left: 10%;
    font-size: 4rem;
    color: var(--gold-color);
}

.music-icon {
    top: 60%;
    right: 15%;
    font-size: 3rem;
    color: var(--primary-orange);
}

.footer {
    background: var(--primary-orange);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-rating i {
    color: #f5c518; /* star gold */
}

.testimonial-text {
    color: var(--dark-text);
    font-size: 1rem;
}

/* Clamp testimonials on homepage to 3 lines */
#testimonials .testimonial-text {
    /* Primary clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    /* Fallbacks */
    line-height: 1.6;
    max-height: calc(1.6em * 3);
    word-break: break-word;
    hyphens: auto;
}

/* Festival Offer Section */
.festival-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--dark-text);
    height: 100%;
}

.festival-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.festival-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 3px solid var(--gold-color);
    transform: scale(1.05);
}

.festival-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.festival-badge.popular {
    background: var(--gold-color);
    color: var(--dark-text);
}

.festival-title {
    color: var(--dark-text);
    font-size: 1.4rem;
    font-weight: bold;
    margin: 25px 0 20px;
}

.festival-duration {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0 20px;
    font-style: italic;
}

.festival-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.festival-features li {
    padding: 8px 0;
    color: var(--dark-text);
    display: flex;
    align-items: center;
}

.festival-features li i {
    color: var(--primary-orange);
    margin-right: 10px;
    width: 16px;
}

.festival-highlight {
    background: var(--gold-color);
    color: var(--dark-text);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .festival-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-orange);
}

/* Centered carousel slide card */
.testimonial-slide {
    max-width: 720px;
    width: 100%;
}

.review-avatar {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.winter-carousel-img-wrap {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.winter-carousel-img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.winter-carousel-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) brightness(2);
}

#winter-launches .carousel-control-prev-icon,
#winter-launches .carousel-control-next-icon {
    filter: invert(1) brightness(2) drop-shadow(0 0 6px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .winter-carousel-img-wrap {
        padding: 10px;
    }
}

/* Ensure carousel controls/indicators visible on white */
#testimonials .carousel-control-prev-icon,
#testimonials .carousel-control-next-icon {
    filter: invert(1) grayscale(100); /* dark icons */
}

#testimonials .carousel-indicators [data-bs-target] {
    background-color: #333;
}

/* Improve carousel controls and indicators layout */
#testimonials .carousel-inner {
    padding: 0 3.5rem 2.25rem; /* space for arrows and bullets */
}

#testimonials .carousel-indicators {
    position: static; /* move below slides */
    margin-top: 0.75rem;
}

#testimonials .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.4;
    background-color: #6c757d;
}

#testimonials .carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-orange);
}

#testimonials .carousel-control-prev,
#testimonials .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

/* Add subtle circular background to arrows for better contrast */
#testimonials .carousel-control-prev::before,
#testimonials .carousel-control-next::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    #testimonials .carousel-inner {
        padding: 0 2.5rem 2rem;
    }
    #testimonials .carousel-control-prev,
    #testimonials .carousel-control-next {
        width: 2.5rem;
        height: 2.5rem;
    }
    #testimonials .carousel-control-prev::before,
    #testimonials .carousel-control-next::before {
        width: 2.25rem;
        height: 2.25rem;
    }
}

@media (max-width: 768px) {
    .ge-logo {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-services {
        font-size: 1rem;
    }
}
