
         :root {
            --primary-blue: #1C538E;
            --primary-orange: #F96300;
            --light-gray: #F5F5F5;
            --border-color: #E0E0E0;
            --text-dark: #333333;
            --text-light: #666666;
            --success-green: #4CAF50;
        }

    
  .page-header{
         background-image: 
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("/assets/front/img/page-header.webp");
        background-position: top;
        background-size: cover;
        padding: 70px 0px;
        background-repeat: no-repeat;
     }
        /* Header */
        .booking-header {
            text-align: left;
           
        }

        .booking-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .history-header p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Navigation Tabs */
        .history-nav {
            background: white;
            border-bottom: 3px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            margin-bottom: 40px;
        }

        .history-nav-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .history-nav-item {
            margin: 0;
        }

        .history-nav-link {
            display: block;
            padding: 20px 25px;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .history-nav-link:hover {
            color: var(--primary-orange);
        }

        .history-nav-link.active {
            color: var(--primary-orange);
            border-bottom-color: var(--primary-orange);
        }

        /* Content Sections */
        .history-section {
            display: none;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            animation: fadeIn 0.5s ease;
        }

        .history-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Section Title */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-title i {
            font-size: 2.5rem;
            color: var(--primary-orange);
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
        }

        .timeline-item {
            margin-bottom: 40px;
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: auto;
            width: 45%;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
            margin-right: 0;
            width: 45%;
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: white;
            border: 4px solid var(--primary-orange);
            border-radius: 50%;
            z-index: 10;
        }

        .timeline-content {
            background: var(--light-gray);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .timeline-year {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 8px;
        }

        .timeline-description {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Accordion */
        .accordion-button {
            background: white;
            color: var(--text-dark);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 20px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0F3A5F 100%);
            color: white;
            border-color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(28, 83, 142, 0.2);
        }

        .accordion-button:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.25rem rgba(249, 99, 0, 0.15);
        }

        .accordion-body {
            padding: 30px;
            border: 2px solid var(--border-color);
            border-top: none;
            border-radius: 0 0 10px 10px;
            background: white;
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Cards */
        .history-card {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .history-card:hover {
            border-color: var(--primary-orange);
            box-shadow: 0 8px 20px rgba(249, 99, 0, 0.1);
            transform: translateY(-5px);
        }

        .history-card-icon {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        .history-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .history-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
            border-left: 5px solid var(--primary-orange);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .highlight-box strong {
            color: var(--primary-blue);
        }

        /* Direction Badge */
        .direction-badge {
            display: inline-block;
            background: var(--primary-blue);
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            margin-top: 15px;
        }

        .direction-badge i {
            margin-right: 8px;
        }

        /* Architecture Grid */
        .architecture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .arch-item {
            background: var(--light-gray);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .arch-item:hover {
            border-color: var(--primary-orange);
            background: white;
        }

        .arch-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }

        .arch-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .arch-item p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Footer */
        .history-footer {
            background: var(--light-gray);
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
            border-top: 3px solid var(--border-color);
        }

        .history-footer h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 60px;
                margin-right: 0;
                width: 100%;
                text-align: left;
            }

            .timeline-dot {
                left: 20px;
            }

            .history-header h1 {
                font-size: 1.8rem;
            }

            .history-nav-link {
                padding: 15px 15px;
                font-size: 0.9rem;
            }
        }
        
        
/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-showcase {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 50%, #FFF8F0 100%);
    overflow: hidden;
}

/* CTA Wrapper */
.cta-wrapper-enhanced {
    position: relative;
    background: #E85D00;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* Decorative Top Mandala */
.cta-decorative-top {
    text-align: center;
    margin-bottom: 35px;
}

.cta-mandala {
    color: rgba(255, 255, 255, 0.8);
    animation: mandala-rotate 30s linear infinite;
}

@keyframes mandala-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =====================================================
   CTA CONTENT
   ===================================================== */
.cta-content-enhanced {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Badge Label */
.cta-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 18px;
}

/* Main Title */
.cta-main-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Decorative Line */
.cta-decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.cta-decorative-line .line-segment {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.cta-decorative-line .line-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* Subtitle */
.cta-subtitle-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Highlights */
.cta-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-highlight-item i {
    font-size: 18px;
}

/* =====================================================
   CTA BUTTONS
   ===================================================== */
.cta-buttons-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: white;
    color: var(--temple-maroon);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-flame);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-cta-primary:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.btn-cta-primary:hover::before {
    left: 0;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--temple-maroon);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3);
}

.btn-icon-right {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-icon-right,
.btn-cta-secondary:hover .btn-icon-right {
    transform: translateX(5px);
}

/* =====================================================
   CTA DECORATIVE ELEMENTS
   ===================================================== */
.cta-decorative-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
    opacity: 0.3;
}

.decorative-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q300,100 600,50 T1200,50 L1200,120 L0,120 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: cover;
    animation: wave-flow 15s linear infinite;
}

@keyframes wave-flow {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-600px);
    }
}

/* Background Glow */
.cta-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Floating Diyas */
.floating-diya,
.floating-om-cta {
    position: absolute;
    font-size: 100px;
    opacity: 0.08;
    pointer-events: none;
    color: white;
}

.floating-diya-1 {
    top: 10%;
    left: 5%;
    animation: float-gentle 18s ease-in-out infinite;
}

.floating-diya-2 {
    bottom: 10%;
    right: 5%;
    animation: float-gentle 22s ease-in-out infinite reverse;
}

.floating-om-cta {
    top: 50%;
    right: 10%;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 150px;
    opacity: 0.05;
    animation: float-gentle 25s ease-in-out infinite;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-showcase,
    .cta-showcase {
        padding: 80px 0;
    }

    .heading-title-services,
    .cta-main-title {
        font-size: 42px;
    }

    .cta-wrapper-enhanced {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .services-showcase,
    .cta-showcase {
        padding: 60px 0;
    }

    .heading-title-services,
    .cta-main-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-modern {
        min-height: 320px;
    }

    .cta-wrapper-enhanced {
        padding: 50px 30px;
    }

    .cta-subtitle-text {
        font-size: 18px;
    }

    .cta-highlights {
        gap: 15px;
    }

    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }

    .floating-flower,
    .floating-diya,
    .floating-om-cta {
        display: none;
    }
}

@media (max-width: 576px) {
    .heading-title-services,
    .cta-main-title {
        font-size: 30px;
    }

    .service-card-modern {
        padding: 35px 25px;
        min-height: 300px;
    }

    .service-icon-circle {
        width: 100px;
        height: 100px;
    }

    .service-icon-img {
        width: 50px;
        height: 50px;
    }

    .cta-wrapper-enhanced {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-subtitle-text {
        font-size: 16px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* =====================================================
   LOADING ANIMATIONS
   ===================================================== */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-wrapper {
    animation: fade-in-up 0.6s ease-out both;
}

.service-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}

.cta-wrapper-enhanced {
    animation: fade-in-up 0.8s ease-out both;
}
