/* CSS extracted from astrology.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            min-height: 100vh;
        }

        html {
            scroll-behavior: smooth;
        }



        /* Services Dropdown Styles */
        .services-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown-icon {
            width: 1rem;
            height: 1rem;
            transition: transform 0.2s ease;
        }

        .services-dropdown:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.5rem;
            width: 18rem;
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            overflow: hidden;
        }

        .services-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content {
            padding: 0.5rem 0;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            border-left: 4px solid transparent;
        }

        .dropdown-item:hover {
            background: #FDC30B;
            color: white;
            border-left-color: #FDC30B;
        }

        .dropdown-divider {
            height: 1px;
            background: #e5e7eb;
            margin: 0.5rem 0;
        }

        .dropdown-view-all {
            color: #2563eb;
            font-weight: 600;
        }

        .dropdown-view-all:hover {
            background: #FDC30B;
            color: white;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: url('../images/astrology.png') center center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
        }

        /* Celestial background elements */
        .hero-bg-elements {
            position: absolute;
            inset: 0;
            opacity: 0.3;
        }

        .star {
            position: absolute;
            color: #e0e7ff;
            animation: twinkle 3s ease-in-out infinite;
        }

        .star:nth-child(1) {
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }

        .star:nth-child(2) {
            top: 40%;
            right: 30%;
            animation-delay: 1s;
        }

        .star:nth-child(3) {
            bottom: 30%;
            left: 40%;
            animation-delay: 2s;
        }

        .star:nth-child(4) {
            top: 60%;
            right: 20%;
            animation-delay: 3s;
        }

        .constellation {
            position: absolute;
            top: 10%;
            right: 10%;
            width: 200px;
            height: 200px;
            opacity: 0.2;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
            color: white;
        }

        .hero-icon {
            font-size: 8rem;
            margin-bottom: 2rem;
            animation: pulse 3s ease-in-out infinite;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: normal;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            background: linear-gradient(45deg, #e0e7ff, #c7d2fe, #a5b4fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            line-height: 1.4;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            max-width: 48rem;
            color: #e0e7ff;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .hero-btn-primary {
            background: linear-gradient(to right, #312e81, #4338ca);
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.125rem;
            text-decoration: none;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .hero-btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
        }

        .hero-btn-secondary {
            background: transparent;
            color: #c7d2fe;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.125rem;
            text-decoration: none;
            border: 2px solid #c7d2fe;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.2s;
        }

        .hero-btn-secondary:hover {
            background: #c7d2fe;
            color: #1e1b4b;
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.25rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #4b5563;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .stat-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .stat-icon {
            font-size: 2rem;
            color: #4338ca;
            margin-bottom: 0.5rem;
        }

        .stat-value {
            font-size: 1.125rem;
            font-weight: bold;
            color: #1f2937;
        }

        .doctor-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .doctor-photo {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #4338ca;
        }

        .doctor-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .doctor-info {
            flex: 1;
            text-align: left;
        }

        .doctor-name {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .doctor-qualification {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.4;
        }

        .about-visual {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 2rem;
            height: 400px;
            width: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
            color: #64748b;
            font-size: 1.125rem;
            font-weight: 500;
        }

        .video-icon {
            font-size: 3rem;
            color: #4338ca;
        }

        /* Signs Section */
        .signs {
            padding: 5rem 0;
            background: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            color: #1f2937;
            margin-bottom: 0.5rem;
            line-height: 1.7;
        }

        .section-subtitle {
            font-size: 1.125rem;
            text-align: center;
            color: #6b7280;
            margin-bottom: 1.5rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .signs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .sign-card {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border-radius: 16px;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .sign-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }

        .sign-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .sign-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

        .sign-dates {
            color: #6b7280;
            font-size: 1.125rem;
        }

        /* Reading Types Section */
        .reading-types {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
            color: white;
        }

        .types-title {
            font-size: 2.75rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 2rem;
        }

        .types-subtitle {
            font-size: 1.25rem;
            text-align: center;
            margin-bottom: 5rem;
            color: #e0e7ff;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .type-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .type-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }

        .type-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .type-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.25rem;
        }

        .type-description {
            color: #e0e7ff;
            font-size: 1.125rem;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta {
            padding: 5rem 0;
            background: white;
            text-align: center;
            color: #1f2937;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
            color: #1f2937;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            margin-bottom: 3.5rem;
            color: #6b7280;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button-large {
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            color: white;
            padding: 1rem 3rem;
            border-radius: 9999px;
            font-weight: bold;
            font-size: 1.25rem;
            text-decoration: none;
            box-shadow: 0 20px 25px rgba(59, 130, 246, 0.3);
            transition: all 0.3s;
            display: inline-block;
        }

        .cta-button-large:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
        }



        /* Responsive Design */
        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .signs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .types-grid {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 1rem;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 1rem;
            top: 1rem;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
        }

        .modal h2 {
            color: #1f2937;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #7c3aed;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #6366f1, #7c3aed);
            color: white;
            padding: 0.875rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 640px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* SVG Icons */
        .icon {
            width: 1.5rem;
            height: 1.5rem;
            fill: currentColor;
        }
