 /* Remove underlines from all links and make text black */
        a {
            text-decoration: none !important;
            color: #000000 !important;
        }

        a:hover,
        a:focus,
        a:visited,
        a:active {
            text-decoration: none !important;
            color: #000000 !important;
        }

 
        
        /* Popup Styling */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .popup-content {
            background: white;
            border-radius: 10px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        .popup-title {
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
        
        .submit-btn {
            background-color: #007bff;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #0056b3;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px 0;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
        }

        /* Specific styles for social media icons */
        .social-icons a {
            text-decoration: none !important;
            color: #000000 !important;
        }

        .social-icons a:hover,
        .social-icons a:focus,
        .social-icons a:visited,
        .social-icons a:active {
            text-decoration: none !important;
            color: #000000 !important;
        }

        /* CSS Variables */
        :root {
            --primary-color: #AFC3FF;
            --primary-dark: #8FA9FF;
            --primary-light: #C7D7FF;
            --secondary-color: #F7BFD5;
            --secondary-light: #FBD7E8;
            --accent-color: #E6A8C9;
            --text-dark: #2D3748;
            --text-light: #4A5568;
            --success-color: #48BB78;
            --warning-color: #ED8936;
            --danger-color: #F56565;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #AFC3FF 0%, #F7BFD5 100%);
            --gradient-secondary: linear-gradient(135deg, #F7BFD5 0%, #AFC3FF 100%);
            --gradient-soft: linear-gradient(135deg, #C7D7FF 0%, #FBD7E8 100%);
            --gradient-radial: radial-gradient(circle at 30% 70%, #AFC3FF 0%, #F7BFD5 100%);
            --gradient-diagonal: linear-gradient(45deg, #AFC3FF 0%, #E6A8C9 50%, #F7BFD5 100%);
            --shadow-light: 0 4px 6px rgba(175, 195, 255, 0.15);
            --shadow-medium: 0 10px 30px rgba(175, 195, 255, 0.2);
            --shadow-heavy: 0 25px 50px rgba(175, 195, 255, 0.25);
            --shadow-glow: 0 0 40px rgba(175, 195, 255, 0.3);
            --pink-gradient: #F7BFD5;
            --blue-gradient: #AFC3FF;
            --bg-light: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Top Contact Bar */
        .top-contact-bar {
            
            padding: 0.9rem 0;
            font-size: 1rem;
        }

        .top-contact-bar .contact-info {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .top-contact-bar .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .top-contact-bar .social-links {
            display: flex;
            gap: 1rem;
        }

        .top-contact-bar .social-links a {
            color: #2c3e50;
            font-size: 1.1rem;
            transition: opacity 0.3s ease;
        }

        .top-contact-bar .social-links a:hover {
            opacity: 0.7;
        }

          /* Main Navigation */
        .main-navbar {
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }


        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-container {
            width: 50px;
            height: 50px;
            margin-right: 1rem;
            background: linear-gradient(135deg, var(--pink-gradient), var(--blue-gradient));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .clinic-logo {
            font-size: 1.6rem;
            color: white;
        }
        .clinic-name-brand {
            font-size: 1.6rem;
            line-height: 1.4;
        }

        .clinic-subtitle {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-top: 0.1rem;
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 600;
            margin: 0 0.4rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .navbar-nav .nav-link:hover {
            background: #afc3ff;
            color: white !important;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link.active {
            background: #afc3ff;
            color: white !important;
        }

        .request-quote-btn {
            background: #f7bfd5;
            color: white !important;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .request-quote-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            color: white !important;
        }

        /* Dropdown Styles */
        .dropdown-menu {
            background: #f7bfd5;
            border: none;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            padding: 1rem 0;
            margin-top: 0.5rem;
            min-width: 280px;
        }

        .dropdown-item {
            color: #2c3e50 !important;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item:hover {
            background: rgba(255,255,255,0.3) !important;
            color: #7c3aed !important;
            border-left: 3px solid #7c3aed;
            transform: translateX(5px);
        }

        .dropdown-item i {
            margin-right: 0.75rem;
            width: 20px;
            color: #7c3aed;
            text-align: center;
        }

          <style>
        /* Footer Styling */
        .footer {
            background-color: #AFC3FF;
            padding: 60px 0 20px 0;
            color: #000000;
        }
        
        .footer-section h4 {
            color: #000000;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-section p {
            line-height: 1.6;
            margin-bottom: 15px;
            color: #000000;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 8px;
        }
        
        .footer-section ul li a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #2c3e50;
        }
        
        .social-icons {
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #000000;
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: #333333;
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.2);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #000000;
        }
        
        /* Popup Styling */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .popup-content {
            background: white;
            border-radius: 10px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        
        .popup-title {
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
        
        .submit-btn {
            background-color: #007bff;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #0056b3;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px 0;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
        }
    </style>

        /* Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .popup-content {
            background: linear-gradient(135deg, var(--pink-gradient), var(--blue-gradient));
            border-radius: 20px;
            padding: 3rem;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: popupSlideIn 0.4s ease;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        @keyframes popupSlideIn {
            from {
                transform: scale(0.7) translateY(-50px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .popup-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: #2c3e50;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            color: #e74c3c;
            transform: rotate(90deg);
        }

        .popup-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 10px;
            background: rgba(255,255,255,0.9);
            color: #2c3e50;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .submit-btn {
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

       /* Responsive Design */
        @media (max-width: 991.98px) {
            .top-contact-bar .contact-info {
                gap: 1rem;
                flex-wrap: wrap;
            }

            .dropdown-menu {
                position: static !important;
                width: auto;
                margin: 0.5rem 1rem;
                background: rgba(247, 191, 213, 0.95);
            }
        }

        @media (max-width: 768px) {
            .top-contact-bar {
                text-align: center;
            }

            .top-contact-bar .contact-info {
                justify-content: center;
            }

            .logo-container {
                width: 40px;
                height: 40px;
            }

            .clinic-name-brand {
                font-size: 1rem;
            }
        }
        /* Optional: Add a subtle hover effect without underline */
        a:hover {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        /* Sparkle Animation */
        @keyframes sparkle {
            0% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(0); }
        }

        /* Ensure list items with links don't have underlines */
        ul li a {
            text-decoration: none !important;
            color: #000000 !important;
        }

        ul li a:hover,
        ul li a:focus,
        ul li a:visited,
        ul li a:active {
            text-decoration: none !important;
            color: #000000 !important;
        }
        
        