 
        :root {
            --deep-purple: #4A1F6F;
            --gold: #C9A343;
            --burgundy: #7B2D26;
            --cream: #F8F4E3;
            --dark-blue: #1A1830;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--cream);
            color: #333;
            line-height: 1.6;
        }
        
        /* Header Styles */
        .navbar {
            background-color: var(--deep-purple);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            color: var(--gold) !important;
            font-weight: 700;
            font-size: 24px;
        }
        
        .navbar-nav .nav-link {
            color: var(--cream) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 24, 48, 0.85), rgba(26, 24, 48, 0.85)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3') center/cover no-repeat;
            padding: 100px 0;
            color: white;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content {
            padding-right: 30px;
        }
        
        .hero p.lead {
            font-size: 1.35rem;
            margin-bottom: 30px;
        }
        
        .appointment-form {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 10px;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .appointment-form h3 {
            color: var(--gold);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .btn-gold {
            background-color: var(--gold);
            color: var(--dark-blue);
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-gold:hover {
            background-color: #d4b45c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: white;
        }
        
        .about-img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s;
        }
        
        .about-img:hover {
            transform: scale(1.02);
        }
        
        .section-title {
            color: var(--deep-purple);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--gold);
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--cream);
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: var(--deep-purple);
            margin-bottom: 15px;
        }
        
        /* Pooja Section */
        .pooja {
            padding: 100px 0;
            background: linear-gradient(rgba(26, 24, 48, 0.92), rgba(26, 24, 48, 0.92)), url('https://images.unsplash.com/photo-1589998059171-988d887df646?ixlib=rb-4.0.3') fixed center/cover;
            color: white;
        }
        
        .pooja-title {
            color: var(--gold);
            text-align: center;
        }
        
        .pooja-item {
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .pooja-item:hover {
            transform: translateY(-5px);
        }
        
        .pooja-img {
            border-radius: 10px;
            height: 180px;
            object-fit: cover;
            width: 100%;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: white;
        }
        
        .testimonial-card {
            background-color: var(--cream);
            padding: 30px;
            border-radius: 10px;
            margin: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
        }
        
        .testimonial-card:after {
            content: '\201D';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 60px;
            color: var(--gold);
            font-family: Georgia, serif;
            opacity: 0.2;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            color: var(--deep-purple);
            font-weight: 600;
        }
        
        .testimonial-rating {
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        /* Branches Section */
        .branches {
            padding: 100px 0;
            background-color: var(--cream);
        }
        
        .branch-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .branch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }
        
        .branch-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: white;
        }
        
        .accordion-button {
            font-weight: 600;
            color: var(--deep-purple);
            padding: 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--gold);
            color: var(--dark-blue);
        }
        
        .accordion-body {
            padding: 20px;
        }
        
        /* Callout Section */
        .callout {
            padding: 120px 0;
            background: linear-gradient(rgba(74, 31, 111, 0.85), rgba(74, 31, 111, 0.85)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3') center/cover no-repeat;
            color: white;
            text-align: center;
        }
        
        .callout h2 {
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: var(--gold);
        }
        
        .callout p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 80px 0 0;
        }
        
        .footer-title {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }
        
        address {
            font-style: normal;
            margin-bottom: 20px;
        }
        
        .social-icons {
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--gold);
            color: var(--dark-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            background-color: rgba(0, 0, 0, 0.25);
            padding: 25px 0;
            margin-top: 60px;
            text-align: center;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p.lead {
                font-size: 1.2rem;
            }
            
            .appointment-form {
                margin-top: 30px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate-fadeIn {
            animation: fadeIn 1s ease-out;
        }
  