    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --midnight-black: #0a0a14;
            --deep-space: #141424;
            --royal-purple: #4a1e8a;
            --imperial-purple: #5a2b9d;
            --celestial-purple: #6b38b0;
            --divine-purple: #7c45c4;
            --sacred-gold: #d4af37;
            --golden-light: #e6c158;
            --starlight: #f5f5fa;
            --moonlight: #d8d8e8;
            --cosmic-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            --divine-glow: 0 0 30px rgba(107, 56, 176, 0.4);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--midnight-black);
            color: var(--starlight);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 14px;
        }

        h1, h2, h3, h4 {
            font-family: 'Crimson Pro', serif;
            font-weight: 400;
            color: var(--sacred-gold);
            margin-bottom: 1.2rem;
        }

        p {
            margin-bottom: 1.2rem;
            color: var(--moonlight);
            font-size: 14px;
        }

        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .address-bar {
            background: var(--deep-space);
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            z-index: 1001;
        }

        .address-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .address-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--moonlight);
        }

        .address-item i {
            color: var(--sacred-gold);
            font-size: 12px;
        }

        .nav-container {
            position: sticky;
            top: 0;
            background: rgba(20, 20, 36, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 1000;
            border-bottom: 2px solid var(--sacred-gold);
            box-shadow: var(--cosmic-shadow);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon img {
            width: 105px;
            height: 105px;
            background: radial-gradient(circle, var(--celestial-purple), var(--royal-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
           object-fit: cover;
        }

        .logo-text h1 {
            font-size: 1.2rem;
            margin-bottom: 2px;
            color: var(--sacred-gold);
        }

        .logo-text p {
            font-size: 11px;
            color: var(--moonlight);
            margin-bottom: 0;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .desktop-nav ul li a {
            color: var(--starlight);
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .desktop-nav ul li a:hover, .desktop-nav ul li a.active {
            background: rgba(212, 175, 55, 0.1);
            color: var(--sacred-gold);
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--sacred-gold);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
            z-index: 1002;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, 
                rgba(74, 30, 138, 0.95), 
                rgba(20, 20, 36, 0.98));
            z-index: 1001;
            padding: 80px 30px 30px;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            border-left: 2px solid var(--sacred-gold);
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav ul li {
            margin-bottom: 15px;
        }

        .mobile-nav ul li a {
            color: var(--starlight);
            text-decoration: none;
            font-size: 16px;
            padding: 12px 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .mobile-nav ul li a:hover, .mobile-nav ul li a.active {
            background: rgba(212, 175, 55, 0.15);
            color: var(--sacred-gold);
        }

        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--sacred-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 20, 0.8);
            z-index: 1000;
        }

        .mobile-overlay.active {
            display: block;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--celestial-purple), var(--imperial-purple));
            color: white;
            padding: 9px 22px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: 1px solid var(--sacred-gold);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--divine-glow);
        }

        /* Page System */
        .page {
            display: none;
            min-height: calc(100vh - 150px);
        }

        .page.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .cosmic-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: 
                radial-gradient(circle at 20% 30%, rgba(107, 56, 176, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, var(--midnight-black) 0%, var(--deep-space) 100%);
        }

        /* Floating Divine Elements */
        .divine-elements {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .divine-element {
            position: absolute;
            font-size: 2rem;
            color: var(--sacred-gold);
            opacity: 0.1;
            animation: divineFloat 20s infinite linear;
        }

        @keyframes divineFloat {
            0% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-50px) rotate(90deg); }
            50% { transform: translateY(0) rotate(180deg); }
            75% { transform: translateY(50px) rotate(270deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        /* Modern Hero Section */
        .modern-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 100px 0;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            position: relative;
            z-index: 2;
        }

        .main-title {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            position: relative;
            display: inline-block;
        }

        .main-title::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--sacred-gold), var(--divine-purple), var(--sacred-gold));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: titleGlow 4s ease infinite;
            z-index: -1;
        }

        @keyframes titleGlow {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(30deg); }
        }

        .gold-text {
            background: linear-gradient(45deg, var(--sacred-gold), #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: block;
            margin-top: 10px;
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--divine-purple);
            margin-bottom: 2rem;
            font-weight: 500;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-highlight {
            color: var(--sacred-gold);
            font-weight: 600;
            background: rgba(212, 175, 55, 0.15);
            padding: 5px 15px;
            border-radius: 20px;
            margin: 0 5px;
            display: inline-block;
            animation: pulse 2s infinite;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
        }

        .astrologer-info {
            background: linear-gradient(135deg, 
                rgba(74, 30, 138, 0.3), 
                rgba(20, 20, 36, 0.5));
            padding: 25px;
            border-radius: 15px;
            margin: 2rem auto;
            max-width: 600px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            animation: fadeInUp 1s ease forwards 0.8s;
            opacity: 0;
        }

        .astrologer-info h3 {
            color: var(--sacred-gold);
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .astrologer-phone {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            padding: 8px 20px;
            border-radius: 25px;
            margin-top: 10px;
            color: var(--sacred-gold);
            font-weight: 600;
        }

        /* Astrologer Office Section */
        .astrologer-office-section {
            padding: 100px 0;
            background: linear-gradient(135deg, 
                rgba(74, 30, 138, 0.2), 
                rgba(20, 20, 36, 0.8));
        }

        .office-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .office-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            box-shadow: var(--cosmic-shadow);
        }

        .office-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .office-image:hover img {
            transform: scale(1.1);
        }

        .office-details {
            background: linear-gradient(145deg, 
                rgba(74, 30, 138, 0.25), 
                rgba(20, 20, 36, 0.5));
            border-radius: 20px;
            padding: 40px;
            border: 2px solid var(--sacred-gold);
        }

        .office-details h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--sacred-gold);
        }

        .office-address {
            margin: 25px 0;
            padding: 20px;
            background: rgba(10, 10, 20, 0.4);
            border-radius: 12px;
            border-left: 3px solid var(--divine-purple);
        }

        .office-address p {
            margin-bottom: 8px;
            font-size: 13px;
        }

        .astrologer-contact {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 25px;
            padding: 15px 25px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .astrologer-contact i {
            font-size: 1.5rem;
            color: var(--sacred-gold);
        }

        .phone-number {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--sacred-gold);
        }

        /* Multiple Sliders Section */
        .multi-slider-section {
            padding: 100px 0;
            position: relative;
            background: linear-gradient(135deg, 
                rgba(20, 20, 36, 0.8) 0%, 
                rgba(10, 10, 20, 0.9) 100%);
        }

        .slider-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .slider-card {
            background: linear-gradient(145deg, 
                rgba(74, 30, 138, 0.25), 
                rgba(20, 20, 36, 0.5));
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .slider-card:hover {
            transform: translateY(-10px);
            border-color: var(--sacred-gold);
            box-shadow: var(--divine-glow);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--sacred-gold);
            margin-bottom: 25px;
            display: inline-block;
        }

        .slider-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--sacred-gold);
        }

        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: rgba(20, 20, 36, 0.5);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .stat-card {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(145deg, 
                rgba(74, 30, 138, 0.3), 
                rgba(20, 20, 36, 0.5));
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--sacred-gold);
            box-shadow: var(--divine-glow);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--sacred-gold);
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--moonlight);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: linear-gradient(145deg, 
                rgba(74, 30, 138, 0.2), 
                rgba(20, 20, 36, 0.4));
            border-radius: 15px;
            padding: 40px 30px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.4s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--sacred-gold);
            box-shadow: var(--divine-glow);
        }

        /* Divine Quotes Carousel */
        .quotes-section {
            padding: 100px 0;
            background: linear-gradient(135deg, 
                rgba(74, 30, 138, 0.2), 
                rgba(20, 20, 36, 0.8));
            overflow: hidden;
        }

        .quotes-carousel {
            display: flex;
            gap: 40px;
            animation: scrollQuotes 30s linear infinite;
            padding: 20px 0;
        }

        @keyframes scrollQuotes {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .quote-card {
            min-width: 400px;
            background: linear-gradient(145deg, 
                rgba(74, 30, 138, 0.25), 
                rgba(20, 20, 36, 0.5));
            border-radius: 20px;
            padding: 40px;
            border-left: 5px solid var(--sacred-gold);
            flex-shrink: 0;
        }

        .quote-text {
            font-style: italic;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--starlight);
        }

        .quote-author {
            color: var(--sacred-gold);
            font-weight: 600;
            text-align: right;
        }

        /* Astrology Page */
        .temple-hero {
            padding: 100px 0;
            background: linear-gradient(135deg, 
                rgba(10, 10, 20, 0.95) 0%, 
                rgba(20, 20, 36, 0.9) 100%);
            position: relative;
            text-align: center;
        }

        .temple-hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--sacred-gold), var(--divine-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .temple-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .temple-section {
            padding: 80px 0;
        }

        .temple-feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
        }

        .temple-feature:nth-child(even) {
            grid-template-columns: 1fr 1fr;
            direction: rtl;
        }

        .temple-feature:nth-child(even) .feature-text {
            direction: ltr;
        }

        .feature-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            box-shadow: var(--cosmic-shadow);
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .feature-image:hover img {
            transform: scale(1.1);
        }

        .feature-text {
            padding: 30px;
        }

        .feature-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--sacred-gold);
        }

        /* Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 50px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, 
                transparent, 
                var(--sacred-gold), 
                transparent);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 50%;
            padding: 30px;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            background: linear-gradient(145deg, 
                rgba(74, 30, 138, 0.2), 
                rgba(20, 20, 36, 0.4));
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
        }

        .timeline-year {
            position: absolute;
            top: -15px;
            background: var(--sacred-gold);
            color: var(--midnight-black);
            padding: 5px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .timeline-item:nth-child(odd) .timeline-year {
            right: -100px;
        }

        .timeline-item:nth-child(even) .timeline-year {
            left: -100px;
        }

        /* New Box Slider Section */
        .box-slider-section {
            padding: 60px 0;
            background: rgba(20, 20, 36, 0.5);
            margin: 40px 0;
            border-radius: 20px;
        }

        .box-slider-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .box-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 20px 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--sacred-gold) var(--deep-space);
        }

        .box-slider::-webkit-scrollbar {
            height: 8px;
        }

        .box-slider::-webkit-scrollbar-track {
            background: var(--deep-space);
            border-radius: 10px;
        }

        .box-slider::-webkit-scrollbar-thumb {
            background: var(--sacred-gold);
            border-radius: 10px;
        }

        .box-slider-item {
            flex: 0 0 auto;
            width: 180px;
            height: 180px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            border: 2px solid var(--sacred-gold);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .box-slider-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--divine-glow);
            border-color: var(--divine-purple);
        }

        .box-slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .box-slider-item:hover img {
            transform: scale(1.1);
        }

        .box-slider-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 10, 20, 0.9), transparent);
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .box-slider-item:hover .box-slider-overlay {
            transform: translateY(0);
        }

        .box-slider-overlay h4 {
            font-size: 14px;
            color: var(--sacred-gold);
            margin-bottom: 5px;
        }

        .box-slider-overlay p {
            font-size: 11px;
            color: var(--moonlight);
            margin-bottom: 0;
        }

        /* New Specialist Services Section */
        .specialist-services {
            padding: 80px 0;
            background: linear-gradient(135deg, 
                rgba(74, 30, 138, 0.2), 
                rgba(20, 20, 36, 0.8));
        }

        .specialist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .specialist-card {
            background: linear-gradient(145deg, 
                rgba(74, 30, 138, 0.25), 
                rgba(20, 20, 36, 0.5));
            border-radius: 15px;
            padding: 30px 25px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            text-align: center;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 220px;
        }

        .specialist-card:hover {
            transform: translateY(-8px);
            border-color: var(--sacred-gold);
            box-shadow: var(--divine-glow);
        }

        .specialist-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--celestial-purple), var(--imperial-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--sacred-gold);
            font-size: 1.8rem;
        }

        .specialist-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--sacred-gold);
        }

        .specialist-desc {
            font-size: 13px;
            color: var(--moonlight);
            margin-bottom: 0;
        }

        .consultation-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            padding: 30px;
            background: rgba(20, 20, 36, 0.4);
            border-radius: 15px;
            border: 1px solid rgba(107, 56, 176, 0.2);
        }

       
        .whatsapp-btn {
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: 1px solid rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
        }

        .live-consult-btn {
            background: linear-gradient(45deg, var(--sacred-gold), #ffd700);
            color: var(--midnight-black);
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: 1px solid var(--sacred-gold);
        }

        .live-consult-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .consultation-note {
            text-align: center;
            margin-top: 20px;
            font-size: 13px;
            color: var(--moonlight);
            background: rgba(212, 175, 55, 0.1);
            padding: 15px;
            border-radius: 10px;
            border-left: 3px solid var(--sacred-gold);
        }

        /* Content Sections */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 12px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--sacred-gold), transparent);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--divine-purple);
            margin-top: 8px;
        }

        /* Content Grid with More Space */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 50px;
        }

        .content-card {
            background: linear-gradient(145deg, 
                rgba(74, 30, 138, 0.2), 
                rgba(20, 20, 36, 0.4));
            border-radius: 15px;
            padding: 35px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .content-card:hover {
            transform: translateY(-5px);
            border-color: var(--sacred-gold);
            box-shadow: var(--divine-glow);
        }

        .card-icon {
            font-size: 2.5rem;
            color: var(--sacred-gold);
            margin-bottom: 20px;
            display: inline-block;
        }

        .content-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .content-card h4 {
            font-size: 1.3rem;
            color: var(--divine-purple);
            margin: 20px 0 12px;
            padding-left: 12px;
            border-left: 2px solid var(--sacred-gold);
        }

        /* Solutions Page Design */
        .blessings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .blessing-item {
            background: linear-gradient(135deg, 
                rgba(74, 30, 138, 0.25), 
                rgba(20, 20, 36, 0.5));
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(107, 56, 176, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .blessing-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                transparent 0%, 
                rgba(212, 175, 55, 0.05) 100%);
            z-index: 0;
        }

        .blessing-item:hover {
            transform: translateY(-8px);
            border-color: var(--sacred-gold);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .blessing-icon {
            font-size: 2.5rem;
            color: var(--sacred-gold);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .blessing-item h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .blessing-item p {
            position: relative;
            z-index: 1;
            font-size: 13px;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            height: 250px;
            position: relative;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--divine-glow);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 10, 20, 0.9), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Contact Page */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info {
            display: grid;
            gap: 25px;
        }

        .contact-card {
            background: rgba(20, 20, 36, 0.5);
            padding: 25px;
            border-radius: 12px;
            border-left: 3px solid var(--sacred-gold);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(5px);
            background: rgba(20, 20, 36, 0.7);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, var(--celestial-purple), var(--imperial-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: var(--sacred-gold);
            font-size: 1.2rem;
        }

        .contact-form {
            background: rgba(20, 20, 36, 0.5);
            padding: 35px;
            border-radius: 15px;
            border: 1px solid rgba(107, 56, 176, 0.3);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: var(--divine-purple);
            font-weight: 500;
            font-size: 13px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(10, 10, 20, 0.8);
            border: 1px solid rgba(107, 56, 176, 0.3);
            border-radius: 8px;
            color: var(--starlight);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--sacred-gold);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(45deg, var(--celestial-purple), var(--imperial-purple));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--divine-glow);
        }

        .message {
            margin-top: 20px;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            display: none;
            font-size: 13px;
        }

        .message.success {
            background: rgba(76, 175, 80, 0.1);
            color: #81c784;
            border: 1px solid #81c784;
            display: block;
        }

        .message.error {
            background: rgba(244, 67, 54, 0.1);
            color: #e57373;
            border: 1px solid #e57373;
            display: block;
        }

        /* Footer */
        footer {
            background: linear-gradient(to top, 
                var(--deep-space) 0%, 
                var(--midnight-black) 100%);
            padding: 50px 0 25px;
            border-top: 2px solid var(--sacred-gold);
            margin-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 35px;
            margin-bottom: 35px;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--sacred-gold);
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(107, 56, 176, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--divine-purple);
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .social-links a:hover {
            background: var(--celestial-purple);
            color: var(--midnight-black);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            color: var(--moonlight);
            font-size: 12px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav-toggle {
                display: block;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .nav-inner .cta-button {
                display: none;
            }
            
            .address-content {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
            
            .nav-inner {
                flex-direction: row;
                gap: 15px;
            }
            
            .main-title {
                font-size: 2.5rem;
            }
            
            .gold-text {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .temple-feature {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .temple-feature:nth-child(even) {
                grid-template-columns: 1fr;
                direction: ltr;
            }
            
            .office-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .office-image {
                height: 300px;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                width: calc(100% - 30px);
                left: 30px !important;
            }
            
            .timeline-item:nth-child(odd) .timeline-year,
            .timeline-item:nth-child(even) .timeline-year {
                left: -100px;
                right: auto;
            }
            
            .quote-card {
                min-width: 300px;
            }
            
            .mobile-nav .cta-button {
                display: flex;
                margin-top: 20px;
                justify-content: center;
            }
            
            /* Box Slider for Tablet */
            .box-slider-item {
                width: 160px;
                height: 160px;
            }
            
            /* Specialist Services for Tablet */
            .specialist-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .consultation-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .whatsapp-btn, .live-consult-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            
            .gold-text {
                font-size: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .logo-icon img {
                width: 80px;
                height: 80px;
            }
            
            .logo-text h1 {
                font-size: 1rem;
            }
            
            .address-item span {
                font-size: 12px;
            }
            
            /* Box Slider for Mobile */
            .box-slider-item {
                width: 140px;
                height: 140px;
            }
            
            .box-slider-overlay h4 {
                font-size: 12px;
            }
            
            .box-slider-overlay p {
                font-size: 10px;
            }
            
            /* Specialist Services for Mobile */
            .specialist-grid {
                grid-template-columns: 1fr;
            }
            
            .specialist-card {
                padding: 25px 20px;
                min-height: 200px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 1.8rem;
            }
            
            .gold-text {
                font-size: 1.3rem;
            }
            
            .content-grid, .blessings-grid, .gallery-grid,
            .slider-row, .stats-grid, .features-grid {
                grid-template-columns: 1fr;
            }
            
            .mobile-nav {
                width: 250px;
                padding: 70px 20px 20px;
            }
            
            .quote-card {
                min-width: 260px;
                padding: 25px;
            }
            
            .quote-text {
                font-size: 1rem;
            }
            
            /* Box Slider for Small Mobile */
            .box-slider-item {
                width: 120px;
                height: 120px;
            }
            
            .box-slider-overlay {
                padding: 10px;
            }
            
            .box-slider-overlay h4 {
                font-size: 11px;
            }
            
            .box-slider-overlay p {
                font-size: 9px;
            }
            
            /* Specialist Services for Small Mobile */
            .specialist-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .specialist-title {
                font-size: 1.2rem;
            }
            
            .consultation-actions {
                padding: 20px 15px;
            }
        }