/* CSS extracted from palmistry.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/palmistry.png') 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.3);
        }

        /* Hand outline elements */
        .hero-bg-elements {
            position: absolute;
            inset: 0;
            opacity: 0.1;
        }

        .hand-element {
            position: absolute;
            color: #fed7aa;
            animation: handGlow 4s ease-in-out infinite;
        }

        .hand-element:nth-child(1) {
            top: 25%;
            left: 25%;
            animation-delay: 0s;
        }

        .hand-element:nth-child(2) {
            bottom: 35%;
            right: 25%;
            animation-delay: 2s;
        }

        @keyframes handGlow {
            0%, 100% { 
                opacity: 0.1; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.3; 
                transform: scale(1.1);
            }
        }

        .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, #fed7aa, #fbbf24, #d97706);
            -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: #fed7aa;
        }

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

        .hero-btn-primary {
            background: linear-gradient(to right, #b45309, #d97706);
            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: #fbbf24;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.125rem;
            text-decoration: none;
            border: 2px solid #fbbf24;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.2s;
        }

        .hero-btn-secondary:hover {
            background: #fbbf24;
            color: #92400e;
            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, #fef3c7 0%, #fde68a 100%);
        }

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

        .about-grid {
            display: block;
        }

        .about-text {
            width: 100%;
        }

        .about-text p {
            max-width: none;
        }

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

        .about-text p {
            font-size: 1.2rem;
            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: #d97706;
            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 #d97706;
        }

        .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;
        }


        /* Palm Lines Section */
        .palm-lines {
            padding: 5rem 0;
            background: white;
        }

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

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

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

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

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

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

        .line-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1.25rem;
        }

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

        /* Mounts Section */
        .mounts {
            padding: 5rem 0;
            background: linear-gradient(135deg, #92400e 0%, #b45309 100%);
            color: white;
        }

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

        .mounts-subtitle {
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 5rem;
            color: #fed7aa;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .mount-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 1.5rem;
            padding: 2rem;
            text-align: center;
        }

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

        .mount-title {
            font-size: 1.375rem;
            font-weight: bold;
            margin-bottom: 0.75rem;
        }

        .mount-description {
            color: #fed7aa;
            font-size: 1.125rem;
            line-height: 1.5;
        }

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

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

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

        .cta-button-large {
            background: linear-gradient(135deg, #92400e, #b45309);
            color: white;
            padding: 1rem 3rem;
            border-radius: 9999px;
            font-weight: bold;
            font-size: 1.25rem;
            text-decoration: none;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            display: inline-block;
        }

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



        /* 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: 3rem;
            }

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

            .mounts-grid {
                grid-template-columns: repeat(2, 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: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #92400e, #b45309);
            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;
        }
