
        body {
            font-family: 'Roboto', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f5f0;
            color: #333;
        }
        .text-danger {
            color: red !important;
            font-size: 12px;
            display: block;
            margin-top: 4px;
        }
        .user-type-option {
            display: inline-flex;
            align-items: center;
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-right: 10px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .user-type-option.selected {
            border-color: #007bff;
            background-color: #e6f0ff;
        }
        
        .user-type-option input[type="radio"] {
            display: none; /* hide actual radio */
        }
        
        .user-type-option i {
            margin-right: 8px;
            font-size: 18px;
        }

        h1, h2, h3, h4, .logo, .doc-name, .doc-prof, .review-title, footer h3 {
            font-family: 'Poppins', sans-serif;
        }

        /* Header & Responsive Navbar */
        header {
            background-color: #fecb00;
            padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            white-space: nowrap;
        }
        .logo::before {
            content: "🐾 ";
            font-size: 32px;
        }
        nav {
            display: flex;
            gap: 30px;
        }
        nav a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            font-size: 16px;
        }
        nav a:hover {
            color: #ffcc00;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #333;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .search-bar {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 30px;
            padding: 8px 15px;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
        }
        .search-bar input {
            border: none;
            outline: none;
            width: 250px;
            font-size: 16px;
        }
        .search-bar button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 20px;
            color: #666;
        }
        .auth-buttons button {
            padding: 10px 20px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
        }
        .sign-in,.sign-up {
            background-color: white;
            color: #333;
            border: 1px solid #ddd;
        }
        /*.sign-up {
            background-color: #ffcc00;
            color: #333;
        }*/
        .auth-buttons button:hover {
            opacity: 0.9;
        }

        /* Mobile Auth Buttons - More Attractive */
        .mobile-auth {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            padding: 0 30px;
            width: 100%;
        }
        .mobile-auth button {
            width: 50%;
            padding: 10px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .mobile-auth .sign-in {
            background-color: white;
            color: #333;
            border: 2px solid #ddd;
        }
        .mobile-auth .sign-up {
            /*background-color: #ffcc00;
            color: #333;*/
            background-color: white;
            color: #333;
            border: 2px solid #ddd;
        }
        .mobile-auth button i {
            font-size: 16px;
        }
        .mobile-auth button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .search-bar input { width: 150px; }
        }
        @media (max-width: 900px) {
            header { padding: 15px 20px; }
            .menu-toggle { display: block; }
            .header-left { gap: 20px; }
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #fecb00;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                display: none;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                z-index: 999;
            }
            nav.active { display: flex; }
            nav a { padding: 12px 0; font-size: 18px; }
            .search-bar, .auth-buttons { display: none; }
            .mobile-auth { display: flex; }
        }
        @media (max-width: 480px) {
            .logo { font-size: 24px; }
            .logo::before { font-size: 28px; }
        }

        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 700px;
            overflow: hidden;
        }
        .hero-slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .hero-slide.active { opacity: 1; }
        .hero-text {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
            z-index: 10;
        }
        .hero-text h1 { font-size: 62px; line-height: 1.2; margin-bottom: 20px; }
        .hero-text p { font-size: 24px; margin-bottom: 40px; }
        .learn-more {
            background-color: #fecb00;
            padding: 16px 40px;
            border: none;
            border-radius: 30px;
            font-size: 20px;
            cursor: pointer;
            font-weight: bold;
            color: #333;
        }
        .carousel-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }
        .dot {
            width: 14px; height: 14px;
            background: rgba(255,255,255,0.6);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active { background: white; transform: scale(1.2); }

        /* Reduced gap after banner */
        .section:first-of-type { padding-top: 80px; }

        /* Sections */
        .section { padding: 20px 20px; text-align: center; }
        .section h2 { font-size: 42px; margin-bottom: 70px; color: #333; }

        /* Doctors Grid */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        @media (max-width: 1200px) {.doctors-grid { grid-template-columns: repeat(3, 1fr); }}
        @media (max-width: 900px) {.doctors-grid { grid-template-columns: repeat(2, 1fr); }}
        @media (max-width: 600px) {.doctors-grid { grid-template-columns: 1fr; }}

        .doctor-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            text-align: center;
            padding-bottom: 25px;
        }
        .doctor-card:hover { transform: translateY(-20px); box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
        .doctor-card img { width: 100%; height: 280px; object-fit: cover; }
        .doc-name { font-size: 24px; font-weight: bold; margin: 20px 0 8px; }
        .doc-prof { font-size: 18px; color: #fecb00; font-weight: bold; }
        .doc-qual { font-size: 15px; color: #777; margin-top: 8px; }

        /* Attractive View All Buttons */
        .view-all-section {
            padding: 60px 40px;
            text-align: center;
            background: linear-gradient(135deg, #fffbe6 0%, #ffeda6 100%);
        }
        .view-all-text {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 30px;
            color: #333;
        }
        .view-all-btn {
            background: #fecb00;
            padding: 18px 60px;
            border: none;
            border-radius: 50px;
            font-size: 22px;
            font-weight: bold;
            cursor: pointer;
            color: #333;
            box-shadow: 0 8px 25px rgba(254,203,0,0.4);
            transition: all 0.3s;
        }
        .view-all-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(254,203,0,0.5);
            background: #ffcc00;
        }

        /* Reviews */
        .reviews { background-color: #fffef0; }
        .reviews-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }
        .review-card {
            background: white;
            width: 380px;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: left;
        }
        .review-header { display: flex; align-items: center; margin-bottom: 15px; }
        .review-profile { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-right: 15px; }
        .review-info h4 { margin: 0; font-size: 18px; font-weight: bold; }
        .review-time { font-size: 14px; color: #888; }
        .review-title { font-size: 20px; font-weight: bold; margin: 15px 0 10px; color: #333; }
        .review-images { display: flex; gap: 10px; margin: 15px 0; flex-wrap: wrap; }
        .review-images img { width: 100px; height: 100px; border-radius: 12px; object-fit: cover; }
        .reviewed-for { font-size: 15px; color: #fecb00; font-weight: bold; margin-bottom: 10px; }
        .stars { color: #fecb00; font-size: 22px; margin-bottom: 10px; }
        .review-text { font-size: 16px; line-height: 1.6; margin-bottom: 15px; }
        .review-actions { display: flex; align-items: center; gap: 20px; font-size: 20px; color: #666; }
        .review-actions span { cursor: pointer; display: flex; align-items: center; gap: 8px; }

        /* Footer */
        footer { background-color: #333; color: white; padding: 80px 40px 40px; text-align: center; }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
            text-align: left;
        }
        .footer-column { flex: 1; min-width: 250px; }
        .footer-column h3 { font-size: 22px; margin-bottom: 25px; color: #fecb00; }
        .footer-column ul { list-style: none; padding: 0; }
        .footer-column ul li { margin-bottom: 12px; }
        .footer-column ul li a { color: #ddd; text-decoration: none; transition: color 0.3s; }
        .footer-column ul li a:hover { color: #fecb00; }
        .social-icons { display: flex; gap: 15px; justify-content: center; margin: 30px 0; }
        .social-icons a { font-size: 24px; color: #ddd; transition: color 0.3s; }
        .social-icons a:hover { color: #fecb00; }
        .footer-bottom { border-top: 1px solid #555; padding-top: 20px; font-size: 14px; color: #aaa; }

        /* Modal Styles - Fully Responsive */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0; top: 0;
            width: 100%; height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background-color: white;
            padding: 40px 30px;
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            margin: auto;
        }
        @media (max-width: 480px) {
            .modal-content {
                padding: 30px 20px;
            }
            .modal h2 { font-size: 28px; }
            .user-type-selection { flex-direction: column; }
            .user-type-option { padding: 20px; }
        }
        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            color: #aaa;
        }
        .close:hover { color: #fecb00; }
        .modal h2 { text-align: center; margin-bottom: 30px; color: #333; font-size: 32px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #333; }
        .form-group input, .form-group select {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-size: 16px;
            box-sizing: border-box;
        }
        .password-wrapper { position: relative; }
        .password-wrapper input { padding-right: 50px; }
        .eye-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #fecb00;
            font-size: 22px;
        }
        .user-type-selection {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
            gap: 15px;
        }
        .user-type-option {
            flex: 1;
            text-align: center;
            cursor: pointer;
            padding: 25px 15px;
            border: 2px solid #ddd;
            border-radius: 18px;
            transition: all 0.3s;
            background: #fff;
        }
        .user-type-option:hover { border-color: #fecb00; }
        .user-type-option.selected {
            border-color: #fecb00;
            background-color: #fffbe6;
            box-shadow: 0 0 15px rgba(254,203,0,0.3);
        }
        .user-type-option i {
            font-size: 45px;
            color: #fecb00;
            margin-bottom: 12px;
            display: block;
        }
        .user-type-option span {
            display: block;
            font-weight: bold;
            font-size: 16px;
            color: #333;
        }
        .btn-primary {
            width: 100%;
            padding: 16px;
            background-color: #fecb00;
            color: #333;
            border: none;
            border-radius: 30px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn-primary:hover { background-color: #ffcc00; }
        .modal-footer {
            text-align: center;
            margin-top: 25px;
            font-size: 15px;
            color: #666;
        }
        .modal-footer a {
            color: #fecb00;
            text-decoration: none;
            font-weight: bold;
        }
        .modal-footer a:hover { text-decoration: underline; }

        /* Hidden fields */
        .field-vet { display: none; }
        
        
        
        
        

    